ローカルで Web サービスを使用しようとしています。私のサーバーは C# で作成され、クライアントは C++ と gsoap で作成されています。C++ コードをコンパイルしようとすると、以下のエラーが発生します。
clientt.cpp
c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\INCLUDE\xlocale(323) :
warning C4530: C++ exception handler used, but unwind semantics are not
enabled. Specify /EHsc
clientt.cpp(8) : error C2661: 'WebService1SoapProxy::HelloWorld' : no
overloaded function takes 1 arguments
その関数は1つの引数を取る必要があると思います。それの何がいけないの?
私が使用したコマンド:
wsdl2h.exe -s -o calc.h calc.wsdl
soapcpp2.exe -i calc.h
cl client.cpp
.NET Web サービス サーバー コード:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Services;
namespace webServiceDnm
{
/// <summary>
/// Summary description for WebService1
/// </summary>
[WebService(Namespace = "http://tempuri.org/")]
[WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
[System.ComponentModel.ToolboxItem(false)]
// To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line.
// [System.Web.Script.Services.ScriptService]
public class WebService1 : System.Web.Services.WebService
{
[WebMethod]
public string HelloWorld()
{
return "Hello World";
}
}
}
C++ WEB サービス クライアント コード:
/* CalcClient.cpp */
#include "soapWebService1SoapProxy.h"
#include "WebService1Soap.nsmap"
void main()
{
WebService1SoapProxy service;
char* result;
if (service.HelloWorld(result) == SOAP_OK)
std::cout<< result << std::endl;
else
service.soap_stream_fault(std::cerr);
}