Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Problem using ISA Server
Message
 
To
04/06/2003 10:08:45
General information
Forum:
ASP.NET
Category:
Web Services
Miscellaneous
Thread ID:
00796167
Message ID:
00796201
Views:
20
>I get the WSDL and registry it ok;
>When I try call any method like login(), etc receive this message:
>
>
>OLE IDispatch exception code 0 from Connector: Connector:Host not found. <br>
>HRESULT=0x800A1521 - Client:An unanticipated error occurred during the processing of this request. <br>
>HRESULT=0x800A1521 - Client:Sending the Soap message failed or no recognizable resp <br>
>
>
>someone knows that PORT I' must open or other configuration is needed?
>
I haven't seen that error, but I have been taking a look at using WebServices over proxy. You can modify your application config, to use the proxy server if that is the problem you are having. If it is as runtime, you can add some this to you application config.
<configuration>
   <system.net>
      <defaultProxy>
         <proxy 
	    usesystemdefault = "false"
            proxyaddress = "http://YourProxyServer:Port8080"
            bypassonlocal = "true"
	  />
      </defaultProxy>
   </system.net>
</configuration>
I didn't exactly understand your question, but i hope that helps.

Morgan
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform