如何使用Axis2c从WSDL文件生成C文件

时间:2015-01-21 08:54:49

标签: c web-services wsdl axis2c wsdl2code

我想在C代码中使用Web服务。我正在努力建立一个客户。我需要做一些事情来做Axis2java所做的事情并从wsdl文件生成类。 我发现Axis2c生成了从wsdl文件生成的(.c)文件。 我是从here下载的。拉开它。我为AXIS2C_HOME创建了环境变量,并创建了AXIS2C_CLASSPATH。 但是我无法使它发挥作用。

当我输入此命令时:

WSDL2C -uri -ss -sd -d none -u -f -o

我收到此错误:

echo off
Error: Could not find or load main class org.apache.axis2.wsdl.WSDL2C

我该如何解决这个问题。请告诉我如何正确使用这个Axis2c工具。

提前谢谢。

@loentar:我安装了Axis2 / Java,并为其设置了环境变量。现在我运行wsdl2c.bat我得到了这个:

E:\dev\Tools\axis2c-bin-1.6.0-win32\bin\tools\wsdl2c>WSDL2C.bat

E:\dev\Tools\axis2c-bin-1.6.0-win32\bin\tools\wsdl2c>echo off
Usage: java [-options] class [args...]
           (to execute a class)
   or  java [-options] -jar jarfile [args...]
           (to execute a jar file)
where options include:
    -d32          use a 32-bit data model if available
    -d64          use a 64-bit data model if available
    -server       to select the "server" VM
                  The default VM is server.

    -cp 
    -classpath 
                  A ; separated list of directories, JAR archives,
                  and ZIP archives to search for class files.
    -D=
                  set a system property
    -verbose:[class|gc|jni]
                  enable verbose output
    -version      print product version and exit
    -version:
                  require the specified version to run
    -showversion  print product version and continue
    -jre-restrict-search | -no-jre-restrict-search
                  include/exclude user private JREs in the version search
    -? -help      print this help message
    -X            print help on non-standard options
    -ea[:...|:]
    -enableassertions[:...|:]
                  enable assertions with specified granularity
    -da[:...|:]
    -disableassertions[:...|:]
                  disable assertions with specified granularity
    -esa | -enablesystemassertions
                  enable system assertions
    -dsa | -disablesystemassertions
                  disable system assertions
    -agentlib:[=]
                  load native agent library , e.g. -agentlib:hprof
                  see also, -agentlib:jdwp=help and -agentlib:hprof=help
    -agentpath:[=]
                  load native agent library by full pathname
    -javaagent:[=]
                  load Java programming language agent, see java.lang.instrument

    -splash:
                  show splash screen with specified image
See http://www.oracle.com/technetwork/java/javase/documentation/index.html for m
ore details.

之后我运行这个命令:

E:\dev\Tools\axis2c-bin-1.6.0-win32\bin\tools\wsdl2c>WSDL2C.bat -uri hello.wsdl
-u -uw

E:\dev\Tools\axis2c-bin-1.6.0-win32\bin\tools\wsdl2c>echo off
Unrecognized option: -uri
Error: Could not create the Java Virtual Machine.
Error: A fatal exception has occurred. Program will exit.

我该怎么办? 我顺便使用Windows 8。

2 个答案:

答案 0 :(得分:1)

除Axis2 / C外,您还必须安装Axis2 / Java。

AXIS2_HOME必须指向Axis2 / Java安装。

有关详细信息,请参阅codegen的README

创建和编译客户端的完整命令列表是:

# create stubs
sh $AXIS2C_HOME/bin/tools/wsdl2c/WSDL2C.sh -uri Calculator.wsdl -u -uw

# implement main() in src/your_client.c
# see samples/codegen/client/calculator for example

# compile and link client
gcc -o calculator_client src/*.c -I$AXIS2C_HOME/include/axis2-1.6.0 -L$AXIS2C_HOME/lib -laxutil -laxis2_axiom -laxis2_parser -laxis2_engine -lpthread -laxis2_http_sender -laxis2_http_receiver -ldl -Wl,--rpath -Wl,$AXIS2C_HOME/lib

答案 1 :(得分:0)

我为JAVA_HOME,AXIS2_HOME,AXIS2C_HOME设置了envinroment变量,并将他们的lib文件夹添加到CLASSPATH。运行此命令后:  WSDL2C.bat -uri hello.wsdl -u -uw 我收到了这条消息:

echo off 
Error: Could not find or load main class org.apache.axis2.wsdl.WSDL2C

我自己找到了解决方案。 :) 我仔细检查了我是否为AXIS2_HOME创建了环境变量,并且我看到它正确存在。 尽管它存在,我试图在命令提示符下再次设置它。所以我打字:

SET AXIS2_HOME=E:\dev\Tools\axis2-1.6.2

然后我输入了WSDL2C代码生成器的命令:

WSDL2C.bat -uri hello.wsdl -u -uw

和BAM!它运作正常。 现在我可以从WSDL文件生成C文件。