Issue with development mode plugin and Custom selection script / hosted.html that allows separate debugging of multiple GWT applications on a single page

2013-10-09 Thread Jamie Cramb
"gwt.codesvr" param to be in the URL even though the $hosted var is passed in on the call to connect? Thanks in advance. Cheers, Jamie -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To unsubscri

Re: Can't find postgres driver from debug mode

2013-04-19 Thread Jamie
s incorrect >> - GWT is including hibernate code that is interfering with my EMF. >> >> Has anyone ever seen anything like this? I really want to use the >> debugger!!! >> Thanks for your time! >> >> -- Jamie >> >> -- You received this message b

Re: Can't find postgres driver from debug mode

2013-04-18 Thread Jamie
rnate provider. On the bad machines, the list is empty. Ugh. I even have the provider listed specifically in the persistence unit. ARGH! On Thursday, 18 April 2013 16:04:35 UTC-4, Jamie wrote: > > This is driving me crazy. > > My (large) project uses Hibernate and Postgres. > On one machin

Can't find postgres driver from debug mode

2013-04-18 Thread Jamie
onsidering: - The classpath is incorrect - GWT is including hibernate code that is interfering with my EMF. Has anyone ever seen anything like this? I really want to use the debugger!!! Thanks for your time! -- Jamie -- You received this message because you are subscribed to the Google Group

Re: Using OAuth2Login Google authenticator with Security constraint

2012-11-15 Thread Jamie
That is something that is not going to happen... the servlet container knows nothing about OpenID or OAuth2Login. Well, at least, any servlet container that I've worked with. Your best bet would probably be to write a Filter that ch

Drag and Drop Tutorial

2012-11-12 Thread Jamie
ml I hope it helps somebody out! Jamie. -- 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/-/pM2qWXpkjHEJ. To post to this group, send

Re: rpc serialization without the rpc

2012-11-02 Thread Jamie
While not answering your question exactly, I have seen posts around on writing your own caching filter for Java, and they seem pretty easy to do. And, it would then be really easy to invalidate your cached items. However, as Jens says, putting all the request parameters into the URL is not a goo

Re: iOS 6 Bug: Safari caches POST requests

2012-11-02 Thread Jamie
You could write the filter to only affect POSTs Or, you could configure the filter mapping to only apply the filter to your Servlet(s). Jamie. On Friday, 2 November 2012 14:23:44 UTC-4, Jeffrey Roe wrote: > > So this will cause all files to be downloaded over and over again. > Is th

Re: GWT nocache filter

2012-03-22 Thread Jamie
I use the same filter, with no problems. However, my web.xml is probably configured a little differently: I remember from where I got that filter, it just applied it to every request. Instead of that, I only apply the filter to URLs that end in nocache.js like so - (note the url-pattern)

Project Creator: GWTRPC Interfaces in 'client'?

2012-03-22 Thread Jamie
ckage. Should I post this on the GWT developer forum? I didn't think this quite fit the description. I imagine it is really the projectCreator, and not necessarily the Eclipse plugin. Thanks, Jamie. -- You received this message because you are subscribed to the Google Groups "Google Web

Re: GWT Chat Widget with Jetty

2012-03-22 Thread Jamie
For use in Jetty, check out Ignite Realtime's smack. http://www.igniterealtime.org/projects/smack/index.jsp Jamie. On Mar 22, 2:23 pm, Joseph Lust wrote: > Use GWT on AppEngine with the XMPP. > > See their example > code<http://code.google.com/appengine/docs/jav

Re: GWT DEveloper Plugin for Chrome

2012-02-15 Thread Jamie
You could try Firefox. It also has a GWT developer plugin. Maybe that will install correctly for you? On Feb 11, 10:06 pm, Ragsh wrote: > Hi All, > I am using GWT for the first time. I created project in Eclipse after > installing the relevant plug-ins. When I Run the application. The > Sample

Re: Menubar Sub-menu Arrows .

