• 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
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Axis2 Issue, Please Help!

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi

I created simple pojo service that contains 2 classes : a service class that has method that return simple Person class (name, id both String).

The wsdl file created by java2wsdl has the schema embedded.

i deployed this service under axis2 at Apache tomcat.

I have a Client product that when it parsing the WSDL file of that service it's failing to read the parameters of the operations and giving the following error:

'schemaLocation' attribute missing on 'import'

now, I think it's referring to this line from the WSDL file:

<xs:import namespace="http://data/xsd" />

I attached the WSDL file and the sercices.xml in the bottom of the message.

Please help.

Thanks in advance

Roi

services.xml:

CalcWithPerson22.wsdl:
 
Bartender
Posts: 6663
5
MyEclipse IDE Firefox Browser Linux
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Welcome to code ranch.

Your WSDL is attempting to import types from a different namespace but does not mention where the types can be found - http://www.w3schools.com/schema/el_import.asp

It is missing the schemaLocation attribute - <xs:import namespace="http://data/xsd"/>
 
Can you shoot lasers out of your eyes? Don't look at this tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic