GWT 1.5 on Java 1.4

2008-10-14 Thread CFS
Hi, Is it possible to run the server side part of an GWT 1.5 application in a Java 1.4 compliant container? (In particular it's a SAP WAS). If it's not possible to do it easily, is it possible to do it at all with some (reasonable) work? Thanks. --~--~-~--~~~---~--~

how to call RPC from an HTMLPanel's content anchor

2008-10-14 Thread Tanzeem
Hi Can anyone help me with a sample code for the following i have a HTMLPanel with its contents as HTML including a javascript function onClick() from which i expect to call an RPC. Is this possible? If ny solutions please help me. --~--~-~--~~~---~--~~ You recei

Re: passing parameters to gwt application

2008-10-14 Thread rudolf michael
you just have to parse the http URL in your address bar. in your onModuleLoad method just call the following method public static native String getHref() /*-{ return $wnd.location.href; }-*/; public void onModuleLoad(){ String url = getHref(); // you just have to parse the

Re: GWT + iText + Eclipse Problem

2008-10-14 Thread Paul Robinson
Yes. Do it in the server. prof3ta wrote: > So, any hint on how to generate a pdf file withi gwt? > > On Oct 14, 10:32 am, Paul Robinson <[EMAIL PROTECTED]> wrote: > >> GWT compiles java into javascript client-side. That means you can't use >> any old java library in the client, only translatab

passing parameters to gwt application

2008-10-14 Thread Tanzeem
hi i have a non-gwt applicaton's html page from which i have to pass parameters trhough a href definition like < a href=http://localhost: 7070/MyGWTApp?key=value to a gwt application.How do i make changes in the GWT application to enable parameter recieving? Any help please. --~--~-~--~--

Re: GWT + iText + Eclipse Problem

2008-10-14 Thread prof3ta
So, any hint on how to generate a pdf file withi gwt? On Oct 14, 10:32 am, Paul Robinson <[EMAIL PROTECTED]> wrote: > GWT compiles java into javascript client-side. That means you can't use > any old java library in the client, only translatable java. > > prof3ta wrote: > > Pardon me, Dean. What

Re: GWT + iText + Eclipse Problem

2008-10-14 Thread Paul Robinson
GWT compiles java into javascript client-side. That means you can't use any old java library in the client, only translatable java. prof3ta wrote: > Pardon me, Dean. What do you mean with "server-side library"??? > That's java code, there should be no distinction between server and > client. > I

Re: GWT + iText + Eclipse Problem

2008-10-14 Thread prof3ta
Pardon me, Dean. What do you mean with "server-side library"??? That's java code, there should be no distinction between server and client. I tried to add the sources for the package and add them to the classpath, but no luck. --~--~-~--~~~---~--~~ You received this

Re: Enter the Container

2008-10-14 Thread archimechanical
Ok, main concept is that there is real need to CREATE widgets not only by combining existed widgets. Example 1: I need create widgets from the hand created DOM Element complex (Diego case described here http://groups.google.com/group/Google-Web-Toolkit/browse_thread/thread/78c45552015ea220) or

Re: run gwt project with eclipse

2008-10-14 Thread [EMAIL PROTECTED]
hello Dean, thank you for your response.In fact i didn't have MyApplication.launch and i genereted it with the flag -eclipse when i entered applicationCreator and so i have the good result.i won't mind comming back for another questions. see you Arnaud Dean S. Jones a écrit : > I'm going to as

Re: Problem with tomcat

2008-10-14 Thread Ponthiaux Eric
gwt-user.jar include a default servlet specification implementation , which could conflict with the server implementation . use gwt-servlet instead , which is provided to solve the problem . Sorry for my english ... regards . jamer a écrit : > Hi group > I have a problem with apache tomcat.

Re: Problem with tomcat

2008-10-14 Thread jamer
Ok, thank you But if i use the javax library?? Pd:My english so it is horrible Javier --~--~-~--~~~---~--~~ 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-Toolk

Re: Possible bug with GWT or Java, but dont have the expirence to be sure myself :x

2008-10-14 Thread Paul Robinson
The screenshot you posted yesterday showed a java -version from the command line with a runtime environment version 1.6.0_07-b06 and a hotspot version 10.0-b23. As it says here: http://java.sun.com/javase/6/webnotes/ReleaseNotes.html "Included in JDK 6u7 is version 10.0 of the Java HotSpot Virtu

Re: Your opinion sought: Jetty or Tomcat?

2008-10-14 Thread Fred Janon
I use Tomcat for all our customer deployments and as a server to host the development. If Tomcat is used as the server for development, there are probably less chances that something would not work when deployed. I am not sure of how popular is Jetty for real deployments compared to Tomcat, but I h

Re: Deferred binding result type gone after refresh in hosted mode

2008-10-14 Thread Ivo
I'm bumping this discussion, in the hopes that someone who has a clue about the problem sees it. Best regards, -- Ivo --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group,

Problem with tomcat

2008-10-14 Thread jamer
Hi group I have a problem with apache tomcat. The log says that the problem is the gwt-user.jar, this is the message: 06-oct-2008 10:52:08 org.apache.catalina.startup.HostConfig checkResources INFO: Repliegue (undeploy) de la aplicaci�n web que tiene como trayectoria de contexto /Meztuls4 06-oct-

Re: Using Selenium for GWT tests.

2008-10-14 Thread siva
Thanks for the information and references to your blogs, Dan. Really helps. If somebody is looking for a way to set ids to GWT widgets UIObject.ensureDebugId(Element, String) is supported starting GWT 1.5 which greatly helps in integration with Selenium using object identifiers. The best part is

Re: Your opinion sought: Jetty or Tomcat?

2008-10-14 Thread Jason Morris
I personally use Tomcat a lot more, mainly because it started as the reference implementation (though I know it no longer technically holds that position). The few times I've wanted to use Jetty I've had to switch back to Tomcat due to lack of system admin knowledge (ie: the various admins I

<    1   2