[JBoss-user] [Beginners Corner] - Re: SocketException and Remote Session Beans

2006-01-24 Thread littlezoper
Awesome.  Thanks for the pointer.  The funny thing is that's exactly what 
someone suggested I do. :)  I'll just go on ignoring the error and upgrade when 
4.0.4 is ready.

jason

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3919344#3919344

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3919344


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - SocketException and Remote Session Beans

2006-01-13 Thread littlezoper
I'm trying to get started with JBoss and session beans, remote beans to be 
specific.  I have the bean successfully deployed to JBoss 4.0.3, and my client 
successfully executes a method on the remote bean.  When my client exits, 
however, the server dumps the following exception to the console:

09:26:09,518 ERROR [ServerThread] failed
  | java.net.SocketException: Connection reset
  | at java.net.SocketInputStream.read(SocketInputStream.java:168)
  | at java.io.BufferedInputStream.fill(BufferedInputStream.java:218)
  | at java.io.BufferedInputStream.read(BufferedInputStream.java:235)
  | at 
java.io.ObjectInputStream$PeekInputStream.peek(ObjectInputStream.java:2200)
  | at 
java.io.ObjectInputStream$BlockDataInputStream.readBlockHeader(ObjectInputStream.java:2380)
  | at 
java.io.ObjectInputStream$BlockDataInputStream.refill(ObjectInputStream.java:2447)
  | at 
java.io.ObjectInputStream$BlockDataInputStream.read(ObjectInputStream.java:2519)
  | at 
java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2668)
  | at java.io.ObjectInputStream.readByte(ObjectInputStream.java:864)
  | at 
org.jboss.remoting.transport.socket.ServerSocketWrapper.checkConnection(ServerSocketWrapper.java:54)
  | at 
org.jboss.remoting.transport.socket.ServerThread.acknowledge(ServerThread.java:217)
  | at 
org.jboss.remoting.transport.socket.ServerThread.dorun(ServerThread.java:298)
  | at 
org.jboss.remoting.transport.socket.ServerThread.run(ServerThread.java:169)
  | 

The server appears to be fine, as I can run my client over and over (it's a 
simple "Hello, world" test), but I'd like to clean up that exception.  In case 
it is significant, if I comment out the call to the bean from client (i.e., 
leave the InitialContext acquisition, etc), I don't get the exception.  Also, 
for what it's worth, here's my client code:

try {
  | Hashtable env = new Hashtable();
  | Context context = new InitialContext(env);
  | HelloWorld hw =  
(HelloWorld)context.lookup(HelloWorldRemote.class.getName());  
  | System.out.println(hw.sayHello("Jason"));
  | }
  | catch(Throwable ex)
  | {  
  | ex.printStackTrace();
  | }

and here's my jndi.properites:

java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
  | java.naming.provider.url=jnp://it06:1099
  | java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
  | java.naming.factory.url.pkgs=org.jnp.interfaces

Thanks! :)

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3917376#3917376

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3917376


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user