[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.dotnet.framework.aspnet.webservices

Re: WS Client Protocol port problem?

Dino Chiesa [Microsoft]

6/2/2004 9:24:00 PM


> Is this a know bug?
Yes.

> Has it been corrected in a later release?
Yes.

In .NET Framework v1.1, the problem no longer occurs.
>
> The work around is to manually edit the wsdl/generated class after
retrieval to add the required port.
>
Alternatively, 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(...);