At the company there is a Service provided through WebService SOAP (IBM BPM) . I can not reply to VS 2015 using the Web Reference a connection to this service. I always get the answer after a long time; The timeout of the operation has been reached. But if I use SOAPUi I can connect normal to the service. In the company have a proxy but I tried to turn on and off the windows 10 proxy to test, I also added the following code:
WebProxy proxyObj = new WebProxy("proxy.url.com", 3128);
NetworkCredential networkCredential = new NetworkCredential("****", "****");
proxyObj.Credentials = networkCredential;
soapReference.Proxy = proxyObj;
But with this code already falls into error 403 face. I tested close with the server a telnet and it worked everything normal, also I tried to enter the direct url and it worked also. Anyone have any idea what this is?