SOAP Web Service

2011-01-28 Thread mortsahl
My company has a set of web services that are not exposed outside the firewall. It is being proposed that a publicly available GUI client be written to access those services by our clients. It's being proposed that the client be written in GWT/GXT Are there valid reasons to use GWT and web servi

Re: SOAP Web Service

2011-01-28 Thread Deepak Singh
Right. And i am using Spring web service with GWT and it works fine, no issue. Deepak On Fri, Jan 28, 2011 at 6:30 AM, mortsahl wrote: > My company has a set of web services that are not exposed outside the > firewall. > > It is being proposed that a publicly available GUI client be written > t

Invoke SOAP Web Service from GWT on the server side.

2010-06-17 Thread AgitoM
For a big GWT project I am working on, we need to to retrieve data from other computer systems. Based on my previous experience, a good way to integrate these two systems, is to integrate them together using a SOAP based Web Service. Preferably I would like to server side of my GWT project to invo

Re: Invoke SOAP Web Service from GWT on the server side.

2010-06-18 Thread Stefan Bachert
Hi Agito, when you on the server side, you can do anything you can do with java. No limits from GWT applies. With other word, you may ask any other java group, too Stefan Bachert http://gwtworld.de On Jun 17, 5:59 am, AgitoM wrote: > For a big GWT project I am working on, we need to to retriev

Re: Invoke SOAP Web Service from GWT on the server side.

2010-06-18 Thread AgitoM
Hi Stefan, Thanks for your reply. Well thats what I indeed thought as well. But for some reason invoking a service using AXIS2 is causing me a problem, hence I decided to ask if there was any restriction. Well, I will just keep on trying and getting it to work. Once I do, I will post a solution he

Re: Invoke SOAP Web Service from GWT on the server side.

2010-06-19 Thread Dean S. Jones
I gave up on alot of Java on the server side for 'glue code', and have been coding in Groovy. Calling a Web Service is basically 2-3 lines of code http://groovy.codehaus.org/GroovyWS it takes a bit of set-up for COMPILED Groovy, ant tasks, Groovy Plugin for Eclipse YMMV On Jun 18, 1:31 pm

Re: Invoke SOAP Web Service from GWT on the server side.

2010-06-19 Thread nacho
I had troubles trying to use JAX-WS. But i realized that the troubles were on Jetty server, so i deployed the application in a Tomcat and it works great. Maybe it could help you. On 19 jun, 09:52, "Dean S. Jones" wrote: > I gave up on alot of Java on the server side for 'glue code', and have >