• 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

Axis, missing qualified name in root element

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
My problem is as following, I use prebuilt Eclipse wizard (Axis 1) to build Web service client from provided WSDL:




everything seems to work, code is built and I compile it, but in the end my soap request looks as following:


and my problem is that I get:

<IssueChangedNotification xmlns="http://soap.rpc.jira.atlassian.com">

instead of

<cc:IssueChangedNotification xmlns:cc="http://soap.rpc.jira.atlassian.com">

How to force Axis to create soap message with cc qualified name? My server does not accept my XML and says it is

  Text:CHARACTER:XML Parsing Errors have occurred
                ParserException

Really appreciate your help!!!
reply
    Bookmark Topic Watch Topic
  • New Topic