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 services together?  Isn't
the WS layer just redundant ... I mean you call the RPC layer that
talks to the server anyway, then that layer makes a services request,
gets the response, then thru a DTO serialized the response back to the
GUI.

Am I missing something here?

Mort

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 morts...@gmail.com 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
 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 services together?  Isn't
 the WS layer just redundant ... I mean you call the RPC layer that
 talks to the server anyway, then that layer makes a services request,
 gets the response, then thru a DTO serialized the response back to the
 GUI.

 Am I missing something here?

 Mort

 --
 You received this message because you are subscribed to the Google Groups
 Google Web Toolkit group.
 To post to this group, send email to google-web-toolkit@googlegroups.com.
 To unsubscribe from this group, send email to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 deansjo...@gmail.com wrote:
 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, AgitoM karel.m...@gmail.com wrote:

  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 here.

  In the meanwhile, if anyone has a good idea on how to do it, feel free
  to post here.

  On Jun 18, 10:45 pm, Stefan Bachert stefanbach...@yahoo.de wrote:

   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 Bacherthttp://gwtworld.de

   On Jun 17, 5:59 am, AgitoM karel.m...@gmail.com wrote:

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 invoke the
Web Service of the other system, and retrieve some data which is then
send back to the client using GWT's normal RPC methods.

I've tried creating such a integration using AXIS2 in Eclipse. This
however does not seem to work well. Therefore I would like to ask if
anyone knows what is the way Google prefers for GWT projects to make
Web Service calls?

I've tried  Googling for solutions for a significant amount of time,
but couldn't find much.
Anyone have any idea?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 karel.m...@gmail.com wrote:
 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 invoke the
 Web Service of the other system, and retrieve some data which is then
 send back to the client using GWT's normal RPC methods.

 I've tried creating such a integration using AXIS2 in Eclipse. This
 however does not seem to work well. Therefore I would like to ask if
 anyone knows what is the way Google prefers for GWT projects to make
 Web Service calls?

 I've tried  Googling for solutions for a significant amount of time,
 but couldn't find much.
 Anyone have any idea?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 here.

In the meanwhile, if anyone has a good idea on how to do it, feel free
to post here.

On Jun 18, 10:45 pm, Stefan Bachert stefanbach...@yahoo.de wrote:
 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 Bacherthttp://gwtworld.de

 On Jun 17, 5:59 am, AgitoM karel.m...@gmail.com wrote:

  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 invoke the
  Web Service of the other system, and retrieve some data which is then
  send back to the client using GWT's normal RPC methods.

  I've tried creating such a integration using AXIS2 in Eclipse. This
  however does not seem to work well. Therefore I would like to ask if
  anyone knows what is the way Google prefers for GWT projects to make
  Web Service calls?

  I've tried  Googling for solutions for a significant amount of time,
  but couldn't find much.
  Anyone have any idea?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



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 invoke the
Web Service of the other system, and retrieve some data which is then
send back to the client using GWT's normal RPC methods.

I've tried creating such a integration using AXIS2 in Eclipse. This
however does not seem to work well. Therefore I would like to ask if
anyone knows what is the way Google prefers for GWT projects to make
Web Service calls?

I've tried  Googling for solutions for a significant amount of time,
but couldn't find much.
Anyone have any idea?

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-tool...@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.