Index: ejb3/.classpath
===================================================================
--- ejb3/.classpath (revision 73902)
+++ ejb3/.classpath (working copy)
@@ -20,5 +20,6 @@
+
Index: ejb3/src/main/org/jboss/ejb3/deployers/JBoss5DeploymentScope.java
===================================================================
--- ejb3/src/main/org/jboss/ejb3/deployers/JBoss5DeploymentScope.java (revision 73902)
+++ ejb3/src/main/org/jboss/ejb3/deployers/JBoss5DeploymentScope.java (working copy)
@@ -159,7 +159,7 @@
}
EJBContainer container = null;
- EndpointInfo endpoint = endpointResolver.getEndpointInfo(businessIntf, EndpointType.EJB, vfsContext);
+ EndpointInfo endpoint = endpointResolver.getEndpointInfo(businessIntf, EndpointType.EJB);
if(endpoint != null)
{
log.debug("Found endpoint for interface: "+businessIntf+", endpoint: "+endpoint);
@@ -195,7 +195,7 @@
EJBContainer container = null;
// First try the ejbLink
- EndpointInfo endpoint = endpointResolver.getEndpointInfo(ejbLink, EndpointType.EJB, vfsContext);
+ EndpointInfo endpoint = endpointResolver.getEndpointInfo(ejbLink, EndpointType.EJB);
if(endpoint != null)
{
log.debug("Found endpoint for ejbLink: "+ejbLink+", endpoint: "+endpoint);