You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ofbiz.apache.org by "Bilgin Ibryam (JIRA)" <ji...@apache.org> on 2010/01/11 10:52:54 UTC

[jira] Closed: (OFBIZ-3394) Axis2 SOAP implementation does not have types defined for col-* elements

     [ https://issues.apache.org/jira/browse/OFBIZ-3394?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Bilgin Ibryam closed OFBIZ-3394.
--------------------------------

       Resolution: Fixed
    Fix Version/s: SVN trunk

Thanks Chris and Chatree. The patch is in trunk r897820

After reviewing the patch I decided to create a new complex type with all the elements (the same as map-value) and then reference this element from map-value and col-Collection instead of adding all the elements. This would help to get rid of element repetition, but this change cause generating even more classes for java clients. Finally I committed the patch as it is.

Chris feel free to create another issue for the flex error you receive. I'm closing this one.

Bilgin

> Axis2 SOAP implementation does not have types defined for col-* elements
> ------------------------------------------------------------------------
>
>                 Key: OFBIZ-3394
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-3394
>             Project: OFBiz
>          Issue Type: Bug
>          Components: framework
>    Affects Versions: SVN trunk
>            Reporter: chris snow
>            Assignee: Bilgin Ibryam
>             Fix For: SVN trunk
>
>         Attachments: patch.txt
>
>
> The wsdl generated from the Axis2 soap implementation does not define types for col-* elements:
> {code}
> <xsd:element name="col-ArrayList"/>
> <xsd:element name="col-LinkedList"/>
> <xsd:element name="col-Stack"/>
> <xsd:element name="col-Vector"/>
> <xsd:element name="col-TreeSet"/>
> <xsd:element name="col-HashSet"/>
> <xsd:element name="col-Collection"/>
> {code}
> I would expect to see something like:
> {code}
> <xsd:element name="col-ArrayList"  type="tns:XXX"/>
> <xsd:complexType name="XXX">
>    <!-- To be defined -->
> </xsd:complexType>
> {code}
> Without type defintions, tools (such as wsdl2java) are unable to generate the appropriate classes for the col-* elements.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.