Search |
||
Deploying SOAP 1.2 based webservice in GlassfishPosted by bhaktimehta on January 29, 2008 at 2:15 PM PST
The following blog shows how to create and deploy a SOAP 1.2 based webservice in Glassfish v2 using Netbeans 6.0 Download and install Netbeans 6.0 from here. Click on File->New Project Choose Web ->WebApplication ![]() Next provide the name of the Web application
Click on Finish Next in the Projects tab you will see EchoTest Click Finish Next we add operations to the service Click the source tab in the center pane you will see the Echo.java
source code Add the following operation to the source code (This can be done by
right clicking Webservices->EchoService->AddOperation) /**
This is how the source code looks
Right Click on EchoTest project Next step build a client File -> New Project -> Web Application (Same as fig 1) Name the project as EchoClient
Click Finish Specify the wsdllocation as shown Click Finish Next expand EchoClientTest->WebServiceReferences->EchoService->EchoService->EchoPort->echoString
Drag echoString and drop after line <h2> This is how the jsp will look
Next Right click and call Run the EchoClientTest This is what you see when you call
http://localhost:8080/EchoClientTest/ Hello World!Result = hello John Doe Advanced Tip If you want to see the soap messages add the following line in GF/domains/domain1/confiig/domain.xml in java-config element <jvm-options>-Dcom.sun.xml.ws.assembler.server=true</jvm-options> Then stop the GF server and restart it Next call http://localhost:8080/EchoClientTest/ You can see the following messages in GF/domains/domain1/logs/server.log Request <?xml version="1.0" ?> Response
»
Related Topics >>
Java Web Services and XML Comments
Comments are listed in date ascending order (oldest first)
Submitted by 9chintan on Thu, 2008-02-21 13:05.
Hi Bhakti,
I followed your advanced tip. Still I am not able to see the SOAP Message in my server log.
Anything I need to be aware of.
Thanks for your help.
Regards,
Chintan.
Submitted by bhaktimehta on Thu, 2008-02-21 13:34.
Hi chintan
That is the only property which is needed. Which version of GF are you using.
You can also see if
http://localhost:8080/EchoTest/EchoService?Tester is working and try to see the soap messages there However that will work only if you are using a GF v2.1 build after feb 8 because I fixed issue 4122 https://glassfish.dev.java.net/issues/show_bug.cgi?id=4122
Regards,
Bhakti
Submitted by 9chintan on Thu, 2008-02-21 21:41.
Hi Bhakti,
I am a newbie to web service and possibly this might sound odd but I rearranged the property to the very end of list and it works!!!
Thanks for your help.
I am using the glassfish bundled with Netbeans6.0
Sorry for my bad.
Thanks
Chintan
Submitted by ialam on Thu, 2008-01-31 20:23.
Hi Bhakti. I'm a new support technician to a large software company where i'm seeing TD analysis is very important for our web application. We utilize Weblogic 9.2 and was hoping you could give me some pointers on what I should be looking out for in a TDA report. I see many locking monitors, but what piece of these locks are the root causes? Any help is much appreciated. Thanks.
Iftekhar
Submitted by dante52 on Tue, 2008-06-17 22:35.
Submitted by ds122787 on Wed, 2008-06-11 15:53.
I tried this annotation @javax.xml.ws.BindingType(value="http://java.sun.com/xml/ns/jaxws/2003/05/soap/bindings/HTTP/" ) with a stateless session bean exposed as WS and that didn't work. Is it known Metro limitation?
-Deepa
Submitted by freddiefishcake on Mon, 2009-01-19 13:02.
Hi Bhakti,
a) I started from NetBeans 6.5 and found that it's default is still SOAP 1.1 rather than 1.2 - are there still valid reasons to use SOAP 1.1 for new projects?
b) your method works perfectly; however the resulting SOAP message looks very similar to the original message, the only difference appears to be the namespace which changes from
to
The rest of the message seems to be unchanged - is this what you would expect?
c) the W3C overview of SOAP 1.2 (http://www.w3.org/2003/06/soap11-soap12.html) suggests that 1.2 enables benefits including "compression, optimization, and other performance gains" .. Netbeans / GlassFish QoS seems to suggest that e.g. FastInfoset is automagically negotiated, but all I see in e.g. wireShark is the same old xml streams - are there any good posts to show how to enable e.g. compression when uploading large payloads (e.g. jpg) from a client to a webService?
|
||
|
|