djencks     2005/07/19 22:33:48

  Modified:    modules/openejb-builder/src/java/org/openejb/deployment
                        AxisWebServiceContainerBuilder.java
                        SessionBuilder.java
  Removed:     modules/openejb-builder/src/java/org/openejb/deployment
                        XFireWebServiceContainerBuilder.java
  Log:

  GERONIMO-782 step 1 remove xfire. Also clean up dependencies a bit
  
  Revision  Changes    Path
  1.9       +2 -2      
openejb/modules/openejb-builder/src/java/org/openejb/deployment/AxisWebServiceContainerBuilder.java
  
  Index: AxisWebServiceContainerBuilder.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/openejb-builder/src/java/org/openejb/deployment/AxisWebServiceContainerBuilder.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- AxisWebServiceContainerBuilder.java       2 Jul 2005 08:41:31 -0000       
1.8
  +++ AxisWebServiceContainerBuilder.java       20 Jul 2005 02:33:48 -0000      
1.9
  @@ -65,7 +65,7 @@
   
   
       /*
  -     * The ultimate goal of this method is to create an XFireService GBean 
that wraps the EJBContainer with
  +     * The ultimate goal of this method is to create an GBean that wraps the 
EJBContainer with
        * the corresponding sessionObjectname and is capable of being indexed 
by its WSDL address location.
        */
       public void addGbean(EARContext earContext, EJBModule ejbModule, 
ClassLoader cl, ObjectName sessionObjectName, ObjectName listener, 
SessionBeanType sessionBean, OpenejbSessionBeanType openejbSessionBean, 
TransactionPolicyHelper transactionPolicyHelper, OpenejbWebServiceSecurityType 
webServiceSecurity) throws DeploymentException {
  
  
  
  1.27      +0 -3      
openejb/modules/openejb-builder/src/java/org/openejb/deployment/SessionBuilder.java
  
  Index: SessionBuilder.java
  ===================================================================
  RCS file: 
/home/projects/openejb/scm/openejb/modules/openejb-builder/src/java/org/openejb/deployment/SessionBuilder.java,v
  retrieving revision 1.26
  retrieving revision 1.27
  diff -u -r1.26 -r1.27
  --- SessionBuilder.java       14 Jun 2005 18:44:45 -0000      1.26
  +++ SessionBuilder.java       20 Jul 2005 02:33:48 -0000      1.27
  @@ -176,9 +176,6 @@
       }
   
       private void addWSContainerGBean(EARContext earContext, EJBModule 
ejbModule, ClassLoader cl, ObjectName sessionObjectName, SessionBeanType 
sessionBean, OpenejbSessionBeanType openejbSessionBean, TransactionPolicyHelper 
transactionPolicyHelper, ObjectName listener) throws DeploymentException {
  -        // TODO Make these guys GBeans and delegate to them so we can plug 
in Axis or XFire
  -//        XFireWebServiceContainerBuilder xfireWebServiceBuilder = new 
XFireWebServiceContainerBuilder();
  -//        xfireWebServiceBuilder.addGbean(earContext, ejbModule, cl, 
sessionObjectName, listener, sessionBean, openejbSessionBean, 
transactionPolicyHelper, security);
           AxisWebServiceContainerBuilder axisWebServiceContainerBuilder = new 
AxisWebServiceContainerBuilder();
           axisWebServiceContainerBuilder.addGbean(earContext, ejbModule, cl, 
sessionObjectName, listener, sessionBean, openejbSessionBean, 
transactionPolicyHelper, openejbSessionBean == null? null: 
openejbSessionBean.getWebServiceSecurity());
       }
  
  
  

Reply via email to