You are viewing a plain text version of this content. The canonical link for it is here.
Posted to wsrf-commits@ws.apache.org by ip...@apache.org on 2005/10/06 16:56:16 UTC

svn commit: r306688 - /webservices/wsrf/trunk/src/java/org/apache/ws/util/jndi/SpringJndiPopulator.java

Author: ips
Date: Thu Oct  6 07:56:13 2005
New Revision: 306688

URL: http://svn.apache.org/viewcvs?rev=306688&view=rev
Log:
small fix

Modified:
    webservices/wsrf/trunk/src/java/org/apache/ws/util/jndi/SpringJndiPopulator.java

Modified: webservices/wsrf/trunk/src/java/org/apache/ws/util/jndi/SpringJndiPopulator.java
URL: http://svn.apache.org/viewcvs/webservices/wsrf/trunk/src/java/org/apache/ws/util/jndi/SpringJndiPopulator.java?rev=306688&r1=306687&r2=306688&view=diff
==============================================================================
--- webservices/wsrf/trunk/src/java/org/apache/ws/util/jndi/SpringJndiPopulator.java (original)
+++ webservices/wsrf/trunk/src/java/org/apache/ws/util/jndi/SpringJndiPopulator.java Thu Oct  6 07:56:13 2005
@@ -56,7 +56,7 @@
                     throw new IllegalStateException( "Bean definition for " + resourceHome.getClass().getName() + " does not initialize the 'portComponentName' property." );
                 }
                 LOG.info( "Binding " + resourceHome.getClass().getName() + " resource home instance in JNDI with name '" + JndiConstants.CONTEXT_NAME_RESOURCE + "/" + portComponentName + "'..." );
-                Reference ref = new Reference( resourceHome.getClass().getName(), new StringRefAddr( SpringBeanObjectFactory.ADDR_TYPE_SPRING_BEAN_ID, beanDefName ) );
+                Reference ref = new Reference( resourceHome.getClass().getName(), new StringRefAddr( SpringBeanObjectFactory.ADDR_TYPE_SPRING_BEAN_ID, beanDefName ), SpringBeanObjectFactory.class.getName(), null );
                 try
                 {
                     resourceContext.rebind( portComponentName, ref );