Hey all, I have the following snippet of schema:

<xs:complexType name="foo" >
  <xs:complexContent>
    <xs:extension base="bar">
      <xs:sequence>
        <xs:element name="user" />
      </xs:sequence>
      <xs:attribute name="animal" fixed="cow" use="required" />
    </xs:extension>
  </xs:complexContent>
</xs:complexType>

However, using Wireshark, I do not see @animal="cow" being sent across the network. Using the same WSDL with .NET, I *do* see the attribute.

I can force it by doing something like:

foo.setAnimal(foo.getAnimal());

But that's pretty ugly...

What am I doing wrong?

Thanks!

-Jake

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to