You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tuscany.apache.org by "Rick Rineholt (JIRA)" <tu...@ws.apache.org> on 2006/05/08 17:38:20 UTC

[jira] Created: (TUSCANY-331) No maven plugin for Java2WSDL

No maven plugin for Java2WSDL
-----------------------------

         Key: TUSCANY-331
         URL: http://issues.apache.org/jira/browse/TUSCANY-331
     Project: Tuscany
        Type: New Feature

  Components: Java SCA Tools  
    Reporter: Rick Rineholt


There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA gen.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


Re: [jira] Created: (TUSCANY-331) No maven plugin for Java2WSDL

Posted by Venkata Krishnan <fo...@gmail.com>.
I will look into this rightaway..

- Venkat

On 5/8/06, Rick Rineholt (JIRA) <tu...@ws.apache.org> wrote:
>
> No maven plugin for Java2WSDL
> -----------------------------
>
>          Key: TUSCANY-331
>          URL: http://issues.apache.org/jira/browse/TUSCANY-331
>      Project: Tuscany
>         Type: New Feature
>
>   Components: Java SCA Tools
>     Reporter: Rick Rineholt
>
>
> There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA
> gen.
>
> --
> This message is automatically generated by JIRA.
> -
> If you think it was sent incorrectly contact one of the administrators:
>    http://issues.apache.org/jira/secure/Administrators.jspa
> -
> For more information on JIRA, see:
>    http://www.atlassian.com/software/jira
>
>

[jira] Commented: (TUSCANY-331) No maven plugin for Java2WSDL

Posted by "Venkatakrishnan (JIRA)" <tu...@ws.apache.org>.
    [ http://issues.apache.org/jira/browse/TUSCANY-331?page=comments#action_12378623 ] 

Venkatakrishnan commented on TUSCANY-331:
-----------------------------------------

I am looking into this.   But then this would require some changes to the project structure isn' it.

Currently there is one maven plugin for wsdl2java under https://svn.apache.org/repos/asf/incubator/tuscany/java/sca/plugin/  

To include the java2wsdl plugin into this would require changes to the project strucuture... i.e. we might need to create two separate projects called 'wsdl2java' and 'java2wsdl' under https://svn.apache.org/repos/asf/incubator/tuscany/java/sca/plugin/

As we go along we may have more sca tools and hence their corresponding plugins

Also the artifact id for the wsdl2java plugin must have to change from  'tuscany-sca-plugin' to 'tuscany-sca-plugin-wsdl2java'.   This will impact the projects that invoke this plugin and hence the build overall.

Can I go ahead with this?

If everybody is ok with this... then how about re-structuring the https://svn.apache.org/repos/asf/incubator/tuscany/java/sca/tools also on similar lines i.e. instead of having one project that builds both java2wsdl and wsdl2java why not have to sub-projects that builds each induvidually?

> No maven plugin for Java2WSDL
> -----------------------------
>
>          Key: TUSCANY-331
>          URL: http://issues.apache.org/jira/browse/TUSCANY-331
>      Project: Tuscany
>         Type: New Feature

>   Components: Java SCA Tools
>     Reporter: Rick Rineholt
>     Assignee: Jean-Sebastien Delfino

>
> There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA gen.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (TUSCANY-331) No maven plugin for Java2WSDL

Posted by "Venkatakrishnan (JIRA)" <tu...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/TUSCANY-331?page=all ]

Venkatakrishnan updated TUSCANY-331:
------------------------------------

    Attachment: Java2WSDL - Tuscany Patch 11-May.txt
                SCA-Tools-Maven-Plugins.zip
                java2wsdl-mojo-pom-fragment.xml

1) The patch file is to apply a fix into the Tuscany Java2wsdl tooling. 

2) The contents of the zipfile must be extracted into http://svn.apache.org/repos/asf/incubator/tuscany/java/sca/
- This zipfile contains the maven plugins for wsdl2java and java2wsdl tooling.  The project name is 'plugins' and hence the existing project named 'plugin' can continue to exist.
- Within this 'plugins' project there are two modules 'plugin.java2wsdl' and 'plugin.wsdl2java'.  Basically I have followed the naming conventions as it exists in the case of the other modules i.e. 'bindings' and 'containers' within http://svn.apache.org/repos/asf/incubator/tuscany/java/sca
- The artifact ids for the wsdl2java and java2wsdl plugins also follow the same pattern as the modules withing 'containers' and 'bindings'.

