You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by "David Blevins (JIRA)" <ji...@apache.org> on 2008/08/31 05:21:44 UTC

[jira] Created: (OPENEJB-904) Pluggable Client/Server connection strategies and factories

Pluggable Client/Server connection strategies and factories
-----------------------------------------------------------

                 Key: OPENEJB-904
                 URL: https://issues.apache.org/jira/browse/OPENEJB-904
             Project: OpenEJB
          Issue Type: Improvement
          Components: server
            Reporter: David Blevins
            Assignee: David Blevins
             Fix For: 3.0.1


Implementations of org.apache.openejb.client.ConnectionFactory and org.apache.openejb.client.ConnectionStrategy can be added by including a jar in the classpath containing either of the following files in the jar:

 - META-INF/org.apache.openejb.client.ConnectionFactory/foo
 - META-INF/org.apache.openejb.client.ConnectionStrategy/foo

Where "foo" is the name of the strategy or factory you wish to make available and the contents of the file "foo" is the name of the implementation class.



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Closed: (OPENEJB-904) Pluggable Client/Server connection strategies and factories

Posted by "David Blevins (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/OPENEJB-904?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

David Blevins closed OPENEJB-904.
---------------------------------

    Resolution: Fixed

> Pluggable Client/Server connection strategies and factories
> -----------------------------------------------------------
>
>                 Key: OPENEJB-904
>                 URL: https://issues.apache.org/jira/browse/OPENEJB-904
>             Project: OpenEJB
>          Issue Type: Improvement
>          Components: server
>            Reporter: David Blevins
>            Assignee: David Blevins
>             Fix For: 3.1
>
>
> Implementations of org.apache.openejb.client.ConnectionFactory and org.apache.openejb.client.ConnectionStrategy can be added by including a jar in the classpath containing either of the following files in the jar:
>  - META-INF/org.apache.openejb.client.ConnectionFactory/foo
>  - META-INF/org.apache.openejb.client.ConnectionStrategy/foo
> Where "foo" is the name of the strategy or factory you wish to make available and the contents of the file "foo" is the name of the implementation class.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (OPENEJB-904) Pluggable Client/Server connection strategies and factories

Posted by "David Blevins (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/OPENEJB-904?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12627264#action_12627264 ] 

David Blevins commented on OPENEJB-904:
---------------------------------------

$ svn ci server
Sending        server/openejb-client/src/main/java/org/apache/openejb/client/Client.java
Sending        server/openejb-client/src/main/java/org/apache/openejb/client/ConnectionFactory.java
Deleting       server/openejb-client/src/main/java/org/apache/openejb/client/ConnectionFactoryStrategy.java
Sending        server/openejb-client/src/main/java/org/apache/openejb/client/ConnectionManager.java
Adding         server/openejb-client/src/main/java/org/apache/openejb/client/ConnectionStrategy.java
Sending        server/openejb-client/src/main/java/org/apache/openejb/client/HttpConnectionFactory.java
Adding         server/openejb-client/src/main/java/org/apache/openejb/client/MulticastSearch.java
Adding         server/openejb-client/src/main/java/org/apache/openejb/client/Registry.java
Sending        server/openejb-client/src/main/java/org/apache/openejb/client/ServerMetaData.java
Sending        server/openejb-client/src/main/java/org/apache/openejb/client/SocketConnectionFactory.java
Deleting       server/openejb-client/src/main/java/org/apache/openejb/client/StickToLastServerConnectionFactoryStrategy.java
Adding         server/openejb-client/src/main/java/org/apache/openejb/client/StickyConnectionStrategy.java
Sending        server/openejb-client/src/test/java/org/apache/openejb/client/ConnectionManagerTest.java
Deleting       server/openejb-client/src/test/java/org/apache/openejb/client/StickToLastServerConnectionFactoryStrategyTest.java
Adding         server/openejb-client/src/test/java/org/apache/openejb/client/StickyConnectionStrategyTest.java
Adding         server/openejb-discovery
Adding         server/openejb-discovery/pom.xml
Adding         server/openejb-discovery/src
Adding         server/openejb-discovery/src/main/java/org/apache/openejb/server
Adding         server/openejb-discovery/src/main/java/org/apache/openejb/server/discovery
Adding         server/openejb-discovery/src/main/java/org/apache/openejb/server/discovery/DiscoveryAgent.java
Adding         server/openejb-discovery/src/main/java/org/apache/openejb/server/discovery/DiscoveryListener.java
Adding         server/openejb-discovery/src/main/java/org/apache/openejb/server/discovery/MulticastDiscoveryAgent.java
Adding         server/openejb-discovery/src/main/java/org/apache/openejb/server/discovery/MulticastSearch.java
Adding         server/openejb-discovery/src/main/resources
Adding         server/openejb-discovery/src/main/resources/META-INF
Adding         server/openejb-discovery/src/main/resources/META-INF/org.apache.openejb.server.ServersService
Adding         server/openejb-discovery/src/main/resources/META-INF/org.apache.openejb.server.ServersService/multicast
Adding         server/openejb-discovery/src/test/java/org/apache/openejb/server
Adding         server/openejb-discovery/src/test/java/org/apache/openejb/server/discovery
Adding         server/openejb-discovery/src/test/java/org/apache/openejb/server/discovery/MulticastDiscoveryAgentTest.java
Sending        server/openejb-server/src/main/java/org/apache/openejb/server/ServiceDaemon.java
Sending        server/pom.xml
Transmitting file data .....................
Committed revision 690629.



> Pluggable Client/Server connection strategies and factories
> -----------------------------------------------------------
>
>                 Key: OPENEJB-904
>                 URL: https://issues.apache.org/jira/browse/OPENEJB-904
>             Project: OpenEJB
>          Issue Type: Improvement
>          Components: server
>            Reporter: David Blevins
>            Assignee: David Blevins
>             Fix For: 3.0.1
>
>
> Implementations of org.apache.openejb.client.ConnectionFactory and org.apache.openejb.client.ConnectionStrategy can be added by including a jar in the classpath containing either of the following files in the jar:
>  - META-INF/org.apache.openejb.client.ConnectionFactory/foo
>  - META-INF/org.apache.openejb.client.ConnectionStrategy/foo
> Where "foo" is the name of the strategy or factory you wish to make available and the contents of the file "foo" is the name of the implementation class.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.