1

I am a newbie to C# development.

Scenario -

We have an application running on .NET 2.0 framework and IIS 6.5. Now, we have installed another application on a remote server which utilizes Jetty web server. For us to integrate both the applications we need to add a reference to a web service in jetty. I have found the web service path on the server which is a .class file and I want to add a reference to my .NET application.

My problem is - how do I find the URL to add a web reference to the .NET application in Visual Studio ? or is there another way to integrate both the applications ?

Thanks

raptor15
  • 11
  • 2

1 Answers1

0

Have you tried using the .wsdl of the .NET web service to generate a proxy class in the Jetty web server? I am assuming there is some type of discovery mechanism built into the Jetty web server for web service capabilities, right?

Karl Anderson
  • 34,606
  • 12
  • 65
  • 80
  • Agreed. If you get some sort of URL from Jetty, typically, you can add a web reference to that webservice in asp.net, by pointing to the "wsdl" path. This path is usually, "whatever the url is" + "?wsdl" tacked onto the end. – LogicaLInsanity Jul 15 '13 at 21:20