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 "Jongjin Choi (JIRA)" <ax...@ws.apache.org> on 2005/03/21 12:16:28 UTC

[jira] Created: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Expanding Java2wsdl to support the starting-from-java wrapped style web service
-------------------------------------------------------------------------------

         Key: AXIS-1891
         URL: http://issues.apache.org/jira/browse/AXIS-1891
     Project: Axis
        Type: Improvement
  Components: WSDL processing  
    Versions: current (nightly)    
    Reporter: Jongjin Choi
 Attachments: ArrayUtil.java, src.patch, tools.patch

The orignal post in axis-dev from me is 
http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.

This patches objectives are:
 - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
 - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.

The followings are contained in the attaching patcg:
1. java2wsdl : '--deploy' option
The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)

/Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Updated: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Jongjin Choi (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=history ]

Jongjin Choi updated AXIS-1891:
-------------------------------

    Attachment: AXIS-1891-Working.zip

working patch for first-patch and sample java service and .net client.
The patch will be committed

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi
>     Assignee: Davanum Srinivas
>     Priority: Blocker
>  Attachments: AXIS-1891-Working.zip, first-patch.txt
>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Updated: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Jongjin Choi (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=history ]

Jongjin Choi updated AXIS-1891:
-------------------------------

    Attachment: src.patch

ws-axis/java/src patch

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi
>  Attachments: ArrayUtil.java, src.patch, tools.patch
>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Updated: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Jongjin Choi (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=history ]

Jongjin Choi updated AXIS-1891:
-------------------------------

    Attachment: ArrayUtil.java

org.apache.axis.utils.ArrayUtil

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi
>  Attachments: ArrayUtil.java, src.patch, tools.patch
>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Updated: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Jongjin Choi (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=history ]

Jongjin Choi updated AXIS-1891:
-------------------------------

    Attachment: first-patch.txt

The first-patch (non-working, deleted but revived for history)

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi
>     Assignee: Davanum Srinivas
>     Priority: Blocker
>  Attachments: first-patch.txt
>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Jongjin Choi (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=comments#action_61319 ]
     
Jongjin Choi commented on AXIS-1891:
------------------------------------

Second patch applied to CVS.
A test case will be committed. 
(The attached zip file has the dotnet client and java service.
Need to prepare java client.) 

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi
>     Assignee: Davanum Srinivas
>     Priority: Blocker
>  Attachments: AXIS-1891-Working.zip, first-patch.txt
>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Davanum Srinivas (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=history ]
     
Davanum Srinivas resolved AXIS-1891:
------------------------------------

    Resolution: Fixed

Fixed by jongjin.

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi
>     Assignee: Davanum Srinivas
>     Priority: Blocker
>  Attachments: AXIS-1891-Working.zip, first-patch.txt
>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Resolved: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Davanum Srinivas (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=history ]
     
Davanum Srinivas resolved AXIS-1891:
------------------------------------

    Resolution: Fixed

Applied patch.

thanks,
dims

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi

>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Davanum Srinivas (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=comments#action_61325 ]
     
Davanum Srinivas commented on AXIS-1891:
----------------------------------------

- one possible location for the test is ws-axis/java/test/addr2 (not to clash with samples/addr). 
- You can keep the namespace as http://addr2.test as well.
- Better to use http://localhost:8080/axis/services/AddressBook2 (as AddressBook is used by samples/addr)

thanks,
dims

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi
>     Assignee: Davanum Srinivas
>     Priority: Blocker
>  Attachments: AXIS-1891-Working.zip, first-patch.txt
>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Jongjin Choi (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=comments#action_61403 ]
     
Jongjin Choi commented on AXIS-1891:
------------------------------------

Dims,

I added the testcase in test/wsdl/arrays3.

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi
>     Assignee: Davanum Srinivas
>     Priority: Blocker
>  Attachments: AXIS-1891-Working.zip, first-patch.txt
>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Jongjin Choi (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=comments#action_61308 ]
     
Jongjin Choi commented on AXIS-1891:
------------------------------------

Oops. sorry!

I uploaded the non-working version, so delete the files.
May be some code were missing while merging my work with latest cvs.
I'll upload the working version soon.

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi

>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Davanum Srinivas (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=comments#action_61313 ]
     
Davanum Srinivas commented on AXIS-1891:
----------------------------------------

jongjin,

Please apply you changes to CVS directly and add a test case as well.

-- dims

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi
>     Assignee: Davanum Srinivas

>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Commented: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Jongjin Choi (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=comments#action_61306 ]
     
Jongjin Choi commented on AXIS-1891:
------------------------------------

Patches are attached.
The patches are based on the current cvs snapshot 2005/03/20 10:58:49.
All-tests passed.

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi
>  Attachments: ArrayUtil.java, src.patch, tools.patch
>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Updated: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Davanum Srinivas (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=history ]

Davanum Srinivas updated AXIS-1891:
-----------------------------------

    Priority: Blocker  (was: Major)

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi
>     Assignee: Davanum Srinivas
>     Priority: Blocker

>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Reopened: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Davanum Srinivas (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=history ]
     
Davanum Srinivas reopened AXIS-1891:
------------------------------------

     Assign To: Davanum Srinivas

reopening issue.

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi
>     Assignee: Davanum Srinivas

>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira


[jira] Updated: (AXIS-1891) Expanding Java2wsdl to support the starting-from-java wrapped style web service

Posted by "Jongjin Choi (JIRA)" <ax...@ws.apache.org>.
     [ http://issues.apache.org/jira/browse/AXIS-1891?page=history ]

Jongjin Choi updated AXIS-1891:
-------------------------------

    Attachment: tools.patch

ws-axis/java/tools patch

> Expanding Java2wsdl to support the starting-from-java wrapped style web service
> -------------------------------------------------------------------------------
>
>          Key: AXIS-1891
>          URL: http://issues.apache.org/jira/browse/AXIS-1891
>      Project: Axis
>         Type: Improvement
>   Components: WSDL processing
>     Versions: current (nightly)
>     Reporter: Jongjin Choi
>  Attachments: ArrayUtil.java, src.patch, tools.patch
>
> The orignal post in axis-dev from me is 
> http://marc.theaimsgroup.com/?l=axis-dev&m=111099335527238&w=2.
> This patches objectives are:
>  - to keep the axis-user away from hand-writing deploy.wsdd which can be error-prone and confused.
>  - to support the document(wrapped)-literal web service in "Starting-from-Java" way. This include the wrapper-style literal array handling in ser/deser process without modify the user's java bean.
> The followings are contained in the attaching patcg:
> 1. java2wsdl : '--deploy' option
> The java2wsdl now has '--deploy' option which generates deploy.wsdd and required java classes such as ArrayOfT.java and T_Helper.java.
> 2. ArrayOfT <--> T[] conversion in runtime (ser/deser process)
> /Jongjin

-- 
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
-
If you want more information on JIRA, or have a bug to report see:
   http://www.atlassian.com/software/jira