Ask a Question related to ASP.NET Web Services, Design and Development.
-
robert #1
WS Client Protocol port problem?
The 'add web reference' in Visual Studio 2002, along with WSDL.exe is broken. It seems that it is a problem with th
MS Web Services Client Protocol 1.0.3705.288, as both VS .Net and WSDL.exe use this to access the wsdl
If I have the wsdl available a
[url]http://myserver:8080/services/MyService.wsd[/url]
The Project -> Add Web Reference shows the correct WSDL. But after using 'Add Reference' the WSDL file is incorrect. It seems that the request for the WSDL from within VS sets the HTTP 'Host' field incorrectly, in that, it does not append the port, even thogh the request is being sent to the non-default port. According to the HTTP spec this is incorrect
When requesting the WSDL via the browser (IE, or the Project -> Add Web Reference) the 'host' field is set correctly, as the protocol is
Is this a know bug? Has it been corrected in a later release
The work around is to manually edit the wsdl/generated class after retrieval to add the required port
robert Guest
-
What is the format of 'binary' data in the postgresql client/server protocol version 3
Guys, I am in the middle of implementing postgresql's client server protocol and I have run into a little issue. The spec says that in general... -
Form Problem after Publish with http protocol
Any help would be greatly appreciated. I have published my web site using http protocol but the form still does not work. I set the form... -
client port number
Is there a way Informix can return the port number of the client it uses to talk to for a connection. We need this to identify some connections... -
TNS-12560:Protocol adapter error from client side only...
I am getting a strange symptom: tnsping and sqlplus work fine on my LINUX server (neo) so the listener and DB are OK. However, from my remote XP... -
Client does not support authentication protocol MYSQL
Just thought I would post a solution (temporary at best, but a solution at least.) for all those using PostNuke who have upgraded MySql to 4.1. I... -
Dino Chiesa [Microsoft] #2
Re: WS Client Protocol port problem?
Yes.> Is this a know bug?
Yes.> Has it been corrected in a later release?
In .NET Framework v1.1, the problem no longer occurs.retrieval to add the required port.>
> The work around is to manually edit the wsdl/generated class afterAlternatively, you could manually specify the Url on the proxy class at>
runtime.
eg
service = new MyProxy();
service.Url= "http://myhost:8080/whatever.asmx";
result= service.Method(...);
Dino Chiesa [Microsoft] Guest



Reply With Quote

