You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by "Sagara Gunathunga (JIRA)" <ji...@apache.org> on 2012/05/16 09:16:08 UTC

[jira] [Created] (AXIS2-5322) ServiceBuilderExtension for Axis2 Deployers

Sagara Gunathunga  created AXIS2-5322:
-----------------------------------------

             Summary: ServiceBuilderExtension for Axis2 Deployers
                 Key: AXIS2-5322
                 URL: https://issues.apache.org/jira/browse/AXIS2-5322
             Project: Axis2
          Issue Type: New Feature
          Components: kernel
            Reporter: Sagara Gunathunga 
            Assignee: Sagara Gunathunga 
             Fix For: 1.7.0


Refer the following discussion[1]  to find objectives of this idea.

ServiceBuilderExtension can take following API.

public interface ServiceBuilderExtension {

public void init( ConfigurationContext configurationContext, String directory);

public Map<String,AxisService> buildAxisServices(DeploymentFileData deploymentFileData) throws DeploymentException;;

}

and possible to register them with deployers as follows.

<deployer extension="" directory="" class="">

<serviceBuilderExtension name ="jwsbuilderExt" class="org.apache.axis2.jaxws.framework.JAXWSServiceBuilderExtension">

</deployer> 

* One deployer can have number of ServiceBuilderExtensions and will invoke them in the order they defined in the axis2.xml file. 

* For a given deploymentFile, if all ServiceBuilderExtensions fail to create AxisService then base deployer will take care about the deployment of that particular deploymentFile.

* For a given deploymentFile, if a ServiceBuilderExtension could create a AxisService then stop execution of other  ServiceBuilderExtensions registered and return the AxisService immediately to the base deployer for the further processing.   

* Axis2 AbstractDeployer implement necessary helping methods for this idea so that extended Deployer from  AbstractDeployer can easily utilise  ServiceBuilderExtension concept. 

* Immediate goal is to support JAX-WS artefacts through ServiceDeployer . 


[1] - http://axis.markmail.org/thread/kvhvcvfufpo6zfe3
[2] - http://axis.apache.org/axis2/java/core/api/org/apache/axis2/deployment/AbstractDeployer.html


--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: java-dev-help@axis.apache.org


[jira] [Commented] (AXIS2-5322) ServiceBuilderExtension for Axis2 Deployers

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-5322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13278707#comment-13278707 ] 

Hudson commented on AXIS2-5322:
-------------------------------

Integrated in Axis2 #1476 (See [https://builds.apache.org/job/Axis2/1476/])
    AXIS2-5322 -  Refactored JAXWSDeployer  so that codes can be shared among JAXWSDeployer and JAXWSServiceBuilderExtension through newly introduced JAXWSDeployerSupport class. JAXWSServiceBuilderExtension support to deploy JAX-WS artefacts based on  service.xml file.  Test coverage need to be added. (Revision 1340051)

     Result = SUCCESS
sagara : 
Files : 
* /axis/axis2/java/core/trunk/modules/jaxws/src/org/apache/axis2/jaxws/framework/JAXWSDeployer.java
* /axis/axis2/java/core/trunk/modules/jaxws/src/org/apache/axis2/jaxws/framework/JAXWSDeployerSupport.java
* /axis/axis2/java/core/trunk/modules/jaxws/src/org/apache/axis2/jaxws/framework/JAXWSServiceBuilderExtension.java

                
> ServiceBuilderExtension for Axis2 Deployers
> -------------------------------------------
>
>                 Key: AXIS2-5322
>                 URL: https://issues.apache.org/jira/browse/AXIS2-5322
>             Project: Axis2
>          Issue Type: New Feature
>          Components: kernel
>            Reporter: Sagara Gunathunga 
>            Assignee: Sagara Gunathunga 
>             Fix For: 1.7.0
>
>
> Refer the following discussion[1]  to find objectives of this idea.
> ServiceBuilderExtension can take following API.
> public interface ServiceBuilderExtension {
> public void init( ConfigurationContext configurationContext);
> public Map<String,AxisService> buildAxisServices(DeploymentFileData deploymentFileData) throws DeploymentException;;
> }
> and possible to register them with deployers as follows.
> <deployer extension="" directory="" class="">
> <serviceBuilderExtension name ="jwsbuilderExt" class="org.apache.axis2.jaxws.framework.JAXWSServiceBuilderExtension">
> </deployer> 
> * One deployer can have number of ServiceBuilderExtensions and will invoke them in the order they defined in the axis2.xml file. 
> * For a given deploymentFile, if all ServiceBuilderExtensions fail to create AxisService then base deployer will take care about the deployment of that particular deploymentFile.
> * For a given deploymentFile, if a ServiceBuilderExtension could create a AxisService then stop execution of other  ServiceBuilderExtensions registered and return the AxisService immediately to the base deployer for the further processing.   
> * Axis2 AbstractDeployer implement necessary helping methods for this idea so that extended Deployer from  AbstractDeployer can easily utilise  ServiceBuilderExtension concept. 
> * Immediate goal is to support JAX-WS artefacts through ServiceDeployer . 
> [1] - http://axis.markmail.org/thread/kvhvcvfufpo6zfe3
> [2] - http://axis.apache.org/axis2/java/core/api/org/apache/axis2/deployment/AbstractDeployer.html

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: java-dev-help@axis.apache.org


