我正在尝试从运行在Websphere 7上的Web应用程序中调用SAP Web服务。
客户端是从WSDL生成的,我使用JNDI查找来查找服务。查找失败,显示NameNotFoundException
。
的web.xml:
<service-ref>
<description>
WSDL Service ZSDWebAddressPrinting</description>
<service-ref-name>service/ZSDWebAddressPrinting</service-ref-name>
<service-interface>sap_com.document.sap.soap.functions.mc_style.ZSDWebAddressPrinting_Service</service-interface>
<wsdl-file>WEB-INF/wsdl/ZSDWebAddressPrinting.wsdl</wsdl-file>
<jaxrpc-mapping-file>WEB-INF/ZSDWebAddressPrinting_mapping.xml</jaxrpc-mapping-file>
<service-qname xmlns:pfx="urn:sap-com:document:sap:soap:functions:mc-style">
pfx:ZSDWebAddressPrinting</service-qname>
<port-component-ref>
<service-endpoint-interface>sap_com.document.sap.soap.functions.mc_style.ZSDWebAddressPrinting_PortType</service-endpoint-interface>
</port-component-ref>
</service-ref>
JNDI查找:
InitialContext ctx = new InitialContext();
return (Service)ctx.lookup("java:comp/env/service/ZSDWebAddressPrinting");
例外:
[10.12.14 10:24:03:645 CET] 00000024 SystemOut O |2014-12-10 10:24:03,645|ERROR|r : 0|ws.WebServiceLocator.getService - Lookup of service reference with jndi name = ZSDWebAddressPrinting failed !
javax.naming.NameNotFoundException: Name comp/env/service not found in context "java:".
at com.ibm.ws.naming.ipbase.NameSpace.getParentCtxInternal(NameSpace.java:1837)
at com.ibm.ws.naming.ipbase.NameSpace.lookupInternal(NameSpace.java:1166)
at com.ibm.ws.naming.ipbase.NameSpace.lookup(NameSpace.java:1095)
at com.ibm.ws.naming.urlbase.UrlContextImpl.lookup(UrlContextImpl.java:1235)
at com.ibm.ws.naming.java.javaURLContextImpl.lookup(javaURLContextImpl.java:395)
at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:221)
at com.ibm.ws.naming.java.javaURLContextRoot.lookup(javaURLContextRoot.java:161)
at javax.naming.InitialContext.lookup(InitialContext.java:436)
at com.acme.ws.WebServiceLocator.getService(WebServiceLocator.java:26)
我使用dumpnamespace
来显示所有名称,但我看不到ZSDWebAddressPrinting
。
还有许多JDBC资源也可以通过JNDI访问。这些在转储中可见并且正常工作。
我忘记了什么吗?
答案 0 :(得分:0)
将班级加载从PARENT_LAST
更改为PARENT_FIRST
有帮助。服务查找现在有效。
我不知道为什么这会对JNDI产生影响。 JDBC查找在两种情况下都有效。
有人可以对此发表评论吗?