0

公開された HTTP-GET Web サービスを使用する ASP.NET Web アプリケーション (C#) の例を探しているだけです。

オンラインで簡単に見つけられるはずですが、まだ見つけていません。

4

1 に答える 1

1

Right-click your project in Visual Studio 2010 and select the option "Add Web-Reference...".

In the "Add Web Reference" dialog, type the URL of the web-service, for example http://www.startvbdotnet.com/web/sample2.asmx, and a "Web reference name", for example "com.startvbdotnet.www".

A lot of code will be generated on your project. The "Web reference name" will be the name of the generated namespace.
The classes of that namespace will work like "normal" classes, but behind the scenes the method calls will be web-service calls.

com.startvbdotnet.www.Sample teste = new com.startvbdotnet.www.Sample();
int result = teste.Add(1, 2);
于 2011-02-22T19:07:32.380 に答える