[jira] [Updated] (AXIS2-5322) ServiceBuilderExtension for Axis2 Deployers

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

Sagara Gunathunga  updated AXIS2-5322:
--------------------------------------

    Description: 
Refer the following discussion[1]  to find objectives of this idea.

ServiceBuilderExtension can take following API.

public interface ServiceBuilderExtension {

public void init( ConfigurationContext configurationContext);

public Map<String,AxisService> buildAxisServices(DeploymentFileData deploymentFileData) throws DeploymentException;;

}

and possible to register them with deployers as follows.

<deployer extension="" directory="" class="">

<serviceBuilderExtension name ="jwsbuilderExt" class="org.apache.axis2.jaxws.framework.JAXWSServiceBuilderExtension">

</deployer> 

* One deployer can have number of ServiceBuilderExtensions and will invoke them in the order they defined in the axis2.xml file. 

* For a given deploymentFile, if all ServiceBuilderExtensions fail to create AxisService then base deployer will take care about the deployment of that particular deploymentFile.

* For a given deploymentFile, if a ServiceBuilderExtension could create a AxisService then stop execution of other  ServiceBuilderExtensions registered and return the AxisService immediately to the base deployer for the further processing.   

* Axis2 AbstractDeployer implement necessary helping methods for this idea so that extended Deployer from  AbstractDeployer can easily utilise  ServiceBuilderExtension concept. 

* Immediate goal is to support JAX-WS artefacts through ServiceDeployer . 


[1] - http://axis.markmail.org/thread/kvhvcvfufpo6zfe3
[2] - http://axis.apache.org/axis2/java/core/api/org/apache/axis2/deployment/AbstractDeployer.html


  was:
Refer the following discussion[1]  to find objectives of this idea.

ServiceBuilderExtension can take following API.

public interface ServiceBuilderExtension {

public void init( ConfigurationContext configurationContext, String directory);

public Map<String,AxisService> buildAxisServices(DeploymentFileData deploymentFileData) throws DeploymentException;;

}

and possible to register them with deployers as follows.

<deployer extension="" directory="" class="">

<serviceBuilderExtension name ="jwsbuilderExt" class="org.apache.axis2.jaxws.framework.JAXWSServiceBuilderExtension">

</deployer> 

* One deployer can have number of ServiceBuilderExtensions and will invoke them in the order they defined in the axis2.xml file. 

* For a given deploymentFile, if all ServiceBuilderExtensions fail to create AxisService then base deployer will take care about the deployment of that particular deploymentFile.

* For a given deploymentFile, if a ServiceBuilderExtension could create a AxisService then stop execution of other  ServiceBuilderExtensions registered and return the AxisService immediately to the base deployer for the further processing.   

* Axis2 AbstractDeployer implement necessary helping methods for this idea so that extended Deployer from  AbstractDeployer can easily utilise  ServiceBuilderExtension concept. 

* Immediate goal is to support JAX-WS artefacts through ServiceDeployer . 


