when I use wsdl.exe to generate proxy files, I always get
namespace="http://tempuri.org/....".
Question: how to replace it using my own names space automatically?
Thanks
Carleton
N Thorell - 24 Mar 2005 17:33 GMT
I don't understand the point with 'tempuri' either.
I got the impression that is doesn't matter what it is.
When I replaced it with my own URL, it still worked!
> when I use wsdl.exe to generate proxy files, I always get
> namespace="http://tempuri.org/....".
[quoted text clipped - 4 lines]
>
> Carleton
Manohar Kamath - 24 Mar 2005 17:36 GMT
Attribute your web service class:
[WebService(Namespace="yournamespace")]
public class MyWebservice: WebService
{
}

Signature
Manohar Kamath
Editor, .netWire
www.dotnetwire.com
> when I use wsdl.exe to generate proxy files, I always get
> namespace="http://tempuri.org/....".
[quoted text clipped - 4 lines]
>
> Carleton
Carleton Wong - 29 Mar 2005 18:37 GMT