English 中文(简体)
IBM WAS7的网络服务电话中遇到的问题
原标题:Facing issue in Webservice Call from IBM WAS7

我在Oracle Weblogic 11G上设置了一个网络服务。

The Client stubs for this web service is built using IBM WAS 7 inbuilt script (WSDL2JAVA.SH). The stub is then used to call the web service and has been deployed on IBM WAS7.

如下所述,这是网络服务需要解决的问题。

方法调用到它自己丢出这个例外的根根上。

变数部分是客户要求的振动度记录在日志中。

这意味着网络服务正在收到请求,但客户无法分析答复。

请救救我

[5/24/12 13:02:27:655 GMT+05:30] 00000027 SystemErr R java.lang.ClassCastException: com.ibm.ws.webservices.engine.xmlsoap.SOAPElement incompatible with java.lang.String [5/24/12 13:02:27:655 GMT+05:30] 00000027 SystemErr R at $Proxy21.inquireFinnOneLMS(Unknown Source) [5/24/12 13:02:27:655 GMT+05:30] 00000027 SystemErr R at com.iflex.fcat.hdfc_ln.LNRoot.sendRequest(LNRoot.java:1296) [5/24/12 13:02:27:655 GMT+05:30] 00000027 SystemErr R at com.iflex.fcat.hdfc_ln.RSLoanAccountSummaryBean.doProcess(RSLoanAccountSummaryBean.java:175)

最佳回答

这个问题被发现在IBM WAS服务器上,并被固定在下一个FixPack。

WAS图书馆无法理解SOAP元素,

问题回答

您是否在提供 Wsdl2java 的 Wsdl 文件或服务本身服务的 Wsdl URL 上运行 Wsdl2java?

乍一看,这似乎是在客户产生时使用的WSDL与实际运行服务之间脱节。

您是否运行了 endptEnabler.sh (或 endptEnabler.bat) 。

- & gt; netptEnabler.sh - v - CCtraceall - CCtracefiles=/ tmp/ trace.log myEAR.ear

检查此选项的细节 ;

http://www.ibm.com/ Developmenterworks/websphere/techjournal/0404_bose/0404_bose.html" rel=“no follow'>http://www.ibm.com/developers/websphere/techjournal/0404_bose/0404_bose.html

Here is a link where an issue related to endptEnabler was reported and resolved http://fixunix.com/websphere/558857-accessing-jax-ws-endpoint.html

希望能帮上忙





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签