2012-02-15 Thread Jamie
Usually, you can inspect the element in Firebug, and locate the CSS file/line/classname that is affecting a given control. You might have to watch what changes when you hover over the control. Usually you can see a name being added and removed from the control's class attribute when it changes styl

Re: Casting from raw JS to GWT class

2012-02-15 Thread Jamie
I don't think you can do that... bringing in a common pre-compiled-js module. That would be pretty cool. If your two sites are not that big, then you could compile them into one app, and then decide which widget(s) to show based on the URL in the onModuleLoad. Or perhaps you could try communicat

Re: googlemaps library

2012-02-15 Thread Jamie
That would be gwt-maps. You can find it in this list. http://code.google.com/p/gwt-google-apis/downloads/list On Feb 14, 6:10 pm, gwt33 wrote: > Hello, > > I want to implement googlemap in my GWT application. > What is the gwt library to use ? > > Thanks -- You received this message because y

Re: Canvas and anti-aliasing

2011-09-09 Thread Jamie
I do not believe you can control this, but rather, it is left up to the browser / OS. I have done some html5 drawings that are anti-aliased, with FF on Windows and Linux. What browser and OS are you using? Also, you can just try adjusting the line width. On Sep 9, 11:54 am, Christopher Piggott

Re: scalable server backend for browser games

2011-09-09 Thread Jamie
I think this may depend on what you intend to do on the server. Database? CPU intensive calculations? Calling out to some other web services? If you use Apache plus Tomcat, then you can set up load balancing. Depending on the system it's running on, it should be able to process a large volume of '

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-27 Thread Jamie
revert to the old version & hope it's just a cache problem which means I'm getting the broken version rather than the fixed version - Chris, what's the version string for the Jan 28th fixed version? thanks Jamie -- You received this message because you are subscribed to the G

Re: chrome - prompting me to install gwt plugin but already installed

2011-01-26 Thread Jamie
I'm seeing the same issue - no gray GWT toolbox, just the "Development mode requires..." yellow box. Was working earlier today. Restart of Chrome doesn't help, I'll try a reboot to see if that clears it. Jamie On Jan 27, 10:02 am, Thomas Broyer wrote: > Seehttp://

Issues creating new web application project

2011-01-18 Thread Jamie
When creating a new web application project I get the following errors in the eclipse problems pane. Any help would be appreciated, I'm using Aptana Studio 2 which is built on Eclipse 3.5. Description ResourcePathLocationType Syntax error, annotations are only available if

HTML5 and canvas

2010-08-11 Thread Jamie
T, or you could transform it to Java if you want. Hope it's of some use. http://jamies-gwt.blogspot.com/2010/08/html5-canvas-editing.html Jamie. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group,

Re: Making GWT look good...

2010-08-11 Thread Jamie
One thing that I have been doing lately is to *not* use the tab panel. It's boring. Instead, I create my own tab bar, which I have full css control of, and then a separate stack of widgets. This lets me turn boring looking tabs into something really nice, much like the tabs you find here: http:/

GWT + canvas + gwt-canvas

2010-06-30 Thread Jamie
I have started playing with the element, GWT, and the cool gwt-canvas project. However, it's really slow when you have to recompile every time. I posted a very short tutorial on experimenting with the canvas element using a command line: http://jamies-gwt.blogspot.com/2010/06/experimenting-with-h

Tutorial on integrating EJB + GWT + JBoss 5.1 using Eclipse

2010-04-08 Thread Jamie
-deployed system, and the Project Facets system. Hopefully it is of some use to someone! http://jamies-gwt.blogspot.com/2010/03/walkthrough-integrating-gwt-with-jboss.html Jamie S. --- Search for analog and digital television broadcast antennas in your area: http

Re: GWT-GAE integration

2010-03-24 Thread Jamie Gennis
than the fact that it doesn't get in the way of sending entity objects over GWT's RPC transports. It should work just fine once you the GWT deRPC / GAE conflict. Jamie On Wed, Mar 24, 2010 at 7:01 AM, laurent wrote: > I'm trying to use GWT 2.0.3 together with GAE (using th