I could not figure out a way of putting all of this i.e. all of what is there in the zip file in another patch file.  From within eclipse, where I create all the patches I could not find an option to create a patch to add these two project.  Hence I have resorted to attach the zip file.  Please let me know how this can be otherwise done.

3) Here is a sample fragment that could go into a pom.xml in order to invoke the java2wsdl plugin.  I have attached a file that contains this fragment.
<plugin>
    <groupId>org.apache.tuscany.sca.plugins</groupId>
    <artifactId>tuscany-plugin-java2wsdl</artifactId>
    <executions>
        <execution>
            <configuration>
                <sourceClassName>org.soapinterop.DocTestPortType</sourceClassName>
                <classpaths>
                    <String>${basedir}/target/classes</String>
                    <String>${settings.localRepository}/org/apache/tuscany/tuscany-sdo-impl/SNAPSHOT/tuscany-sdo-impl-SNAPSHOT.jar</String>
                    <String>${settings.localRepository}/commonj/sdo-api/SNAPSHOT/sdo-api-SNAPSHOT.jar</String>
                    <String>${settings.localRepository}/org/eclipse/emf/ecore/2.2.0-SNAPSHOT/ecore-2.2.0-SNAPSHOT.jar</String>
                    <String>${settings.localRepository}/org/eclipse/emf/common/2.2.0-SNAPSHOT/common-2.2.0-SNAPSHOT.jar</String>
                    <String>${settings.localRepository}/org/eclipse/emf/ecore-change/2.2.0-SNAPSHOT/ecore-change-2.2.0-SNAPSHOT.jar</String>
                </classpaths>
            </configuration>
            <goals>
                <goal>generate</goal>
            </goals>
        </execution>
    </executions>
</plugin>

4) I have been able to successfully build the following in offline mode since there has been no additional dependencies from the baseline that I picked up from the SVN: -
- http://svn.apache.org/repos/asf/incubator/tuscany/java/sca/tools 
(to ensure the fixes to java2wsdl tool are ok)
-http://svn.apache.org/repos/asf/incubator/tuscany/java/sca/plugins
(to ensure that the plugins project builds ok)

5) To test the wsdl2java plugin from this new 'plugins' project, I made some changes to the webservices interop test case project i.e. http://svn.apache.org/repos/asf/incubator/tuscany/java/testing/interop/clients/webserviceInteropDoc/pom.xml to use the new artifact id for the wsdl2java plug in.  I was able to build this project successuffly (with all tests running successfully).   



> No maven plugin for Java2WSDL
> -----------------------------
>
>          Key: TUSCANY-331
>          URL: http://issues.apache.org/jira/browse/TUSCANY-331
>      Project: Tuscany
>         Type: New Feature

>   Components: Java SCA Tools
>     Versions: Java-M1-tentative
>     Reporter: Rick Rineholt
>     Assignee: Jean-Sebastien Delfino
>      Fix For: Java-M1-tentative
>  Attachments: Java2WSDL - Tuscany Patch 11-May.txt, SCA-Tools-Maven-Plugins.zip, java2wsdl-mojo-pom-fragment.xml
>
> There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA gen.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Assigned: (TUSCANY-331) No maven plugin for Java2WSDL

Posted by "Jean-Sebastien Delfino (JIRA)" <tu...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/TUSCANY-331?page=all ]

Jean-Sebastien Delfino reassigned TUSCANY-331:
----------------------------------------------

    Assign To: Jean-Sebastien Delfino

> No maven plugin for Java2WSDL
> -----------------------------
>
>          Key: TUSCANY-331
>          URL: http://issues.apache.org/jira/browse/TUSCANY-331
>      Project: Tuscany
>         Type: New Feature

>   Components: Java SCA Tools
>     Reporter: Rick Rineholt
>     Assignee: Jean-Sebastien Delfino

>
> There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA gen.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (TUSCANY-331) No maven plugin for Java2WSDL

