Inheritance diagram for org.objectweb.joram.client.jms.soap.SoapConnectionFactory:


Public Member Functions | |
| SoapConnectionFactory (String host, int port, int timeout) | |
| SoapConnectionFactory () | |
| javax.jms.Connection | createConnection (String name, String password) throws JMSException |
Static Public Member Functions | |
| static javax.jms.ConnectionFactory | create (String host, int port, int timeout) |
| static javax.jms.ConnectionFactory | create (int timeout) throws java.net.ConnectException |
SoapConnectionFactory instance is a factory of SOAP connections.
Definition at line 37 of file SoapConnectionFactory.java.
| org.objectweb.joram.client.jms.soap.SoapConnectionFactory.SoapConnectionFactory | ( | String | host, | |
| int | port, | |||
| int | timeout | |||
| ) |
Constructs a SoapConnectionFactory instance.
| host | Name or IP address of the server's host. | |
| port | Server's listening port. | |
| timeout | Duration in seconds during which a SOAP connection might be inactive before being considered as dead (0 for never). |
Definition at line 49 of file SoapConnectionFactory.java.
References org.objectweb.joram.client.jms.FactoryParameters.cnxPendingTimer, and org.objectweb.joram.client.jms.admin.AbstractConnectionFactory.params.
| org.objectweb.joram.client.jms.soap.SoapConnectionFactory.SoapConnectionFactory | ( | ) |
Constructs an empty SoapConnectionFactory instance.
Definition at line 57 of file SoapConnectionFactory.java.
Referenced by org.objectweb.joram.client.jms.soap.SoapConnectionFactory.create().
| javax.jms.Connection org.objectweb.joram.client.jms.soap.SoapConnectionFactory.createConnection | ( | String | name, | |
| String | password | |||
| ) | throws JMSException [virtual] |
Method inherited from the ConnectionFactory class.
| JMSSecurityException | If the user identification is incorrect. | |
| IllegalStateException | If the server is not listening. |
Implements org.objectweb.joram.client.jms.ConnectionFactory.
Definition at line 66 of file SoapConnectionFactory.java.
References org.objectweb.joram.client.jms.admin.AbstractConnectionFactory.params.
| static javax.jms.ConnectionFactory org.objectweb.joram.client.jms.soap.SoapConnectionFactory.create | ( | String | host, | |
| int | port, | |||
| int | timeout | |||
| ) | [static] |
Admin method creating a javax.jms.ConnectionFactory instance for creating SOAP connections with a given server.
| host | Name or IP address of the server's host. | |
| port | Server's listening port. | |
| timeout | Duration in seconds during which a SOAP connection might be inactive before being considered as dead (0 for never). |
Definition at line 80 of file SoapConnectionFactory.java.
References org.objectweb.joram.client.jms.soap.SoapConnectionFactory.SoapConnectionFactory().
Referenced by org.objectweb.joram.client.jms.soap.SoapConnectionFactory.create().
Here is the call graph for this function:

| static javax.jms.ConnectionFactory org.objectweb.joram.client.jms.soap.SoapConnectionFactory.create | ( | int | timeout | ) | throws java.net.ConnectException [static] |
Admin method creating a javax.jms.ConnectionFactory instance for creating SOAP connections with the local server.
| timeout | Duration in seconds during which a SOAP connection might be inactive before being considered as dead (0 for never). |
| ConnectException | If the admin connection is closed or broken. |
Definition at line 93 of file SoapConnectionFactory.java.
References org.objectweb.joram.client.jms.soap.SoapConnectionFactory.create().
Here is the call graph for this function:

1.5.0