[Remoting] - Re: Need help debugging JBoss Remoting
by sergeypk
I re-ran the tests and looked in the logs this time. I can't really tell anything from them so far, but there is this error I have also seen under many different circumstances:
| 00:41:57,328 DEBUG @WorkerThread#82[127.0.0.1:3127] [ServerThread] WorkerThread#82[127.0.0.1:3127] closing socketWrapper: ServerSocketWrapper[Socket[addr=/127.0.0.1,port=3127,localport=2946].1d9d4e0]
| 00:41:57,328 DEBUG @WorkerThread#82[127.0.0.1:3127] [ServerSocketWrapper] cannot write CLOSING byte
| java.net.SocketException: Connection reset by peer: socket write error
| at java.net.SocketOutputStream.socketWrite0(Native Method)
| at java.net.SocketOutputStream.socketWrite(SocketOutputStream.java:92)
| at java.net.SocketOutputStream.write(SocketOutputStream.java:136)
| at java.io.BufferedOutputStream.flushBuffer(BufferedOutputStream.java:65)
| at java.io.BufferedOutputStream.flush(BufferedOutputStream.java:123)
| at java.io.DataOutputStream.flush(DataOutputStream.java:106)
| at org.jboss.jms.server.remoting.ServerSocketWrapper.close(ServerSocketWrapper.java:74)
| at org.jboss.remoting.transport.socket.ServerThread.dorun(ServerThread.java:481)
| at org.jboss.remoting.transport.socket.ServerThread.run(ServerThread.java:165)
| 00:41:57,328 DEBUG @WorkerThread#82[127.0.0.1:3127] [SocketWrapper] ServerSocketWrapper[Socket[addr=/127.0.0.1,port=3127,localport=2946].1d9d4e0] closing
|
Why does this happen? It's only given DEBUG level in the logs, so it doesn't mean anything serious?
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4047780#4047780
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4047780
18 years, 11 months
[JBoss jBPM] - Re: BPEL atm and purchase order test fails.
by itprabha
Hi,
When looked at the url http://localhost:8080/jbossws/services, it displayed the following details.
|
| Registered Service Endpoints
|
| ServiceEndpointID
| ServiceEndpointAddress
|
| jboss.ws:context=shipping,endpoint=shippingServlet http://prabprabd:8080/shipping/shippingService?wsdl
| jboss.ws:context=account,endpoint=accountSystemServlet http://prabprabd:8080/account/accountSystem?wsdl
| jboss.ws:context=hello,endpoint=greeterServlet http://prabprabd:8080/hello/greeter?wsdl
| jboss.ws:context=purchase,endpoint=purchaseOrderServlet http://prabprabd:8080/purchase/purchaseOrder?wsdl
| jboss.ws:context=invoice,endpoint=invoiceServlet http://prabprabd:8080/invoice/invoiceService?wsdl
| jboss.ws:context=purchase,endpoint=invoiceCallbackServlet http://prabprabd:8080/purchase/invoiceCallback?wsdl
| jboss.ws:context=purchase,endpoint=shippingCallbackServlet http://prabprabd:8080/purchase/shippingCallback?wsdl
| jboss.ws:context=translator,endpoint=textTranslatorServlet http://prabprabd:8080/translator/text?wsdl
| jboss.ws:context=ticket,endpoint=ticketIssuerServlet http://prabprabd:8080/ticket/ticketIssuer?wsdl
| jboss.ws:context=atm,endpoint=frontEndServlet http://prabprabd:8080/atm/frontEnd?wsdl
| jboss.ws:context=scheduling,endpoint=schedulingServlet http://prabprabd:8080/scheduling/schedulingProcess?wsdl
| jboss.ws:context=translator,endpoint=documentTranslatorServlet http://prabprabd:8080/translator/document?wsdl
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4047777#4047777
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4047777
18 years, 11 months
[EJB/JBoss] - java.lang.NoClassDefFoundError in AIX enviroment
by winglfw
Hi all,
I am trying to call a session bean with similar codes below:
synchronized (m_remoteHomeMutex) {
try {
InitialContext ic = new InitialContext();
Object o = ic.lookup("test/Tester");
TesterHome home = (TesterHome) javax.rmi.PortableRemoteObject
.narrow(o, TesterHome.class);
Tester test = home.create();
CODES RUN OK IN
jdk1.5.0_11
Jboss: 4.0.5
CODES RUN FAIL IN
Environment: AIX with VM IBM ibm_sdk50
Jboss: 4.0.5
Error Msg as follow:
2007-05-22 18:31:20,328 ERROR [org.jboss.ejb.plugins.LogInterceptor] TransactionRolledbackLocalException in method: public abstract java
.lang.String com.myserver.keyservice.appserver.admin.ejb.session.IPasswordFM.addPassword(java.lang.String,java
.lang.String,char[]) throws com.myserver.keyservice.exception.PasswordStoreException, causedBy:
javax.ejb.EJBException: Unexpected Error
java.lang.NoClassDefFoundError: $Proxy153
at sun.reflect.GeneratedSerializationConstructorAccessor97.newInstance(Unknown Source)
at java.lang.reflect.Constructor.newInstance(Constructor.java:521)
at java.io.ObjectStreamClass.newInstance(ObjectStreamClass.java:951)
at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1723)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1324)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:362)
at java.rmi.MarshalledObject.get(MarshalledObject.java:163)
at org.jnp.interfaces.MarshalledValuePair.get(MarshalledValuePair.java:72)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:652)
at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
at javax.naming.InitialContext.lookup(InitialContext.java:363)
at com.myserver.common.utils.ServiceLocator.getRemoteHome(ServiceLocator.java:264)
Anyone knows what is the problem?
Thanks
Wing
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4047770#4047770
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4047770
18 years, 11 months