[ http://issues.apache.org/jira/browse/AXIS2-814?page=all ]

Amila Chinthaka Suriarachchi updated AXIS2-814:
-----------------------------------------------

    Attachment: patch.tar

fixed some issues with the generated stub and the messageRecevier with 
Unwrapping option enabled. Earlier It was some thing as follows when the 
request element refers to a pre defined complex  type.

GeteBayOfficialTimeRequest wrappedType = new teBayOfficialTimeRequest();
 wrappedType.setDetailLevel(param1);

this gave a compile exception since there is no relavent method in wrappedType 
class. I changed it to look something as follows
 
GeteBayOfficialTimeRequest wrappedType = new GeteBayOfficialTimeRequest();
GeteBayOfficialTimeRequestType wrappedComplexType = 
GeteBayOfficialTimeRequestType();
                                  
    wrappedComplexType.setDetailLevel(param1);
 wrappedType.setGeteBayOfficialTimeRequest(wrappedComplexType);

and the same type of thing in MessageReceiver as well


> unwrapping support in codegen
> -----------------------------
>
>                 Key: AXIS2-814
>                 URL: http://issues.apache.org/jira/browse/AXIS2-814
>             Project: Apache Axis 2.0 (Axis2)
>          Issue Type: New Feature
>            Reporter: Davanum Srinivas
>         Assigned To: Eran Chinthaka
>            Priority: Blocker
>         Attachments: patch.tar, unwrap.wsdl
>
>
> Please see the discussion here:
> http://marc.theaimsgroup.com/?t=115006964200003&r=1&w=2

-- 
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to