如果有一个相当大的模式在多个Web服务中使用,那么我想将XSD编译与WSDL编译分开。在一个简化的示例中,一步编译可以:
$ wsimport -verbose service.wsdl
parsing WSDL...
Generating code...
org/example/wsdl/mysvc/MySvcPortType.java
org/example/wsdl/mysvc/MySvcService.java
org/example/ns1/Element1.java
org/example/ns1/ObjectFactory.java
org/example/ns1/package-info.java
...
编译xsd并使用生成的剧集文件不起作用:
$ wsimport -b schema3.episode service.wsdl
parsing WSDL...
[ERROR] Schema descriptor {http://www.example.org/ns1}element1 in
message part "part1" is not defined and could not be bound to Java.
Perhaps the schema descriptor {http://www.example.org/ns1}element1 is
not defined in the schema imported/included in the WSDL. You can
either add such imports/includes or run wsimport and provide the
schema location using -b switch. line 9 of
file:...jaxepisode_element/service.wsdl
那么如何在wsimport中使用预编译的模式呢?
附录:在另一个模式中使用该剧集可以工作,并避免新的编译 (d3.jar包含来自模式 3 模式 3.episode 的生成类作为 META-INF/太阳-jaxb.episode):
$ xjc schema4.xsd d3.jar -extension
parsing a schema...
compiling a schema...
org/example/ns2/Element2.java
org/example/ns2/ObjectFactory.java
org/example/ns2/package-info.java
没有预编译包:
$ xjc schema4.xsd -extension
parsing a schema...
compiling a schema...
org/example/ns1/Element1.java
org/example/ns1/ObjectFactory.java
org/example/ns1/package-info.java
org/example/ns2/Element2.java
org/example/ns2/ObjectFactory.java
org/example/ns2/package-info.java
WSDL:
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://example.org/wsdl/MySvc" xmlns:ns="http://www.example.org/ns1" targetNamespace="http://example.org/wsdl/MySvc" name="MySvc">
<types>
<xsd:schema>
<xsd:import namespace="http://www.example.org/ns1" schemaLocation="schema3.xsd"/>
</xsd:schema>
</types>
<message name="myOpRequest">
<part name="part1" element="ns:element1"/>
</message>
<message name="myOpReply">
<part name="part1" element="ns:element1"/>
</message>
<portType name="MySvcPortType">
<operation name="myOp">
<input name="input1" message="tns:myOpRequest"/>
<output name="output1" message="tns:myOpReply"/>
</operation>
</portType>
<binding name="MySvcBinding" type="tns:MySvcPortType">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="myOp">
<soap:operation/>
<input name="input1">
<soap:body use="literal"/>
</input>
<output name="output1">
<soap:body use="literal"/>
</output>
</operation>
</binding>
<service name="MySvcService">
<port name="MySvcPort" binding="tns:MySvcBinding">
<soap:address location="http://localhost:8080/"/>
</port>
</service>
</definitions>
方案3.xsd:
<schema
xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.example.org/ns1"
xmlns:tns="http://www.example.org/ns1"
elementFormDefault="qualified">
<element name="element1" >
<complexType >
<sequence>
<element name="name" type="string" />
</sequence>
</complexType>
</element>
</schema>
schema4.xsd:
<schema
xmlns="http://www.w3.org/2001/XMLSchema"
targetNamespace="http://www.example.org/ns2"
xmlns:tns="http://www.example.org/ns2"
xmlns:ns1="http://www.example.org/ns1"
elementFormDefault="qualified">
<import namespace="http://www.example.org/ns1" schemaLocation="schema3.xsd"/>
<element name="element2" >
<complexType >
<sequence>
<element ref="ns1:element1" />
</sequence>
</complexType>
</element>
</schema>
生成的剧集文件:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<bindings version="2.1" xmlns="http://java.sun.com/xml/ns/jaxb">
<bindings scd="x-schema::tns" xmlns:tns="http://www.example.org/ns1">
<schemaBindings map="false">
<package name="org.example.ns1"/>
</schemaBindings>
<bindings scd="tns:element1">
<class ref="org.example.ns1.Element1"/>
</bindings>
</bindings>
</bindings>
你可以使用maven,分别为每一个,用Apache CXF生成。
我有一个例子可以帮助你。
属性:
<properties>
<apache.cxf.version>3.0.4</apache.cxf.version>
<cxf-codegen-plugin.version>3.0.4</cxf-codegen-plugin.version>
<cxf-xjc-plugin.version>3.0.3</cxf-xjc-plugin.version>
</properties>
依赖关系:
<dependencies>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>${apache.cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>${apache.cxf.version}</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-databinding-jaxb</artifactId>
<version>${apache.cxf.version}</version>
<exclusions>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-core</artifactId>
</exclusion>
<exclusion>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
</exclusion>
<exclusion>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
</exclusion>
</exclusions>
</dependency>
</dependencies>
跑--
<profile>
<id>generates-nfe-services</id>
<activation>
<property>
<name>generates-nfe-services</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<!--sourceRoot>${project.build.directory}/generated-sources</sourceRoot-->
<sourceRoot>${basedir}/src/main/java</sourceRoot>
<defaultOptions>
<extraargs>
<extraarg>-validate</extraarg>
<extraarg>-client</extraarg>
<extraarg>-verbose</extraarg>
<extraarg>-xjc-npa</extraarg>
<extraarg>-xjc-verbose</extraarg>
<extraarg>-xjc-extension</extraarg>
<extraarg>-exsh</extraarg>
<extraarg>true</extraarg>
<extraarg>-keep</extraarg>
</extraargs>
</defaultOptions>
<wsdlOptions>
<wsdlOption>
<wsdl>
${basedir}/src/main/wsdl/br/gov/rs/sefaz/nfe/homologacao/NfeConsultaCadastro.wsdl
</wsdl>
<extraargs>
<extraarg>-p</extraarg>
<extraarg>br.gov.rs.sefaz.nfe.consulta.cadastro</extraarg>
</extraargs>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
跑--
<profile>
<id>generates-layouts-nfe</id>
<activation>
<property>
<name>generates-layouts-nfe</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-xjc-plugin</artifactId>
<version>${cxf-xjc-plugin.version}</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<goals>
<goal>xsdtojava</goal>
</goals>
<configuration>
<!--sourceRoot>${basedir}/target/generated-sources</sourceRoot-->
<sourceRoot>${basedir}/src/main/java</sourceRoot>
<xsdOptions>
<xsdOption>
<xsd>${basedir}/src/main/schemas/nfe/PL_008f/leiauteConsSitNFe_v3.10.xsd
</xsd>
<packagename>br.inf.portalfiscal.nfe.v310.leiaute.consulta.situacao.nfe
</packagename>
<extension>true</extension>
<extensionArgs>
<!--extensionArg>-npa</extensionArg-->
<extensionArg>-extension</extensionArg>
</extensionArgs>
</xsdOption>
</xsdOptions>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
您可以创建一个 maven 项目来仅生成 wsdl,而创建另一个项目来仅生成 xsd。
注:
如果他的项目不需要使用WSDL,就切换到json-rest-api。
使用REST并快乐。\o/
我希望这有所帮助。
我有一个JAX-WS导入的WSDL客户机。当我尝试连接到webserviceendpoint时,JAX-WS客户端尝试加载WSDL。为什么? 我不想在我的项目中存储WSDL, 我不想再次从webservice URL加载WSDL? 问题: 有机会绕过这种行为吗? 如何在运行时添加webserviceendpointURL? 添加具有相同QName和端口名的端口失败,因为我无法添加相同的QName和
有问题的webservice的客户机报告说,如果存在此,他们无法生成客户机存根(使用C#)。如何将其更改为?谢了。
我有一个JAX-WS注释的Web服务,当我将其部署到WildFly 8.1.0 Final中时,我有如下内容: 当我想要这样的东西时: 因此,基本上,我希望WildFly/JAX-WS将一些类型放在一个单独的XSD模式文件中,而不是仅仅在WSDL文件中显示它们。 我可以通过一些注释或一些配置文件来执行此操作吗?
我在tomcat服务器上部署了一个web服务,并为其生成了一个wsdl文件。 后来,我通过wsdl生成了一个新的soap项目,并对服务器执行了一个soap请求。 这里的问题是在服务器端,xml的解组失败,因为“输入数据”和“CCNA”的命名空间前缀是错误的。目前是cfa。 根据java代码,InputData的命名空间是xs,CCNA是bim。所以,如果我修改了soap请求,服务器端的解组就可以了
JAX-WS (JavaTM API for XML-Based Web Services)规范是一组XML web services的JAVA API。JAX-WS允许开发者可以选择RPC-oriented或者message-oriented 来实现自己的web services。 在 JAX-WS中,一个远程调用可以转换为一个基于XML的协议例如SOAP。在使用JAX-WS过程中,开发者不需要
问题内容: 我正在使用webservice soa,使用netbeans(jax- ws),我使用netbeans自动生成客户端,并且一切运行良好,但是我看到在客户端运行时wsdl始终在下载。 在生产中,我不想公开wsdl,并且我试图修改客户端,因为不需要wsdl,我的所有意图都是错误的,我发现了这一点: 但是当执行第一行时,我发现此异常: 有什么想法可以忽略wsdl吗? 问题答案: 最后,我使用