reza
reza

Reputation: 6358

how to access a wsdl remotely

On the server, I run apache and I have a SOAP server. I have put the WSDL file on /var/www/html/custom.wsdl

I want to view this file in a browser, so I type http://myip.com/custom.wsdl in Chrome and the file gets downloaded and I type http://myip.com/custom.wsdl?wsdl and the same thing, the file gets downloaded.

What steps have I missed in allowing remote access to my wsdl file?

Upvotes: 0

Views: 448

Answers (1)

Matt Ball
Matt Ball

Reputation: 359906

It sounds like things are working just fine. The file gets downloaded, which means:

  1. The WSDL is available remotely and
  2. Your server is sending the response with the Content-Disposition: attachment header

Upvotes: 2

Related Questions