[1] - http://axis.markmail.org/thread/kvhvcvfufpo6zfe3
[2] - http://axis.apache.org/axis2/java/core/api/org/apache/axis2/deployment/AbstractDeployer.html


    
> ServiceBuilderExtension for Axis2 Deployers
> -------------------------------------------
>
>                 Key: AXIS2-5322
>                 URL: https://issues.apache.org/jira/browse/AXIS2-5322
>             Project: Axis2
>          Issue Type: New Feature
>          Components: kernel
>            Reporter: Sagara Gunathunga 
>            Assignee: Sagara Gunathunga 
>             Fix For: 1.7.0
>
>
> Refer the following discussion[1]  to find objectives of this idea.
> ServiceBuilderExtension can take following API.
> public interface ServiceBuilderExtension {
> public void init( ConfigurationContext configurationContext);
> public Map<String,AxisService> buildAxisServices(DeploymentFileData deploymentFileData) throws DeploymentException;;
> }
> and possible to register them with deployers as follows.
> <deployer extension="" directory="" class="">
> <serviceBuilderExtension name ="jwsbuilderExt" class="org.apache.axis2.jaxws.framework.JAXWSServiceBuilderExtension">
> </deployer> 
> * One deployer can have number of ServiceBuilderExtensions and will invoke them in the order they defined in the axis2.xml file. 
> * For a given deploymentFile, if all ServiceBuilderExtensions fail to create AxisService then base deployer will take care about the deployment of that particular deploymentFile.
> * For a given deploymentFile, if a ServiceBuilderExtension could create a AxisService then stop execution of other  ServiceBuilderExtensions registered and return the AxisService immediately to the base deployer for the further processing.   
> * Axis2 AbstractDeployer implement necessary helping methods for this idea so that extended Deployer from  AbstractDeployer can easily utilise  ServiceBuilderExtension concept. 
> * Immediate goal is to support JAX-WS artefacts through ServiceDeployer . 
> [1] - http://axis.markmail.org/thread/kvhvcvfufpo6zfe3
> [2] - http://axis.apache.org/axis2/java/core/api/org/apache/axis2/deployment/AbstractDeployer.html

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: java-dev-help@axis.apache.org


[jira] [Commented] (AXIS2-5322) ServiceBuilderExtension for Axis2 Deployers

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-5322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13277680#comment-13277680 ] 

Hudson commented on AXIS2-5322:
-------------------------------

Integrated in Axis2 #1473 (See [https://builds.apache.org/job/Axis2/1473/])
    AXIS2-5322 - Implemented ServiceBuilderExtension concept. (Revision 1339501)

     Result = SUCCESS
sagara : 
Files : 
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/AbstractDeployer.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/AbstractServiceBuilderExtension.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/AxisConfigBuilder.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/DeploymentConstants.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/DeploymentEngine.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/ServiceBuilderExtension.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/repository/util/DeploymentFileData.java

                
> ServiceBuilderExtension for Axis2 Deployers
> -------------------------------------------
>
>                 Key: AXIS2-5322
>                 URL: https://issues.apache.org/jira/browse/AXIS2-5322
>             Project: Axis2
>          Issue Type: New Feature
>          Components: kernel
>            Reporter: Sagara Gunathunga 
>            Assignee: Sagara Gunathunga 
>             Fix For: 1.7.0
>
>
> Refer the following discussion[1]  to find objectives of this idea.
> ServiceBuilderExtension can take following API.
> public interface ServiceBuilderExtension {
> public void init( ConfigurationContext configurationContext);
> public Map<String,AxisService> buildAxisServices(DeploymentFileData deploymentFileData) throws DeploymentException;;
> }
> and possible to register them with deployers as follows.
> <deployer extension="" directory="" class="">
> <serviceBuilderExtension name ="jwsbuilderExt" class="org.apache.axis2.jaxws.framework.JAXWSServiceBuilderExtension">
> </deployer> 
> * One deployer can have number of ServiceBuilderExtensions and will invoke them in the order they defined in the axis2.xml file. 
> * For a given deploymentFile, if all ServiceBuilderExtensions fail to create AxisService then base deployer will take care about the deployment of that particular deploymentFile.
> * For a given deploymentFile, if a ServiceBuilderExtension could create a AxisService then stop execution of other  ServiceBuilderExtensions registered and return the AxisService immediately to the base deployer for the further processing.   
> * Axis2 AbstractDeployer implement necessary helping methods for this idea so that extended Deployer from  AbstractDeployer can easily utilise  ServiceBuilderExtension concept. 
> * Immediate goal is to support JAX-WS artefacts through ServiceDeployer . 
> [1] - http://axis.markmail.org/thread/kvhvcvfufpo6zfe3
> [2] - http://axis.apache.org/axis2/java/core/api/org/apache/axis2/deployment/AbstractDeployer.html

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: java-dev-help@axis.apache.org


