Hi Dan:

Actually, Do you have the source code for the people example?  Including
PeopleServiceImpl and the schema?  If you do, I can look at it for
reference.

Thanks,

Southin

On 2/19/07, Dan Diephouse <[EMAIL PROTECTED]> wrote:

Hi Southin,

We use JAXB to do the databinding, so you need to tell JAXB that you want
a
particular property to be an attribute. If you're doing code first I think
it looks like this:

public class People {
   @XmlAttribute
   public String getId() {...}
..
}

If you're doing schema first development, simply change your schema:

<element name="People">
<complexType>
<attribute name="id" type="xsd:string"/>
</complexType>
</element>

Cheers,
- Dan


On 2/19/07, Southin Simphoukham <[EMAIL PROTECTED]> wrote:
>
> Hi:
>
> I am new to cxf and looked at the Restful Service/Http binding example.
In
> that example for People Service there was do attributes in the element
> Person.
>
> Can someone provide me with code snippet in who to best retrieve an
> attribute in that scenario.
>
> For example,
>
> <getPeople>
> <Person id="123456">....<Person>
> </getPeople>
>
> Thank you,
>
> Southin
>



--
Dan Diephouse
Envoi Solutions
http://envoisolutions.com | http://netzooid.com/blog

Reply via email to