Re: gwt-dispatch, gwt-presenter, mvp4g

2010-03-21 Thread Jamie Gennis
n-extension<http://code.google.com/p/gwt-remote-action-extension/> for a library than enables the use of Gilead with gwt-remote-action as well as a demo app. Best, Jamie On Sun, Mar 21, 2010 at 8:35 AM, zggame wrote: > I second that idea. I start to really understand the gwt-presenter b

Re: How to resubmit RPC after session timeout/login

2010-02-08 Thread Jamie
Can you give me an example on how I'd be able to resubmit an RPC with Ray's command pattern approach? On Feb 6, 5:50 am, Thomas Broyer wrote: > On Feb 5, 10:24 pm, Jamie wrote: > > > > > > > Hi everybody.  I'm trying to extend AsyncCallback to always have

How to resubmit RPC after session timeout/login

2010-02-05 Thread Jamie
Hi everybody. I'm trying to extend AsyncCallback to always have the same behavior onFailure. I can successfully catch the session timeout exception that I'm looking for, open a login dialog, and have the user login. What I want to do after that is done is to resubmit the original RPC call that c

Re: Cancel treeitem selection

2010-01-28 Thread Jamie
Bump. Any ideas? On Jan 26, 12:41 pm, Jamie wrote: > Hi.  I have a GWT tree of folders.  When a folder i do an RPC call to > load a list of files on the right side of the screen.  If the user > were to rapidly change folders it queues up the RPC calls and takes a > very long

Cancel treeitem selection

2010-01-26 Thread Jamie
Hi. I have a GWT tree of folders. When a folder i do an RPC call to load a list of files on the right side of the screen. If the user were to rapidly change folders it queues up the RPC calls and takes a very long time to load whatever the last folder clicked was. I want to prevent a folder cha

Re: request builder

2010-01-07 Thread Jamie
You should then probably install something like TamperData or Firebug for firefox, and see if your request is actually being sent from the browser. Or you could use wireshark, but that's not as easy to read. As well, tamperdata or wireshark will let you see the data in the responses. BTW, if you

Re: Articles / Tutorials

2009-12-21 Thread Jamie
Ooops, just found this link that describes it... http://code.google.com/webtoolkit/articles.html -- 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 fro

Articles / Tutorials

2009-12-21 Thread Jamie
think it's a bit too long for a post. Thanks, Jamie. -- 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

Re: Unittesting a Generator ?

2009-12-17 Thread Jamie Gennis
See here<http://code.google.com/p/google-web-toolkit/source/browse/trunk/dev/core/test/com/google/gwt/dev/javac/impl/> and here<http://code.google.com/p/google-web-toolkit/source/browse/trunk/dev/core/test/com/google/gwt/dev/javac/TypeOracleTestingUtils.java> for some of that code. Jamie

Re: GWT TDD

2009-12-07 Thread Jamie Gennis
GWTMockUtilities.java> to stub out calls to GWT.create(), allowing you to create mocks of most GWT objects. See here <http://blog.danielwellman.com/2009/02/index.html> for a blog post on the subject. Jamie On Mon, Dec 7, 2009 at 10:02 AM, Robert Zaleski wrote: > Hey Guys, >

Re: Has any one written new annotations for GWT Client side ?

2009-12-05 Thread Jamie Gennis
/com/google/gwt/user/rebind/rpc/ServiceInterfaceProxyGenerator.java>) as well as many other GWT features (localization, UI binder, client bundles). You can also define a class that gets invoked at the GWT compiler's link phase, but I don't think you'd need to do this just for JSON marshaling. Jamie On Sat

Re: DefaultStyles of Button

2009-12-04 Thread Jamie Gennis
t using the GWT Subversion trunk code). Jamie On Fri, Dec 4, 2009 at 11:10 AM, abhiram wrote: > Can someone tell me where can i get the default CSS which is being > used for the button. I mean, i want the actual CSS of ".gwt-Button" > > Regards, > Abhiram > > --

Re: Has any one written new annotations for GWT Client side ?