[jira] [Commented] (AXIS2-5322) ServiceBuilderExtension for Axis2 Deployers

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-5322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13278611#comment-13278611 ] 

Hudson commented on AXIS2-5322:
-------------------------------

Integrated in Axis2 #1475 (See [https://builds.apache.org/job/Axis2/1475/])
    AXIS2-5322, refactored WSDL 1.1/ WSDL 2.0 based service deployment as a ServiceBuilderExtension. Now it's possible to use WSDLServiceBuilderExtension with other Deployers too. (Revision 1339975)

     Result = SUCCESS
sagara : 
Files : 
* /axis/axis2/java/core/trunk/modules/kernel/pom.xml
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/DeploymentEngine.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/ServiceBuilder.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/ServiceDeployer.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/ServiceGroupBuilder.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/WSDLServiceBuilderExtension.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/repository/util/ArchiveReader.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/util/Utils.java

                
> ServiceBuilderExtension for Axis2 Deployers
> -------------------------------------------
>
>                 Key: AXIS2-5322
>                 URL: https://issues.apache.org/jira/browse/AXIS2-5322
>             Project: Axis2
>          Issue Type: New Feature
>          Components: kernel
>            Reporter: Sagara Gunathunga 
>            Assignee: Sagara Gunathunga 
>             Fix For: 1.7.0
>
>
> Refer the following discussion[1]  to find objectives of this idea.
> ServiceBuilderExtension can take following API.
> public interface ServiceBuilderExtension {
> public void init( ConfigurationContext configurationContext);
> public Map<String,AxisService> buildAxisServices(DeploymentFileData deploymentFileData) throws DeploymentException;;
> }
> and possible to register them with deployers as follows.
> <deployer extension="" directory="" class="">
> <serviceBuilderExtension name ="jwsbuilderExt" class="org.apache.axis2.jaxws.framework.JAXWSServiceBuilderExtension">
> </deployer> 
> * One deployer can have number of ServiceBuilderExtensions and will invoke them in the order they defined in the axis2.xml file. 
> * For a given deploymentFile, if all ServiceBuilderExtensions fail to create AxisService then base deployer will take care about the deployment of that particular deploymentFile.
> * For a given deploymentFile, if a ServiceBuilderExtension could create a AxisService then stop execution of other  ServiceBuilderExtensions registered and return the AxisService immediately to the base deployer for the further processing.   
> * Axis2 AbstractDeployer implement necessary helping methods for this idea so that extended Deployer from  AbstractDeployer can easily utilise  ServiceBuilderExtension concept. 
> * Immediate goal is to support JAX-WS artefacts through ServiceDeployer . 
> [1] - http://axis.markmail.org/thread/kvhvcvfufpo6zfe3
> [2] - http://axis.apache.org/axis2/java/core/api/org/apache/axis2/deployment/AbstractDeployer.html

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: java-dev-help@axis.apache.org


[jira] [Resolved] (AXIS2-5322) ServiceBuilderExtension for Axis2 Deployers

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

Sagara Gunathunga  resolved AXIS2-5322.
---------------------------------------

    Resolution: Fixed
    
> ServiceBuilderExtension for Axis2 Deployers
> -------------------------------------------
>
>                 Key: AXIS2-5322
>                 URL: https://issues.apache.org/jira/browse/AXIS2-5322
>             Project: Axis2
>          Issue Type: New Feature
>          Components: kernel
>            Reporter: Sagara Gunathunga 
>            Assignee: Sagara Gunathunga 
>             Fix For: 1.7.0
>
>
> Refer the following discussion[1]  to find objectives of this idea.
> ServiceBuilderExtension can take following API.
> public interface ServiceBuilderExtension {
> public void init( ConfigurationContext configurationContext);
> public Map<String,AxisService> buildAxisServices(DeploymentFileData deploymentFileData) throws DeploymentException;;
> }
> and possible to register them with deployers as follows.
> <deployer extension="" directory="" class="">
> <serviceBuilderExtension name ="jwsbuilderExt" class="org.apache.axis2.jaxws.framework.JAXWSServiceBuilderExtension">
> </deployer> 
> * One deployer can have number of ServiceBuilderExtensions and will invoke them in the order they defined in the axis2.xml file. 
> * For a given deploymentFile, if all ServiceBuilderExtensions fail to create AxisService then base deployer will take care about the deployment of that particular deploymentFile.
> * For a given deploymentFile, if a ServiceBuilderExtension could create a AxisService then stop execution of other  ServiceBuilderExtensions registered and return the AxisService immediately to the base deployer for the further processing.   
> * Axis2 AbstractDeployer implement necessary helping methods for this idea so that extended Deployer from  AbstractDeployer can easily utilise  ServiceBuilderExtension concept. 
> * Immediate goal is to support JAX-WS artefacts through ServiceDeployer . 
> [1] - http://axis.markmail.org/thread/kvhvcvfufpo6zfe3
> [2] - http://axis.apache.org/axis2/java/core/api/org/apache/axis2/deployment/AbstractDeployer.html

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: java-dev-help@axis.apache.org


