Consuming web service wsdl .net framework 2.0

1

When generating the request with all the correct parameters I have the return error 307 temporary redirect. Can you tell me what this error means?

    
asked by anonymous 28.09.2017 / 16:08

2 answers

0

After several tests, I discovered the error happened because the url of the configured in the project was http, when in fact the web service used the https url. Just changing to https and communication happened happen. When the request occurred the web service server redirected to the url with https to force the use of https.

    
29.09.2017 / 15:07
1

Considering that you are accessing a url from a third party service. Code 307 means that the service believes that the url was directed to another url.

You can read more at:

link

    
28.09.2017 / 18:50