web service client without proxy classes

S

Steffen Heinzl

Hi!

Is it possible to invoke a web service with a client written in C#
without generating proxy classes from the service's wsdl first?

Apache Axis (for Java) provides a Call object which can be used. Is
there something similar in C#?

Best Regards,
Steffen
 
N

Nicholas Paldino [.NET/C# MVP]

Steffen,

In VS.NET, create a proxy using a Web Reference (don't worry, you won't
be using this). Once you do that, take a look at the designer generated
class. Your proxy is extends a base class that does all the heavy lifting
for you.

You might also want to look into WCF as well, as it could be much easier
to make these kinds of calls.

Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top