0
In the company there is a Service available through Webservice SOAP (IBM BPM). I can’t get an answer on VS 2015 using the Web Reference a connection with this service. I always get the answer after a long time; The time limit of the operation has been reached.But if using the Soapui I can connect normal to the service. In the company had proxy but already tried to turn the proxy windows 10 on and off to test,:
WebProxy proxyObj = new WebProxy("proxy.url.com", 3128);
NetworkCredential networkCredential = new NetworkCredential("****", "****");
proxyObj.Credentials = networkCredential;
soapReference.Proxy = proxyObj;
But with that code, you’re already in error 403 right away. I tried to close with the server a telnet and everything worked normal, also I tried to enter the direct url and it worked as well. Does anyone have any idea what it is ?
403 is when the server rejected, nothing is missing?
– PauloHDSousa
This Soap you added via WSDL? It’s a web Reference?
– Felipe Grossi
Once I had the same problem and it was my proxy that blocked the activation response, so I had to change the Web config with the expect100continue tag, then take a look: https://msdn.microsoft.com/pt-br/library/system.net.servicintmanager.expect100continue(v=vs.110). aspx
– Julio Borges
@Felipegrossi yes is a web.
– FernandoLopes
@Paulohdsousa is not, I got, with the same code access to the web services.
– FernandoLopes
@Julioborges didn’t work out. Stranger than on the same network, but on a machine windows 7 I can connect by vs 2015, my programmer reported that before some update of windows 10. this problem occurred...
– FernandoLopes