[jira] [Commented] (AXIS2-5322) ServiceBuilderExtension for Axis2 Deployers

Posted by "Hudson (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/AXIS2-5322?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13280109#comment-13280109 ] 

Hudson commented on AXIS2-5322:
-------------------------------

Integrated in Axis2 #1494 (See [https://builds.apache.org/job/Axis2/1494/])
    Further improvements on AXIS2-5322.
* Added test casees.
* Added headers
* Few improvements. (Revision 1340949)

     Result = ABORTED
sagara : 
Files : 
* /axis/axis2/java/core/trunk/modules/jaxws/src/org/apache/axis2/jaxws/framework/JAXWSDeployerSupport.java
* /axis/axis2/java/core/trunk/modules/jaxws/src/org/apache/axis2/jaxws/framework/JAXWSServiceBuilderExtension.java
* /axis/axis2/java/core/trunk/modules/jaxws/test/org/apache/axis2/jaxws/framework
* /axis/axis2/java/core/trunk/modules/jaxws/test/org/apache/axis2/jaxws/framework/JAXWSServiceBuilderExtensionTest.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/AbstractServiceBuilderExtension.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/DeploymentEngine.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/ServiceBuilderExtension.java
* /axis/axis2/java/core/trunk/modules/kernel/src/org/apache/axis2/deployment/WSDLServiceBuilderExtension.java

                
> ServiceBuilderExtension for Axis2 Deployers
> -------------------------------------------
>
>                 Key: AXIS2-5322
>                 URL: https://issues.apache.org/jira/browse/AXIS2-5322
>             Project: Axis2
>          Issue Type: New Feature
>          Components: kernel
>            Reporter: Sagara Gunathunga 
>            Assignee: Sagara Gunathunga 
>             Fix For: 1.7.0
>
>
> Refer the following discussion[1]  to find objectives of this idea.
> ServiceBuilderExtension can take following API.
> public interface ServiceBuilderExtension {
> public void init( ConfigurationContext configurationContext);
> public Map<String,AxisService> buildAxisServices(DeploymentFileData deploymentFileData) throws DeploymentException;;
> }
> and possible to register them with deployers as follows.
> <deployer extension="" directory="" class="">
> <serviceBuilderExtension name ="jwsbuilderExt" class="org.apache.axis2.jaxws.framework.JAXWSServiceBuilderExtension">
> </deployer> 
> * One deployer can have number of ServiceBuilderExtensions and will invoke them in the order they defined in the axis2.xml file. 
> * For a given deploymentFile, if all ServiceBuilderExtensions fail to create AxisService then base deployer will take care about the deployment of that particular deploymentFile.
> * For a given deploymentFile, if a ServiceBuilderExtension could create a AxisService then stop execution of other  ServiceBuilderExtensions registered and return the AxisService immediately to the base deployer for the further processing.   
> * Axis2 AbstractDeployer implement necessary helping methods for this idea so that extended Deployer from  AbstractDeployer can easily utilise  ServiceBuilderExtension concept. 
> * Immediate goal is to support JAX-WS artefacts through ServiceDeployer . 
> [1] - http://axis.markmail.org/thread/kvhvcvfufpo6zfe3
> [2] - http://axis.apache.org/axis2/java/core/api/org/apache/axis2/deployment/AbstractDeployer.html

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org
For additional commands, e-mail: java-dev-help@axis.apache.org