1) What do you mean by broken?  Perhaps unimplemented?  I currently have my own 
simple implementation, this is the entire code of the class:


  | import javax.resource.spi.ConnectionRequestInfo;
  | import java.util.HashMap;
  | 
  | 
  | public class ConnectionRequestInfoAdapter extends HashMap   implements 
ConnectionRequestInfo {
  | 
  |             public ConnectionRequestInfoAdapter() {
  |             super();
  |     }
  | }

The Hashmap stores the connection properties so i can connect to the EIS.  
Should there be anything else?

2) In my ManagedConnection class, my close method is implemented as:


  | Connection conn;
  | 
  | ...
  | 
  | void close() {
  |     ConnectionEvent event = new ConnectionEvent(this, 
  |         ConnectionEvent.CONNECTION_CLOSED);
  |        event.setConnectionHandle(this.conn);
  |     sendEvent(event);
  |  }
  | 

Is this what you mean by sending the connection event, in the connection 
handler?  I am still receiving the same errors, are there any other fixes or 
another way of closing the connection?

Thanks again, Damian.

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

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


-------------------------------------------------------
SF email is sponsored by - The IT Product Guide
Read honest & candid reviews on hundreds of IT Products from real users.
Discover which products truly live up to the hype. Start reading now. 
http://productguide.itmanagersjournal.com/
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to