• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

how to xsi:type attribute for elements in soap message

 
Ranch Hand
Posts: 548
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi All,

I have a web service developed using .NET and I trying to consume it
using AXIS 1.2.1 Final. When I request the service I am getting
"org.xml.sax.SAXParseException ocument root element is missing"
AxisFault from the service. I was suggest that because of lack of
"xsi:type=xsd:string" in the request soap message generated by Axis
client I am getting this exception from the service and so I want to
have "xsi:type=xsd:string" for each of elements in the generated soap
message from axis client, and I have tried this piece of code
"_call.setProperty(org.apache.axis.client.Call.SEND_TYPE_ATTR,
Boolean.FALSE);" in the axis generated stubs (out of wsdl) but this
did not help me. I have also tried "<parameter name=sendXsiTypes
value=true/>" in client-config.wsdd file and this also is of no use.
Can anyone please clarify on how to generatexsi:type="xsd:string" for
each of the elements in the request soap
message from axis 1.2.1 final to .net web service.


Thanks & Regards,
 
reply
    Bookmark Topic Watch Topic
  • New Topic