我正在尝试在java中设置salesforce出站消息传递侦听器。这是我设置的链接,它可以正常工作 - https://developer.salesforce.com/page/Creating_an_Outbound_Messaging_Notification_Service_with_Eclipse_3.2
遗憾的是,该文章在2012年之后从未更新过,我想将其设置为maven项目,原因很明显 - 这是我遇到困难的地方。
我正在寻找合适的maven插件来基本上重现链接中的内容。我的想法是,我需要有一个端点监听器,这样它就可以从salesforce接收SOAP消息。现在和我在一起,我有一个wsdl文件(我从salesforce获得),这是我的出发点。端点也包含在wsdl中。 从大量研究中,我决定使用apache cxf maven插件从wsdl生成类。 我还有一个公共端点可用于接收消息。
然而,我仍然感到困惑,不确定如何从这里开始。获得课程后,如何配置端点侦听器?
从生成的类中,有一个接口NotificationPort
,它具有在消息到达端点时调用的方法。我知道我需要一个实现接口的类。如何从现在开始运行和测试服务?
这是我的pom.xml
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<cxf.version>3.1.11</cxf.version>
<wsdl.generated.sources>${basedir}/src/main/java</wsdl.generated.sources>
<wsdl.location>${project.basedir}/src/main/resources/META-INF/supplyorder.wsdl</wsdl.location>
</properties>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-codegen-plugin</artifactId>
<version>${cxf.version}</version>
<executions>
<execution>
<id>generate-sources</id>
<phase>generate-sources</phase>
<configuration>
<sourceRoot>${wsdl.generated.sources}</sourceRoot>
<wsdlOptions>
<wsdlOption>
<wsdl>${wsdl.location}</wsdl>
</wsdlOption>
</wsdlOptions>
</configuration>
<goals>
<goal>wsdl2java</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
wsdl相关部分
<!-- Binding
You need to write a service that implements this binding to receive the notifications
-->
<binding name="NotificationBinding" type="tns:NotificationPort">
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="notifications">
<soap:operation soapAction=""/>
<input>
<soap:body use="literal"/>
</input>
<output>
<soap:body use="literal"/>
</output>
</operation>
</binding>
<!-- Service Endpoint -->
<service name="NotificationService">
<documentation>Notification Service Implementation</documentation>
<port binding="tns:NotificationBinding" name="Notification">
<soap:address location="http://localhost:8080/SupplyOrder/Notification"/>
</port>
</service>
问题:
1.我编写了一个实现接口NotificationsPort
的自定义类。如何运行和测试此Web服务?我可以使用什么作为运行时环境来运行它? tomcat会工作吗?
答案 0 :(得分:0)
如果这有助于任何人,我终于找到了一个教程来设置这个。按照原样,你很高兴。 https://www.codenotfound.com/apache-cxf-spring-boot-soap-web-service-client-server-example.html