-
1. Re: How to create a raw socket connection pool in jboss
wdfink Nov 2, 2010 3:26 AM (in response to alexpr)You have to implement a JCA connector, any direct connection is against the JEE spec.
See WIKI http://community.jboss.org/wiki/JBossJCAhttp://community.jboss.org/wiki/JBossJCA for further informations
-
2. Re: How to create a raw socket connection pool in jboss
alexpr Nov 2, 2010 10:06 PM (in response to wdfink)Thanks for helpful reply!
-
3. Re: How to create a raw socket connection pool in jboss
alexpr Nov 3, 2010 5:44 AM (in response to alexpr)Hi again!
I have read some docs and links and I have a question:
This is my Enterprise app model. So, should I implement a resource adapter (JCA) in my server to manage connection with an EIS, or any else solutions?
Did JBoss AS support this?
All I wanna do is creat a connection pool to manage connection to an EIS. If I want to send and receive message with that EIS, I just get a conntion in connection pool and use it.
Thanks in advance!
-
4. Re: How to create a raw socket connection pool in jboss
alexpr Nov 7, 2010 10:43 PM (in response to alexpr)Hix x_x
Please give me an advice , this is my first project and it will go down if i cant find solution for this problem T___T
-
5. Re: How to create a raw socket connection pool in jboss
jesper.pedersen Nov 9, 2010 11:12 AM (in response to alexpr)1 of 1 people found this helpfulUsing JCA is the correct solution.
Use the code generator in IronJacamar distribution to get started - or download and build the latest source which contains a sample resource adapter (Hello World). Run "ant release".
See
http://www.jboss.org/ironjacamar/sourcecode
http://docs.jboss.org/ironjacamar/userguide/en/html/
http://docs.jboss.org/ironjacamar/developerguide/en/html/
for additional information.
-
6. Re: How to create a raw socket connection pool in jboss
alexpr Nov 9, 2010 10:37 PM (in response to jesper.pedersen)Thank you so much! I'll try this