Re: Help is needed (running GWT application)

2010-01-08 Thread Johnathan James
Can you give more detail on what you are doing?

Something like..

1. Created Web Project in Eclipse.
2. Ran the project as Debug in Eclipse.
3. A URL was given to me in Eclipse.
4. I pasted the URL in a browser, and got the error.

It will help figure out whats going wrong..

Johnathan

On Jan 8, 8:53 am, Shadiho shad...@gmail.com wrote:
 Hi,

 I am new to GWT and I just installed GWT SDK and Eclipse plugin, after
 creating a GWT application I can compile and run it, but my problem
 that when I am copying the URL to any browser, I am getting Web Page
 unavailable or Link is broken.

 Please, any one can advise the reason of this issue and how can I
 rectify it.
-- 
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.




JBoss Seam and GWT

2010-01-06 Thread Johnathan James
Hello..

I am looking for a good example of running a seam-gen application, and
adding a GWT view.

If you have one, or have been able to manipulate the
org.jboss.seam.example.remoting.gwt example from the Seam project, I
would appreciate your help.

Johnathan
-- 
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: gwt and seam

2010-01-06 Thread Johnathan James
Yes, it gets compiled, but as a GWT project, not a Seam project.

Does anybody have any references for adding a GWT form with widgets,
and event handling, to a Seam-Gen created project? Would it be too
much to ask for that doc to use JBoss as the app server? Source code?

*crossing fingers*

On Dec 21 2009, 2:19 am, amicool shantanu.kulkarn...@gmail.com
wrote:
 Hi,

 If you are using eclipse then you shud create the web project by
 installing gwt plug in. Then add the pojo as per your requirement.
 After gwt plugin installed at eclipse you will find the GWT compiler
 icon left hand top corner.

 the project will get compiled.

 On Dec 20, 6:52 pm, zizou84 arous.ri...@gmail.com wrote:

  hi
  i would like to start an application withseamand GWT(POJO in my
  business code and GWT instead of JSF in the web part)
  i usedseam2.2.0 and GWT 2.0 and eclipse (with GWT plugin)
  i start by creating theseamapplication and when i would like to see
  if i can compile it to a GWT application i couldn't
  ( MyGwtSeamis not a GWT project)
  i don't know how to start
  what should i do?
-- 
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: JBoss Seam and GWT

2010-01-06 Thread Johnathan James
In case it helps anybody, there is a currently a bug in Seam which
causes the Seam GWT Remoting example not to work.

https://jira.jboss.org/jira/browse/JBSEAM-4506

If you are getting errors like 'Parameter 0 is of an unknown type:
java.lang.String/2004016611', this is likely your issue. At present,
there is no official fix. I added these lines to GWTService.java at
line 419 in my Seam distribution:

String paramClassName = streamReader.readString();

   /* HACK: See https://jira.jboss.org/jira/browse/JBSEAM-4506
*/
if (paramClassName.equals(java.lang.String/2004016611))
paramClassName = java.lang.String;

You must then recompile Seam. Copy the jboss-seam-remoting.jar that
you just built to ./seam-distribution-dir/lib . Otherwise, you'll
still be building the Seam GWT Remoting project with the un-hacked
jar.

On Jan 5, 2:50 pm, Johnathan James haxw...@gmail.com wrote:
 Hello..

 I am looking for a good example of running a seam-gen application, and
 adding a GWT view.

 If you have one, or have been able to manipulate the
 org.jboss.seam.example.remoting.gwt example from the Seam project, I
 would appreciate your help.

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