2009-12-04 Thread Jamie Gennis
d is how all of GWT's built-in RPC functionality works. You may be able to leverage some or all of the work in that project to accomplish what you're trying to do. Jamie On Thu, Dec 3, 2009 at 7:21 PM, keyboard_samurai wrote: > Hi, > > I am a newbie to GWT. Need to know if

Re: Some gwt.xml elements, unneeded in GWT 2.0?

2009-11-27 Thread Jamie Gennis
on ie6 to be included with your compiled files just by having your module the standard theme. Jamie On Fri, Nov 27, 2009 at 6:17 PM, fker...@gmail.com wrote: > Are the and elements in the gwt.xml file still > needed with GWT 2.0? If I understand it correctly, servlet definitions > go

Re: Making command pattern RPC look like traditional GWT RPC

2009-11-25 Thread Jamie Gennis
s to use. Maybe they belong in a new GWT testing jar. I could also factor these out of gwt-remote-action and maintain a 3rd party lib in lock-step with GWT versions. Or maybe nobody other than me wants this functionality and it's not worth spending any time on. Anyone have any thoughts on this

Making command pattern RPC look like traditional GWT RPC

2009-11-23 Thread Jamie Gennis
ally followed what I was trying to explain then I'm even more impressed. I'd love to hear what more GWT-knowledgeable folk than me think about this implementation. I think being able to add command pattern capabilities to existing GWT RPC services is pretty cool, but if it can't be impl

Re: Help: Adding Login to an existing app.

2009-10-14 Thread Jamie
Oops, when I say login filter, I mean a class that implements javax.servlet.Filter configured in your web.xml, applied to incoming requests to your RPC servlet. --- Search for analog and digital television broadcast antennas in your area: http://www.antennamap.com/ --~--~-

Re: Help: Adding Login to an existing app.

2009-10-14 Thread Jamie
if it matches, they're in. The IP address qualifier can be problematic; it can be faked out by SBCs, NATs, and ip spoofing. As well, it sucks for mobile devices that have changing IP addresses. Well I hope that is of some sort of help... Jamie. --- Search for anal

Re: Repeating http requests

2009-08-31 Thread Jamie
previous callbacks to be freed? Jamie. --- Search for analog and digital television broadcast antennas in your area: http://www.antennamap.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

Re: Integrate GWT + Servlet in Eclipse

2009-08-31 Thread Jamie
Perhaps you could give a bit more detail about your problems. Eclipse is capable of debugging mulitple interacting projects at the same time. I suspect that you might be having trouble trying to run your GWT project in 'hosted' mode, while trying to access the other project's server. If that is

Re: Setting bg color of a panel?

2009-06-18 Thread Jamie
where, and click on one to find it in the DOM. Next, the HorizontalPanel, by default, is only as wide as it needs to be. You can try calling hp.setWidth("100%"). The HorizontalPanel also has an alignment parameter, so you can align left, right, or center. Jamie. --- S

Re: Using Filters

2009-06-11 Thread Jamie
s not already have one. This is to support 'log in for two weeks' feature of many popular email sites for example. Well there you go, more detail than you ever needed to know... Jamie. --- Search for analog and di

Re: LoginSecurityFAQ and sessionID/tokens

2009-06-10 Thread Jamie
n tie the sessionID to an IP address. This is far from un-spoof-able, but better than nothing, I suppose. The IP address can also be unreliable when going through a NAT appliance. Jamie. --- Search for analog and digital television broadcast antennas in your area:

Re: Server initialization

2009-06-10 Thread Jamie
You might try using the servlet configuration 'load-on-startup' setting in your web.xml servlet definition. You could also define your own base class and derive your servlets from that so you at least have the code in one place... Jamie. --- Search for analog a

Re: Simple Eclipse/Java/GWT question

2009-06-08 Thread Jamie
You need to make sure that you define a module xml for each source folder you want to make use of, or add a 'source' element within your module for each client source folder. I am not sure about the 'expected package' problem... are you still importing org.js

Re: Simple Eclipse/Java/GWT question

