OK I got it. The code snip is:
public void handleMessage(Message message) {
InputStream is = message.getContent(InputStream.class);
if (is == null) {
throw new NullPointerException("InputStream content not
found");
}
I check why the message doesn't contain input stream.
Regards
JB
laolong wrote:
I guess the problem also caused by Http/Jetty issue, the request message
cannot be processed, message content is lost due to the SOAP message POST by
XMLSpy is received with wrong method 'GET'
SMX log---------------------------------------------
DEBUG - HttpComponent - Receiving HTTP request: GET
/LoginServiceService/main.wsdl HTTP/1.1
Accept: */*
User-Agent: XML Spy
Host: bjc-d-xp:8199
Connection: Keep-Alive
Cache-Control: no-cache
DEBUG - JettyContextManager - Dispatching job:
s...@10234051[d=true,io=0,w=true,b=false|false]
DEBUG - JettyContextManager - Dispatching job:
s...@10234051[d=true,io=1,w=true,b=false|false]
DEBUG - JettyContextManager - Dispatching job:
s...@10234051[d=true,io=1,w=true,b=false|false]
DEBUG - HttpComponent - Receiving HTTP request: GET
/LoginServiceService/ HTTP/1.1
User-Agent: XML Spy
SOAPAction: "urn:Login"
Host: localhost:8199
Connection: Keep-Alive
Cache-Control: no-cache
DEBUG - PhaseInterceptorChain - Invoking handleMessage on
interceptor
org.apache.servicemix.soap.interceptors.mime.AttachmentsInInterceptor
INFO - PhaseInterceptorChain - Interceptor has thrown exception,
unwinding now
java.lang.NullPointerException: InputStream content not found
at
org.apache.servicemix.soap.interceptors.mime.AttachmentsInInterceptor.handleMessage(AttachmentsInInterceptor.java:46)
at
org.apache.servicemix.soap.core.PhaseInterceptorChain.doIntercept(PhaseInterceptorChain.java:85)
at
org.apache.servicemix.http.endpoints.HttpSoapConsumerMarshaler.createExchange(HttpSoapConsumerMarshaler.java:107)
at
org.apache.servicemix.http.endpoints.HttpConsumerEndpoint.createExchange(HttpConsumerEndpoint.java:488)
at
org.apache.servicemix.http.endpoints.HttpConsumerEndpoint.process(HttpConsumerEndpoint.java:293)
at
org.apache.servicemix.http.HttpBridgeServlet.service(HttpBridgeServlet.java:56)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
at
org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:502)
at
org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:363)
at
org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:766)
at
org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:230)
at
org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:114)
at
org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:324)
at
org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:534)
at
org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(HttpConnection.java:864)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:533)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:207)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:403)
at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:409)
at
org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:522)
DEBUG - PhaseInterceptorChain - Invoking handleFault on interceptor
org.apache.servicemix.soap.interceptors.mime.AttachmentsInInterceptor
DEBUG - HttpSoapConsumerMarshaler - Using default response content
encoding.
DEBUG - PhaseInterceptorChain - Invoking handleMessage on
interceptor org.apache.servicemix.soap.interceptors.xml.StaxOutInterceptor
DEBUG - PhaseInterceptorChain - Invoking handleMessage on
interceptor
org.apache.servicemix.soap.bindings.soap.interceptors.SoapOutInterceptor
DEBUG - PhaseInterceptorChain - Invoking handleMessage on
interceptor
org.apache.servicemix.soap.bindings.soap.interceptors.SoapFaultOutInterceptor
Jean-Baptiste Onofré wrote:
Hi Long,
In your CXF-SE xbean.xml, I see that you try to make the JNDI lookup on
a Weblogic application server.
Nevertheless, I can't see the weblogic.jar file into your SU lib
directory.
To be able to make JNDI lookup and RMI-IIOP, you need the weblogic
client lib.
In your pom.xml, you should have a dependency like this:
<dependency>
<groupId>com.oracle.weblogic</groupId>
<artifactId>server</artifactId>
<version>10.3</version>
</dependency>
You can install the weblogic.jar into your maven working copy using:
mvn install:install-file -DgroupId=com.oracle.weblogic
-DartifactId=server -Dfile=$WLS_HOME/server/lib/weblogic.jar
-Dversion=10.3 -Dpackaging=jar
Could you make a try adding the weblogic.jar into the SU ?
Regards
JB
laolong wrote:
Hi JB,
http://www.nabble.com/file/p23978791/demo.zip demo.zip
I built a test EJB but got same error again, all java code and bean
defination are in attached, could you please review it?
I'm sorry that cannot find a way to send email with attachement to
you
alone, so I have to use 'Reply' page to upload the file.
Thanks a lot.
Long
Hummm, weird.
Could you provide the annotate in the your LoginService class (and the
corresponding interface) ?
It looks like that the CXF-SE side is not deployed correctly (and so the
HTTP component can't find it).
Have you all EJB proxy requirements present in your SU zip (EJBs stub,
etc) ?
Is it possible to provide your cxf-se zip file (only to my, not on the
mailing list) ?
Regards
JB