I am using a asmx page (framework 1.1).
I would think that as long as it is defined in the WSDL that the classes
would be generated.
Is that not correct?
Also what is WSE and WCF? DotNet technologies.
(bit of a newbie to the webservices).
thanks,
lee
> What webservices system are you using? ASMX? WSE? WCF?
>
[quoted text clipped - 31 lines]
>>
>> lee
q - 27 Sep 2006 05:03 GMT
Web service security follows the WS-Security specification... ASMX has
no idea what that is. You need to get WSE3 from Microsoft. Google for
"wse3 dowload". Then read forever until you are sick of reading. WSE3
isn't that intuitive... fortunately WCF (a part of .NET 3.0) is almost
out.
Also, you need .NET 2.0. You will never get this working in .NET 1.1.
Almost nothing advanced will work in .NET 1.1. I hated that thing...
> I am using a asmx page (framework 1.1).
>
[quoted text clipped - 44 lines]
> >>
> >> lee
q - 27 Sep 2006 05:06 GMT
Come to think of it... you could do what I do at times. Half the time
people are giving me these LAME "wsdl" files for "web services" that
are NOT wsdl files that do NOT go with web services. They are only
"services" because they do NOT follow the specifications... so I ended
up writing my own webservice framework to deal with stuff like this...
at the heart of it was simple HTTP calls. You can do that too. If you
don't need https communication this is fairly easy. Web services are
really nothing more than XML going back and forth, you can do it all
manually if you want. It's not really that difficult.
That said... you really need to get on .NET 2.0 with WSE3 or get .NET
3.0. Using .NET 1.1 now adays just won't cut it...
> I am using a asmx page (framework 1.1).
>
[quoted text clipped - 44 lines]
> >>
> >> lee