Yeah! Give a bell when its up and I will take a look.

Cheers, Edell. 

-----Original Message-----
From: Mosur Ravi, Balaji 
Sent: 01 August 2006 14:39
To: yoko-dev@incubator.apache.org
Subject: RE: Yoko Milestone release

It's a good idea... I will update the milestone once the patch is
applied... 

Can I get some volunteers to check the directory structure & the
notices, etc...? 

Thanks

Balaji

-----Original Message-----
From: Vescovi, Matteo
Sent: Tuesday, August 01, 2006 9:15 AM
To: yoko-dev@incubator.apache.org
Subject: Re: Yoko Milestone release

Hi,
is it not too late to include the patch I just attached to YOKO-107
(adding support for nested struct)?

That patch fixes a nasty bug affecting the generation of schema types
for struct parameter in an IDL operation.

Let's say we have a IDL operation containing a struct parameter followed

by a struct definition:
struct Employee {
   string name;
   string dep;
};

void greet(in Employee emp2);

struct AnotherStruct {
   short aShort;
   long aLong;
};

then the xmlschemaelement corresponding to parameter Employee emp2 was
erroneously assigned the schemaType of AnotherStruct instead of the
schemaType of Employee, e.g:
     <xs:element name="greet">
       <xs:complexType>
         <xs:sequence>
           <xs:element name="emp2" type="AnotherStruct">
           </xs:element>
         </xs:sequence>
       </xs:complexType>
     </xs:element>

instead of:
     <xs:element name="greet">
       <xs:complexType>
         <xs:sequence>
           <xs:element name="emp2" type="Employee">
           </xs:element>
         </xs:sequence>
       </xs:complexType>
     </xs:element>

Cheers,
- Matteo



Mosur Ravi, Balaji wrote:

>Hi,
>
>I have uploaded the distribution in my home directory. If everyone is
ok
>with that we could propose this for our first milestone release...
>
>Directory: /home/bravi
>
>Thanks
>
>Balaji
>
>
>  
>




Reply via email to