• 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

mismatch in generated Stub and skeleton code using Axis and weblogic jars

 
Ranch Hand
Posts: 69
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
We are generating skeleton and stub classes from the wsdl using axis 1.1 jar and weblogic 8.1 jar.but there are differences in the code like e.g. in axis generated code if the input to a method is x object then for weblogic it is y object which inturns contains the X objetc.Can you please explain me why this is happening.
 
Ranch Hand
Posts: 2198
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi!
I am not familiar with Axis 1.1 or WebLogic, but I guess it is differences in the implementations that cause differences in the generated code.
For instance, check the section "Unsupported Features" at this link: http://e-docs.bea.com/wls/docs81/webserv/overview.html
Can't you use some more recent web service stack?
JAXB has support for all XML schema features, which the XML serialization mechanism in JAX-RCP does not have.
Best wishes!
 
Don't get me started about those stupid light bulbs.
reply
    Bookmark Topic Watch Topic
  • New Topic