Posted by "Jean-Sebastien Delfino (JIRA)" <tu...@ws.apache.org>.
    [ http://issues.apache.org/jira/browse/TUSCANY-331?page=comments#action_12379007 ] 

Jean-Sebastien Delfino commented on TUSCANY-331:
------------------------------------------------

Yes, this makes a lot of sense. I guess the change to the samples and other projects is not that bad, you'll just need to change the id of the current wsdl2java plugin. I suggest tuscany-wsdl2java-plugin instead of tuscany-sca-plugin-wsdl2java. To minimize the changes at this point (since we're trying to stabilize our M1 release), can you keep one tools project for now, but just create two different plugin projects under a "plugins" project? Thanks!

> No maven plugin for Java2WSDL
> -----------------------------
>
>          Key: TUSCANY-331
>          URL: http://issues.apache.org/jira/browse/TUSCANY-331
>      Project: Tuscany
>         Type: New Feature

>   Components: Java SCA Tools
>     Reporter: Rick Rineholt
>     Assignee: Jean-Sebastien Delfino

>
> There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA gen.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Closed: (TUSCANY-331) No maven plugin for Java2WSDL

Posted by "Rick Rineholt (JIRA)" <tu...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/TUSCANY-331?page=all ]

Rick Rineholt closed TUSCANY-331.
---------------------------------

    Resolution: Fixed

old and done

> No maven plugin for Java2WSDL
> -----------------------------
>
>                 Key: TUSCANY-331
>                 URL: http://issues.apache.org/jira/browse/TUSCANY-331
>             Project: Tuscany
>          Issue Type: New Feature
>          Components: Java SCA Tools
>    Affects Versions: Java-Mx
>            Reporter: Rick Rineholt
>             Fix For: Java-Mx
>
>         Attachments: Java2WSDL - Tuscany Patch 11-May.txt, java2wsdl-mojo-pom-fragment.xml, SCA-Tools-Maven-Plugins.zip
>
>
> There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA gen.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] Assigned: (TUSCANY-331) No maven plugin for Java2WSDL

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/TUSCANY-331?page=all ]

ant elder reassigned TUSCANY-331:
---------------------------------

    Assign To: ant elder  (was: Jean-Sebastien Delfino)

> No maven plugin for Java2WSDL
> -----------------------------
>
>          Key: TUSCANY-331
>          URL: http://issues.apache.org/jira/browse/TUSCANY-331
>      Project: Tuscany
>         Type: New Feature

>   Components: Java SCA Tools
>     Versions: Java-M1-tentative
>     Reporter: Rick Rineholt
>     Assignee: ant elder
>      Fix For: Java-M1-tentative
>  Attachments: Java2WSDL - Tuscany Patch 11-May.txt, SCA-Tools-Maven-Plugins.zip, java2wsdl-mojo-pom-fragment.xml
>
> There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA gen.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (TUSCANY-331) No maven plugin for Java2WSDL

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/TUSCANY-331?page=all ]

ant elder updated TUSCANY-331:
------------------------------

    Fix Version: Java-M1
                     (was: Java-M1-tentative)
        Version: Java-M1
                     (was: Java-M1-tentative)

> No maven plugin for Java2WSDL
> -----------------------------
>
>          Key: TUSCANY-331
>          URL: http://issues.apache.org/jira/browse/TUSCANY-331
>      Project: Tuscany
>         Type: New Feature

>   Components: Java SCA Tools
>     Versions: Java-M1
>     Reporter: Rick Rineholt
>     Assignee: ant elder
>      Fix For: Java-M1
>  Attachments: Java2WSDL - Tuscany Patch 11-May.txt, SCA-Tools-Maven-Plugins.zip, java2wsdl-mojo-pom-fragment.xml
>
> There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA gen.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (TUSCANY-331) No maven plugin for Java2WSDL

Posted by "Jean-Sebastien Delfino (JIRA)" <tu...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/TUSCANY-331?page=all ]

Jean-Sebastien Delfino updated TUSCANY-331:
-------------------------------------------

    Fix Version: M1-tentative
        Version: M1-tentative