2009-06-08 Thread Jamie
eing a lot of work, and the GWT team have already done it for you! Jamie. --- Search for analog and digital television broadcast antennas in your area: http://www.antennamap.com/ --~--~-~--~~~---~--~~ You received this message because you are sub

Re: Multiple modules but deploy common code to common place

2009-06-04 Thread Jamie
of all of your modules into the same folder. The generated filenames will not clash, and being in the same deployed folder will make use of the same image&css files. Jamie. --- Search for analog and digital television broadcast antennas in your area: http://www.

Re: Add javascript to html

2009-06-03 Thread Jamie
I think you are talking about this: http://code.google.com/webtoolkit/doc/1.6/DevGuideOrganizingProjects.html#DevGuideAutomaticResourceInclusion Or are you talking about adding some javascript to a GWT HTML( ) object? Jamie --- Search for analog and digital television

Re: Multiple Entry Points in the same module

2009-05-28 Thread Jamie
ntrypoints will always be run in a serial fashion. Jamie. --- Search for analog and digital television broadcast antennas in your area: http://www.antennamap.com/ --~--~-~--~~~---~--~~ You received this message because you are subscribed to th

Re: Role-based validation for RPC calls on a separate server

2009-05-28 Thread Jamie
ed to deserialize or analyze the RPC call, to determine what authorization is required. Jamie. --- Search for analog and digital television broadcast antennas in your area: http://www.antennamap.com/ --~--~-~--~~~---~--~~ You received this message be

Re: Geting a stack trace?

2009-05-25 Thread Jamie
You will probably need to make use of JSNI. Check out hit #1 on googling for "javascript stack trace", http://www.google.ca/search?hl=en&q=javascript+stack+trace&btnG=Google+Search&meta=&aq=f&oq= http://eriwen.com/javascript/js-stack-trace/ Jamie -

Re: ColumnTree

2009-05-25 Thread Jamie
adding treeitems to other treeitems), but it worked for my needs at the time, and it looked pretty good too. I did not require collapsable treeitems either, but that could be accomplished using a listener. Jamie. --- Search for analog and digital television broadcasts in your

Re: Navigate between a list and details screen

2009-05-22 Thread Jamie
Oops, I was cutting and pasting from the GWT Reference docs... That should say: onClick(ClickEvent event) { Hyperlink sender = (Hyperlink) event.getSource(); Jamie --- Find television broadcast antennas in your area (US & Canada): http://www.antennamap

Re: Navigate between a list and details screen

2009-05-22 Thread Jamie
mId into a hyperlink history token. You would have to keep track of it elsewhere, for example a List object that is maintained in parallel with the FlexTable. Jamie --- Find television broadcast antennas in your area (US & Canada): http://www.an

Re: Best approach for saving and displaying images

2009-05-22 Thread Jamie
ourse, you could probably code up the 'unmodified' response yourself, but as I understand it, web containers are usually very good at serving resources. Jamie. --- Find television broadcast antennas in your area (US & Canada): h

Re: Tomcat and GWT 1.6

2009-05-22 Thread Jamie
I would suggest using Firefox + TamperData. Then you should be able to see what URL the browser is trying to access when you use the relative URL, or if in fact it is sending the request at all. Jamie. --~--~-~--~~~---~--~~ You received this message because you

Re: Images for Push Buttons

2009-05-22 Thread Jamie
Have you tried the 'PushButton' class? http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/user/client/ui/PushButton.html The constructor takes a single image, or a pair of images for up/down. Jamie. On May 22, 9:46 am, abhiram wuntakal wrote: > Hi Donald,

Re: Gilead GWT not getting configured

2009-05-11 Thread Jamie
Oh yeah, one other thing, have you tried running in the debugger, and breaking in your service method? The GWT RPC mechanism will catch everything, so that may be hiding what is really going wrong. On May 11, 1:00 pm, Jamie wrote: > Do your pojos / schemas contain any relations? > As in

Re: Calling GWT RPC method from external JavaScript???

2009-05-11 Thread Jamie
Please refer to the GWT documentation, "Coding Basics", and look for a section called "Invoking Java methods from JavaScript". http://code.google.com/webtoolkit/doc/1.6/DevGuideCodingBasics.html#DevGuideJavaScriptNativeInterface On May 11, 5:53 am, Eric Chow wrote: > Hello, > > How can I call

Re: Gilead GWT not getting configured

2009-05-11 Thread Jamie
ibernate to fetch it immediately I guess. Jamie. --~--~-~--~~~---~--~~ 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

Re: How to use the new WAR file to deploy a simple web application.

2009-05-01 Thread Jamie
anual/CoreTasks/war.html Jamie. --~--~-~--~~~---~--~~ 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

Re: GWT (Multiple Pages Implementation)

2009-05-01 Thread Jamie
merge the output into (eg.,) the same deployment folder. The generated source files (with big long random? filenames) *should* not clash. I have never seen them clash, anyway. BTW, It is entirely possible that I am mistaken here; I seem to recall that 1.6 has some new lazy loading features. Jami

Re: with gwt-maps , How to manually set Marker draging state

2009-04-30 Thread Jamie
Do you really need to set the marker into floating mode? You could just set the marker's *image* to one that looks like it is floating, with a crosshair on it... and then change the image back to normal when you are ready. On Apr 29, 10:04 pm, Tail wrote: > Thanks Eric, > > that can be let ma

Re: GWT (Multiple Pages Implementation)

2009-04-30 Thread Jamie
howing non-GWT pages). Some of my pages did need to communicate. For that I wrote some GWT native javascript wrappers that could interact with the outer controller page. Jamie. On Apr 29, 4:25 pm, Vince wrote: > Hello, > > I just started out with GWT and currently building a proto

