gSoap错误:xlocale.h没有这样的文件或目录

时间:2017-01-23 13:41:15

标签: c++ gsoap

我正在尝试在Windows 7中创建C ++ soap webservice客户端。我正在使用gSoap并且我遵循了gSoap tutorial

第一和第二个命令有效但

c++ -o main main.cpp soapC.cpp soapcalcProxy.cpp stdsoap2.cpp

命令无效。

错误是

Microsoft Windows [Version 6.1.7601]
Copyright (c) 2009 Microsoft Corporation.  All rights reserved.

C:\Users\user\Desktop\soap>C:\MinGW\bin\mingw32-g++.exe -o main main.cpp soapC.cpp soapcalcProxy.cpp stdsoap2.cpp
In file included from soapStub.h:22:0,
                 from soapH.h:16,
                 from calc.nsmap:2,
                 from main.cpp:16:
stdsoap2.h:651:23: fatal error: xlocale.h: No such file or directory
compilation terminated.
In file included from soapStub.h:22:0,
                 from soapH.h:16,
                 from soapC.cpp:19:
stdsoap2.h:651:23: fatal error: xlocale.h: No such file or directory
compilation terminated.
In file included from soapStub.h:22:0,
                 from soapH.h:16,
                 from soapcalcProxy.h:16,
                 from soapcalcProxy.cpp:14:
stdsoap2.h:651:23: fatal error: xlocale.h: No such file or directory
compilation terminated.
In file included from stdsoap2.cpp:60:0:
stdsoap2.h:651:23: fatal error: xlocale.h: No such file or directory
compilation terminated.

我该如何解决? 我正在使用Windows 7 64位和mingw。 感谢。

1 个答案:

答案 0 :(得分:2)

我遇到了同样的问题,我在编译时通过添加“-DWITH_NO_C_LOCALE”选项解决了这个问题。 资料来源:https://sourceforge.net/p/gsoap2/bugs/1098/