Когда я выполняю jar, я получаю эту ошибку:
java.lang.NullPointerException
at org.apache.cxf.wsdl11.WSDLServiceFactory.<init>(WSDLServiceFactory.java:85)
at org.apache.cxf.jaxws.ServiceImpl.initializePorts(ServiceImpl.java:218)
at org.apache.cxf.jaxws.ServiceImpl.initialize(ServiceImpl.java:161)
at org.apache.cxf.jaxws.ServiceImpl.<init>(ServiceImpl.java:129)
at org.apache.cxf.jaxws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:82)
at javax.xml.ws.Service.<init>(Service.java:77)
at it.finanze.dogane.domest.otello.accesspoint.wsdl.Otello_Service.<init>(Otello_Service.java:44)
at it.sknt.truckonesender.App.main(App.java:70)
Внутри сгенерированного класса обслуживания у меня есть:
@WebServiceClient(name = "Otello",
wsdlLocation = "classpath:Otello.wsdl",
targetNamespace = "http://accessPoint.otello.domest.dogane.finanze.it/wsdl/")
открытый класс Otello_Service extends Service {
public final static URL WSDL_LOCATION;
public final static QName SERVICE = new QName("http://accessPoint.otello.domest.dogane.finanze.it/wsdl/", "Otello");
public final static QName Otello = new QName("http://accessPoint.otello.domest.dogane.finanze.it/wsdl/", "Otello");
static {
URL url = Otello_Service.class.getClassLoader().getResource("Otello.wsdl");
if (url == null) {
java.util.logging.Logger.getLogger(Otello_Service.class.getName())
.log(java.util.logging.Level.INFO,
"Can not initialize the default wsdl from {0}", "classpath:Otello.wsdl");
}
WSDL_LOCATION = url;
} .....
Внутри моего POM-файла у меня есть:
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>3.2.6</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>${project.build.directory}/generated-sources/cxf</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>classpath:Otello.wsdl</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
И это пакеты cxf, добавленные в проект
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<version>3.2.6</version>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-frontend-jaxws</artifactId>
<version>3.2.6</version>
</dependency>
Все работает отлично, если я запускаю программу из netbeans.
Файл wdsl находится в каталоге src / main / resources.Реализация wsdl генерируется автоматически и помещается в target / generate-sources / cxf
Кто-нибудь может мне помочь?