Re: How to use the new WAR file to deploy a simple web application.

2009-04-30 Thread Jamie
a web container feature, not a GWT specific feature.) Jamie. --~--~-~--~~~---~--~~ 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

Re: GWT Compile Project problem in Eclipse

2009-04-30 Thread Jamie
lipse, you should be able to point your browser to http://localhost:8080/ and see the tomcat page, and then if your project is named 'blap', you can browse to http://localhost:8080/blap and see your project. Jamie. --~--~-~--~~~---~--~~ You received this mes

Eclipse EE Servers

2009-04-17 Thread Jamie
ot quite as good as hosted mode, but almost. I still have a small problem where I have to refresh the 'war' folder after clicking the GWT Compile button, but I've gotten used to it! Thanks to the GWT developers!!! Jamie. --~--~-~--~~~---~--~~ You rece

Re: SVG in GWT

2008-10-29 Thread Jamie
, it broke SVG support. If you search this forum, you can find out more on that subject. GWT Canvas has better cross-browser support anyway. Jamie. On Oct 29, 9:36 am, Danish <[EMAIL PROTECTED]> wrote: > Hi, > I am new to GWT and want to use SVG in GWT. Is there any sample > examp

Re: RPC problem

2008-10-15 Thread Jamie
> Please teach me your solution. My solution is to open up www.google.com and type in IncompatibleRemoteServiceException. The first hit lists a pretty good list of possible causes. This could be caused by the client and server not running the same codebase, as in, one or the other has not been c

Re: IE8

2008-09-30 Thread Jamie
My condolences on getting blocker bugs against a beta product... A brief use of IE8 seems to show that it has problems on virtually any website, until you swtich it to compatibility mode. On Sep 30, 1:00 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I've searched around this group, the bu

Re: RPC Across Modules

2008-09-30 Thread Jamie
In your module.gwt.xml, you need to add the rpc folder as a source. client is automatically added for you. < module > < source path="client" /> < source path="rpc" /> < /module > When building your war, or jar, or installing, you will need to compile the RPC stuff and included the classes.

Re: GWT Help

2008-09-30 Thread Jamie
I would recommend you start by reading the GWT developer's guides. http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5&s=google-web-toolkit-doc-1-5&t=DevGuideServerCalls In particular, you will need to understand how to make calls from your web page client to a backend server. The bac