views:

29

answers:

1

I have to write a Jira soap client with C# in Visual Studio 2010 but I have problems with getting die client class imported. The solution presented here doesn't seem to work anymore.

Though the class is accessible, all methods have the type

void Foo()

Also, the program "wsdl.exe", which was previously used to manually generate the client classes out of the WSDL files doesn't seem to exist any more.

+1  A: 

The Web Service wizard is still available. Right-click the project, Add Service Reference, Advanced, Add Web Reference.

Wsdl.exe is available in c:\program files\microsoft sdks\windows\v7.0a\bin

Hans Passant
Thanks, that works.
CAS