Sun has announced the latest releast of the Java Web Services Developer Pack. The Java WSDP 1.5 release contains XML Web Services Security, a preview of the Sun Java Streaming XML Parser based on JSR 173, as well as updates to existing web services technologies previously released in the Java WSDP, and guidelines for developing client side web services.
Read more: Java Web Services Developer Pack 1.5 Available
Download the pack
-
Java Web Services Developer Pack 1.5 Available (9 messages)
- Posted by: Dion Almaer
- Posted on: November 15 2004 11:22 EST
Threaded Messages (9)
- It's from Sun so it's not open source instead it's a black box. by S??bastien Tardif on November 15 2004 22:23 EST
- axis setup and reference by mike wong on November 16 2004 02:55 EST
-
axis setup and reference by Fuad Ibrahimov on November 16 2004 03:15 EST
-
axis setup and reference by mike wong on November 16 2004 04:58 EST
-
axis setup and reference by Vic Cekvenich on November 16 2004 11:20 EST
- Axis vs Hessian by Sebastien Tardif on November 16 2004 11:52 EST
- jpetstore by Ben Murphy on November 17 2004 01:17 EST
-
axis setup and reference by Vic Cekvenich on November 16 2004 11:20 EST
- axis -- interoperability issues by quentin compson on November 16 2004 09:21 EST
-
axis setup and reference by mike wong on November 16 2004 04:58 EST
-
axis setup and reference by Fuad Ibrahimov on November 16 2004 03:15 EST
- Web Services Security and SSO scenario by Michal Harezlak on November 17 2004 01:40 EST
- axis setup and reference by mike wong on November 16 2004 02:55 EST
-
It's from Sun so it's not open source instead it's a black box.[ Go to top ]
- Posted by: S??bastien Tardif
- Posted on: November 15 2004 22:23 EST
- in response to Dion Almaer
For the last 4 months, I'm working with Axis and WSDP. I have realized how important is it to use open source solutions. WSDP do not give useful error message so you are stuck to do what you can with the binary classes to know what’s going on.
To add to the frustration, for every bug I logged on WSDP, Sun lost them!
You should stay away from black boxes and use Axis! -
axis setup and reference[ Go to top ]
- Posted by: mike wong
- Posted on: November 16 2004 02:55 EST
- in response to S??bastien Tardif
hi,
I'm toying around with axis for some time and i was able to create simple services. My problem now is that i cant get a comprehensive and reader-friendly reference so that i can build more complex web services. One of my greatest questions with axis is where do i deploy my business codes, the more complex ones? Do i have to link axis with some backend frameworks, if yes can u give ur sample setup that u have worked on?
By the way the apache axis reference docs are quite complex for me :(
Thanks,
Mike -
axis setup and reference[ Go to top ]
- Posted by: Fuad Ibrahimov
- Posted on: November 16 2004 03:15 EST
- in response to mike wong
Hi Mike,
You have to deploy Axis in your app. context, not your app. in Axis context. Add axis libs to your classpath and copy config from web.xml of Axis to your web.xml. So you can share all your business objects and your config through app. context.
For backend frameworks, have a look to the Springframework's docs. There is some tips how to make available Spring context for Axis web-services.
Cheers,
Fuad Ibrahimov. -
axis setup and reference[ Go to top ]
- Posted by: mike wong
- Posted on: November 16 2004 04:58 EST
- in response to Fuad Ibrahimov
so spring can be used with axis...ok ill try this one out.
Thanks,
Mike -
axis setup and reference[ Go to top ]
- Posted by: Vic Cekvenich
- Posted on: November 16 2004 11:20 EST
- in response to mike wong
Mike, I used to use Axis and switched to Hessian, check it out.
.V -
Axis vs Hessian[ Go to top ]
- Posted by: Sebastien Tardif
- Posted on: November 16 2004 11:52 EST
- in response to Vic Cekvenich
Hessian is not using SOAP! People are supposed to use Axis because they want to be compatible with other SOAP implementation. If you don't need SOAP and are sure you will not need it in the futur, DON'T USE it! -
jpetstore[ Go to top ]
- Posted by: Ben Murphy
- Posted on: November 17 2004 01:17 EST
- in response to Vic Cekvenich
Jpetstore in the samples has a good example of using axis.
Also, is it possible to directly use POJOs from my business layer with Axis when using doc/lit with arrays? Presently, I'm converting a generated object like ArrayOfFoo that contains axis Foo objects to a Collection of Foo domain objects by using BeanUtils to copy properties between the objects. -
axis -- interoperability issues[ Go to top ]
- Posted by: quentin compson
- Posted on: November 16 2004 21:21 EST
- in response to Fuad Ibrahimov
yes, that's correct -- thats how i did it too for some simple web services that i wrote. pretty easy really.
but here's a heads up: i * think * that there may be issues with axis -- at least in terms of interoperability with clients written w/ the vb6 soap toolkit. for example, we got this cryptic error message with axis ws deployed in tomcat 4 on win --
<
java.lang.IllegalArgumentException: [email protected]
>>
bounce the axis app by touching the web.xml and the service works again. that doesn't make obvious sense to me. if anyone has a clue, i'm all ears. -
Web Services Security and SSO scenario[ Go to top ]
- Posted by: Michal Harezlak
- Posted on: November 17 2004 01:40 EST
- in response to S??bastien Tardif
I was wondering if Web Services Security v1.0 with Digital Signatures v1.0 EA2 will allow for implementation of this scenario:
http://tinyurl.com/uf0r
Anyone tried it?