• 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

Weblogic webservice with out JAXWS

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

I need help. I need to create web service from WSDL with Weblogic. Now I can't use JAX-WS. Is there any other way to generate Java classes with out JAXWS example.
Please refer this URL.
http://download.oracle.com/docs/cd/E13222_01/wls/docs92/webserv/use_cases.html#wp220705

 
Rancher
Posts: 1337
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Yes, there are other ways. Before we recommend something else which maybe you also "can't use", it would be useful for you to tell as why you can't use JAX-WS. Also, do you mean you can't use JAX-WS on the server, or that you can't use it on the client, or ... ?
 
Joybrata Chakraborty
Greenhorn
Posts: 29
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Lester Burnham wrote:Yes, there are other ways. Before we recommend something else which maybe you also "can't use", it would be useful for you to tell as why you can't use JAX-WS. Also, do you mean you can't use JAX-WS on the server, or that you can't use it on the client, or ... ?



Thanks Lester for your reply.

I know that JAXWS will be more convenient to use. But higher authorities decided not to use JAXWS. Now I am looking, is there any other possibilities with weblogic to create java artifacts from WSDL.(Like wsdl2java or wsdlc ). We can't use JAXWS in server side.

Thanks
Joy
 
Lester Burnham
Rancher
Posts: 1337
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You could use the SAAJ API, which should be supported by WebLogic out of the box. Or you can use a 3rd party SOAP stack like Axis which -in addition to supporting JAX-WS- also has its own API; Axis also comes with its own toolset for generating client code. (It would be rather silly to use a 3rd party SOAP stack after saying "no" to the built-in SOAP stack, though.)
 
reply
    Bookmark Topic Watch Topic
  • New Topic