> No maven plugin for Java2WSDL
> -----------------------------
>
>          Key: TUSCANY-331
>          URL: http://issues.apache.org/jira/browse/TUSCANY-331
>      Project: Tuscany
>         Type: New Feature

>   Components: Java SCA Tools
>     Versions: M1-tentative
>     Reporter: Rick Rineholt
>     Assignee: Jean-Sebastien Delfino
>      Fix For: M1-tentative

>
> There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA gen.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Commented: (TUSCANY-331) No maven plugin for Java2WSDL

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
    [ http://issues.apache.org/jira/browse/TUSCANY-331?page=comments#action_12402277 ] 

ant elder commented on TUSCANY-331:
-----------------------------------

Applied. Thanks for the patches!
Still to do, change some/all of the interop and samples to use the new java2wsdl tool.

> No maven plugin for Java2WSDL
> -----------------------------
>
>          Key: TUSCANY-331
>          URL: http://issues.apache.org/jira/browse/TUSCANY-331
>      Project: Tuscany
>         Type: New Feature

>   Components: Java SCA Tools
>     Versions: Java-M1
>     Reporter: Rick Rineholt
>     Assignee: ant elder
>      Fix For: Java-M1
>  Attachments: Java2WSDL - Tuscany Patch 11-May.txt, SCA-Tools-Maven-Plugins.zip, java2wsdl-mojo-pom-fragment.xml
>
> There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA gen.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Updated: (TUSCANY-331) No maven plugin for Java2WSDL

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/TUSCANY-331?page=all ]

ant elder updated TUSCANY-331:
------------------------------

    Fix Version: Java-Mx
                     (was: Java-M1)
        Version: Java-Mx
                     (was: Java-M1)

> No maven plugin for Java2WSDL
> -----------------------------
>
>          Key: TUSCANY-331
>          URL: http://issues.apache.org/jira/browse/TUSCANY-331
>      Project: Tuscany
>         Type: New Feature

>   Components: Java SCA Tools
>     Versions: Java-Mx
>     Reporter: Rick Rineholt
>     Assignee: ant elder
>      Fix For: Java-Mx
>  Attachments: Java2WSDL - Tuscany Patch 11-May.txt, SCA-Tools-Maven-Plugins.zip, java2wsdl-mojo-pom-fragment.xml
>
> There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA gen.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira


[jira] Assigned: (TUSCANY-331) No maven plugin for Java2WSDL

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/TUSCANY-331?page=all ]

ant elder reassigned TUSCANY-331:
---------------------------------

    Assignee:     (was: ant elder)

> No maven plugin for Java2WSDL
> -----------------------------
>
>                 Key: TUSCANY-331
>                 URL: http://issues.apache.org/jira/browse/TUSCANY-331
>             Project: Tuscany
>          Issue Type: New Feature
>          Components: Java SCA Tools
>    Affects Versions: Java-Mx
>            Reporter: Rick Rineholt
>             Fix For: Java-Mx
>
>         Attachments: Java2WSDL - Tuscany Patch 11-May.txt, java2wsdl-mojo-pom-fragment.xml, SCA-Tools-Maven-Plugins.zip
>
>
> There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA gen.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

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


[jira] Commented: (TUSCANY-331) No maven plugin for Java2WSDL

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
    [ http://issues.apache.org/jira/browse/TUSCANY-331?page=comments#action_12402357 ] 

ant elder commented on TUSCANY-331:
-----------------------------------

Moving to Mx to finish the work of getting it uses by tests/samples

> No maven plugin for Java2WSDL
> -----------------------------
>
>          Key: TUSCANY-331
>          URL: http://issues.apache.org/jira/browse/TUSCANY-331
>      Project: Tuscany
>         Type: New Feature

>   Components: Java SCA Tools
>     Versions: Java-Mx
>     Reporter: Rick Rineholt
>     Assignee: ant elder
>      Fix For: Java-Mx
>  Attachments: Java2WSDL - Tuscany Patch 11-May.txt, SCA-Tools-Maven-Plugins.zip, java2wsdl-mojo-pom-fragment.xml
>
> There is no maven plugin  for Java2WSDL  as there is for SDO gen. and SCA gen.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira