Re: Gwt RequestBuilder + Servlet issue

2011-09-03 Thread suresh babu
use Window.open(/pdfUrl, _blank, ); in gwt to call the servlet, in servlet write the code for generating pdf. On Fri, Sep 2, 2011 at 8:44 PM, Uemit uemit.se...@gmail.com wrote: So you want to send some data to the servlet and want to display a PDF (which is generated by the servlet based on

Re: HTML5 Offline Web-Application

2011-09-03 Thread -sowdri-
Hi, The above solution was working fine, i even deployed a version and tested it live! But suddenly i've started getting this error: DevMode warning: Clobbering appcache.nocache.manifest to allow debugging. Recompile before deploying your app! And the appcache.nocache.manifest_*user-agent

Re: Blank Page Using Dev Mode On Glassfish

2011-09-03 Thread Thomas Broyer
How about the following? http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#How_do_I_use_my_own_server_in_development_mode_instead_of_GWT'sand http://code.google.com/eclipse/docs/faq.html#gwt_in_eclipse_for_java_ee (if you use WTP to run your project) -- You

Re: Request implementation couldn't be found.

2011-09-03 Thread Nik
Thank you for your help!! I have found what causes the problem. On 2 Sep., 21:07, Thomas Broyer t.bro...@gmail.com wrote: On Friday, September 2, 2011 7:59:31 PM UTC+2, Nik wrote: Caused by: java.lang.RuntimeException: Server Error: null Your server-side code is causing a

DevMode warning: Clobbering appcache.nocache.manifest to allow debugging. Recompile before deploying your app!

2011-09-03 Thread -sowdri-
Hi, Using SimpleAppCacheLinker from GWT trunk for generating HTML5 offline manifest, results in the error DevMode warning: Clobbering appcache.nocache.manifest to allow debugging. Recompile before deploying your app! Any ideas on this?? Thanks -- You received this message because you are

Re: GWT Developer Plugin for Firefox 6

2011-09-03 Thread Muhammad Haikal Satria
Thank you up till now it still works for windows 32... On Aug 24, 7:49 pm, Thomas Broyer t.bro...@gmail.com wrote: I bet it shouldn't be long:http://gwt-code-reviews.appspot.com/1523805/ -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To

hibernate list problem

2011-09-03 Thread amvishnu
am using the hibernate, that will return the list. so i need to return, int or float instead of list? how is it possible to rectify this problem? Thank you in advance Vishnu -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this

Re: Providing html contents directly to servlet

2011-09-03 Thread Vijeta Angeer
Hi Karim, I tried with what you have suggested me. i.e: set response content-type - res.setContentType(text/html) before any output 2) close stream - ServletOutputStream out = getOutputStream(); - out.write(xml.getBytes()); - out.close(); 3) register servlet in web.xml ( servlet class,

Re: DevMode warning: Clobbering appcache.nocache.manifest to allow debugging. Recompile before deploying your app!

2011-09-03 Thread Thomas Broyer
I guess the linker detects the DevMode and adds an entry for hosted.html in the manifest; and because DevMode does not compile the permutations, the manifest is missing the *.cache.html. Running GWT Compiler would fix this. This is actually not much different from the DevMode generating a dummy

Re: GDDBR11

2011-09-03 Thread Inacio
I will be there. On 1 set, 21:45, Alisson Prestes javalis...@gmail.com wrote: Hi, Is anybody from this list coming to Google Developer Day Brazil this year? Alisson Presteswww.google.com/profiles/javalisson -- You received this message because you are subscribed to the Google Groups

Undeployed GWT

2011-09-03 Thread pete
Hello, since I sometimes just play around with client side GWT, creating some pure javascript to display sth. in the browser, I wondered, if it is possible to comile/arrange the project in a way that I don't need a server? Obviously normally just clicking the html file doesn't work, instead I get

Re: GWT 2.3 XSRF Invalid RPC token (Session cookie is not set or empty! Unable to generate XSRF cookie)

2011-09-03 Thread Ali Jalal
Hi, I see this error sometimes (not always), so for solving this problem, I first send a Rpc and fixing JSESSIOID cookie on server-side by setting it to getThreadLocalRequest().getRequestedSessionId(). So I'm sure that JSESSIONID cookie exists. Then calling XSRF to generate XSRF token and it

Re: DevMode warning: Clobbering appcache.nocache.manifest to allow debugging. Recompile before deploying your app!

2011-09-03 Thread -sowdri-
I tried creating a custom run configuration, just for the compiler and tried with both 'GWTCompiler' and 'Compiler' as the main class, but still i'm getting the same warning. And this happened when the application is compiled by GPE for deploying to appengine: ## Compiler output

Re: DevMode warning: Clobbering appcache.nocache.manifest to allow debugging. Recompile before deploying your app!

2011-09-03 Thread -sowdri-
Interestingly, 1. This project is a maven build, running mvn clean install also produces the same error. 2. The same linker has worked for me once. 3. The same linker when used with a fresh project (ant build, defaut GPE sample project) works as expected. Am I missing

SimpleRequestProcessor call findDomain twice

2011-09-03 Thread Andy
Hi, I have an example class public class Employee { public static Employee findEmployee(ObjectId id) { . System.out.println(find); return employee; } .. } When triggering the findEmloyee from the client side

Re: SimpleRequestProcessor call findDomain twice

2011-09-03 Thread Thomas Broyer
As the code says: it tries to determine whether the object still isLive (in order to tell the client that it has been deleted, or possibly updated). If you have a better algorithm to determine liveness, use a Locator and override its isLive method. -- You received this message because you are

Re: Undeployed GWT

2011-09-03 Thread Thomas Broyer
Maybe try the xsiframe linker, it will load *.cache.js files instead of *.cache.html in order to trump the SOP, which is what you're facing (Domains, protocols and ports must match) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view

Re: Java's Write Once, Run Anywhere for Mobile with GWT is Here!

2011-09-03 Thread Michael Allan
gwt.user wrote: Besides that take a closer look at those links of yours and you will see my real name in there I decided to follow your advice and take a closer look. I found one thread of yours particularly informative, as it concerns a feature of an Emitrom product that you were apparently

Re: GWT designer keeps hanging!! going mental

2011-09-03 Thread Elhanan
pressing Ctrl+Break in Host Osgi console (i have a prompt there) didn't do anything for eclipse i have xmx and xms 1024 and the heap indicator is like showing between 200-500 mb. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view

JAXB + GWT

2011-09-03 Thread Kyle Anderson
I have an XML Schema defined in XSD format. Basically, there are a whole lot of objects with attributes associated with them. The attributes have various types (strings, enumerated types, integers). The restrictions on these attributes are all defined in the XSD format. I would like to create

Re: JAXB + GWT

2011-09-03 Thread Deepak Singh
you need to use JAXB on the server side, not on the client side. There you can use reflection. Parse your XML and set to POJOs and get back to client. On Sat, Sep 3, 2011 at 11:51 PM, Kyle Anderson kyleanderso...@gmail.comwrote: I have an XML Schema defined in XSD format. Basically, there are

Re: Blank Page Using Dev Mode On Glassfish

2011-09-03 Thread Nick Apperley
Discovered what the issue was. An incorrect path was pointing to the nocache JavaScript file in the HTML file, hence the blank page. For some reason the GWT plugin will not create a GWT HTML file after clicking on the Finish button in the wizard. Problem exists for both Google Web and Dynamic Web

Good way to strip a string of tags?

2011-09-03 Thread darkflame
Sorry if this is already covereddidnt have much luck searching. I need a way to return a simple plane text version of a string that may or may not contain other formatting. Ideally this would cover formatting from a RichTextBox, HTML tags or something pasted in from Word. Basically anything

Re: GWT designer keeps hanging!! going mental

2011-09-03 Thread Eric Clayberg (Google)
What OS are you using? -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/htgq2FqEiyIJ. To post to this group, send email to

Re: GWT designer keeps hanging!! going mental

2011-09-03 Thread Elhanan
windows 7 64 bit. (btw this happens on an xp machine as well..) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/boAWshOjAS4J. To post to this