Re: CellTable odd/even row styles

2011-03-16 Thread Thomas Broyer
The obfuscated names of the CSS classes are based on the return type of the 
ClientBundle method and the method name in the CssResource.
Here, because your SystemStatusResources uses CellTable.Style, it will use 
the same CSS class names as the default resources' style. This means that if 
you use CellTable with the default resources elsewhere in your app, you'll 
have a "conflict".
Declare an interface extending CellTable.Style and 
make SystemStatusResources return that type (return type covariance FTW), 
and now you'll have CSS class names specific to SystemStatusResources.
See http://code.google.com/p/google-web-toolkit/issues/detail?id=6144

-- 
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: Programmatic manipulation of the style elements

2011-03-16 Thread Thomas Broyer

   
   - use different "style names" (using addStyleName/removeStyleName on a 
   widget) with different "top" values
   - or make the parent an AbsolutePanel
   - or use Element#getStyle().setTop(...), if you don't have a Widget but 
   an Element

What's the problem?

-- 
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: GWT module not loading

2011-03-16 Thread Chris
> I am using Eclipse 3.4 with GWT2.2.0.
>
> Loading inherited module 'com.google.gwt.user.User'
>          Loading inherited module 'com.google.gwt.i18n.I18N'
>             [ERROR] Element 'property-provider' beginning on line 75
> contains unexpected attribute 'generator'
>             [ERROR] Failure while parsing XML
> com.google.gwt.core.ext.UnableToCompleteException: (see previous log
> entries)

I had the same problem when I upgraded to 2.2 - I resolved it by
correcting the .classpath file in eclipse. There was still an entry
for the 2.1 sdk hanging around (above the 2.2 entry). I removed those
two entries (gwt-dev and gwt-user) and the problem resolved itself...


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



Programmatic manipulation of the style elements

2011-03-16 Thread Simon M
I need to position "absolutely" my div object depending of one field of my 
domain object. 

I mean:

if the field of my object is 2, then top should be 25% ( = 0.5 / 2)

if the field is 3, then top should be 16.6% ( = 0.5 / 3)

etc.

Programmatic update of styles is not allowed right now as specified here:
http://code.google.com/webtoolkit/doc/latest/DevGuideClientBundle.html#Runtime_substitution

Does someone have a workaround for that issue ?

-- 
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: Status of IE9 support in GWT

2011-03-16 Thread David Chandler
We've started the release process for milestone 1, which has some but not
all of IE9 support. From this point, it usually takes 3-6 weeks to get
through the milestones, RCs, etc.

/dmc

On Wed, Mar 16, 2011 at 4:37 PM, Deepak Singh wrote:

> Hi David,
>
> What is the tentative date for 2.3 to be released ?
>
> Thanks
>
> On Thu, Mar 17, 2011 at 12:14 AM, David Chandler 
> wrote:
>
>> In keeping with the GWT philosophy of making it possible to write
>> no-compromise AJAX in any modern browser, GWT 2.3 (in progress) will support
>> IE9. We're adding a new user.agent property "ie9" and the notion of fallback
>> properties, so any browser-specific bindings not yet implemented in ie9 will
>> fall back to ie8 and show a compile-time warning that a fallback impl was
>> used.
>>
>> In the mean time, you can tell IE9 to behave as IE8 by inserting the
>> following in the head section of your GWT host page:
>> 
>>
>> Assuming that IE continues to maintain backward compatibility, you may
>> want to insert the equivalent tag for IE9 once GWT 2.3 ships in order to
>> make your app somewhat future-proof for future IE versions. For more
>> information on document compatibility in Internet Explorer, see
>> http://msdn.microsoft.com/en-us/library/cc288325(VS.85).aspx
>>
>> The IE9 dev mode issue reported back in Dec is fixed in GWT 2.2.0:
>> http://googlewebtoolkit.blogspot.com/2010/12/support-for-gwt-dev-mode-in-ie-9.html
>>
>> You can follow the status of known IE9 issues here:
>> http://code.google.com/p/google-web-toolkit/issues/detail?id=5125
>> http://code.google.com/p/google-web-toolkit/issues/detail?id=6134
>> http://code.google.com/p/google-web-toolkit/issues/detail?id=6135
>> http://code.google.com/p/google-web-toolkit/issues/detail?id=6136
>>
>> --
>> David Chandler
>> Developer Programs Engineer, Google Web Toolkit
>> w: http://code.google.com/
>> b: http://googlewebtoolkit.blogspot.com/
>> t: @googledevtools
>>
>> --
>> 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.
>>
>
>  --
> 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.
>



-- 
David Chandler
Developer Programs Engineer, Google Web Toolkit
w: http://code.google.com/
b: http://googlewebtoolkit.blogspot.com/
t: @googledevtools

-- 
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: GWT app only displays a blank page when run in ie9

2011-03-16 Thread Jim Douglas
http://code.google.com/p/google-web-toolkit/issues/list?can=2&q=IE9&colspec=ID+Type+Status+Owner+Milestone+Summary+Stars&cells=tiles

http://code.google.com/p/google-web-toolkit/issues/detail?id=5125

On Mar 16, 11:03 am, TBirch  wrote:
> I downloaded ie 9 today to my windows vista pc. All applications that
> I have that run fine under ie8, firefox, chrome, etc. only show a
> blank page in ie9. I've searched but do not see any posts noting
> problems running in ie9.
> Thanks

-- 
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: Development Mode quit unexpectedly while using libjava.jnilib plugin

2011-03-16 Thread Jeff Larsen
You're right, it is the JDK. 

I believe the current workaround is to use openjdk. 

-- 
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: CellTable odd/even row styles

2011-03-16 Thread Jeff Larsen
Have you tried looking at the styles with firebug? Are they there and being 
overwritten or are they not appearing at all?

-- 
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: Development Mode quit unexpectedly while using libjava.jnilib plugin

2011-03-16 Thread Nikita Kuznetsov
Problem not resolved. Does anyone have this experience?

On Wed, Mar 16, 2011 at 12:21 PM, Nikita Kuznetsov wrote:

> The problem seems to have resolved itself more or less. I'm not sure
> exactly what I did but the only thing I recall changing was including
> gwt-servlet.jar into my class path.
>
>
> On Wed, Mar 16, 2011 at 11:35 AM, Nick  wrote:
>
>> Just got a brand new mac book pro for work.
>> Installed the latest JDK (1.6.0_24), App Engine SDK(1.4.2), and
>> GWT(2.2.0)
>> Using intellij, created a new project and configured everything the
>> same way I've been doing for the last 6 months with no problems. Tried
>> to debug my GWT application and it crashed. Restarted my computer
>> thinking all the new SDKs might be worth a restart. It worked once and
>> then started crashing again. I think the new JDK is what broke this
>> cause I have an almost identical set up at home but I'm using and
>> older JDK. Please help me resolve this. Thanks.
>>
>> Here's the crash report:
>>
>> Process: java [1490]
>> Path:/usr/bin/java
>> Identifier:  com.apple.javajdk16.cmd
>> Version: 1.0 (1.0)
>> Code Type:   X86-64 (Native)
>> Parent Process:  idea [134]
>>
>> PlugIn Path:   /Library/Java/JavaVirtualMachines/1.6.0_24-
>> b07-334.jdk/Contents/Libraries/libjava.jnilib
>> PlugIn Identifier: libjava.jnilib
>> PlugIn Version:??? (???)
>>
>> Date/Time:   2011-03-16 11:27:35.998 -0700
>> OS Version:  Mac OS X 10.6.6 (10J3210)
>> Report Version:  6
>>
>> Interval Since Last Report:  2842 sec
>> Crashes Since Last Report:   5
>> Per-App Interval Since Last Report:  77 sec
>> Per-App Crashes Since Last Report:   5
>> Anonymous UUID:  A613E182-BC76-41FB-8C9F-
>> BC4DFC63271D
>>
>> Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
>> Exception Codes: KERN_INVALID_ADDRESS at 0x
>> Crashed Thread:  28  Dispatch queue: com.apple.root.low-priority
>>
>> ...
>>
>> Model: MacBookPro8,2, BootROM MBP81.0047.B04, 4 processors, Intel Core
>> i7, 2.2 GHz, 4 GB, SMC 1.69f1
>> Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB
>> Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In,
>> 384 MB
>> Memory Module: global_name
>> AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6),
>> Broadcom BCM43xx 1.0 5.100.198.10.1)
>> Bluetooth: Version 2.4.3f1, 2 service, 19 devices, 1 incoming serial
>> ports
>> Network Service: AirPort, AirPort, en1
>> Serial ATA Device: TOSHIBA MK7559GSXF, 698.64 GB
>> Serial ATA Device: MATSHITADVD-R   UJ-898
>> USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.),
>> 0x8509, 0xfa20 / 3
>> USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa10 / 2
>> USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.),
>> 0x0245, 0xfa12 / 5
>> USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500,
>> 0xfa11 / 4
>> USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.),
>> 0x821a, 0xfa113000 / 6
>> USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd10 / 2
>> USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd11 / 3
>>
>
>

-- 
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: CellTable odd/even row styles

2011-03-16 Thread Yaakov Chaikin
Ok, I did that and it's still showing the default styles.

To be clear, here is what I did:

SystemStatusResources.java
-
// import statements
...

public interface SystemStatusResources extends CellTable.Resources
{
   @Source ({CellTable.Style.DEFAULT_CSS, "systemStatus.css"})
   CellTable.Style getStyle();
}
-

The 'systemStatus.css' file sits in the same package as the
SystemStatusResources.java and looks like this:
-
.cellTableEvenRow {
   background: #ff;
}

.cellTableOddRow {
   background: #ff;
}

.cellTableOddRowCell {
   border: selectionBorderWidth solid #ff;
}

.cellTableEvenRowCell {
border: selectionBorderWidth solid #ff;
}
-

Inside the SystemStatusListView.java:
-
...
...
CellTable.Resources resources = GWT.create(SystemStatusResources.class);
CellTable> dataTable = new CellTable>(0, resources);
...
-

The end result is that the same default color shows up for the odd rows.

Any ideas what I am doing wrong?

Thanks,
Yaakov.


On Wed, Mar 16, 2011 at 1:24 PM, Jeff Larsen  wrote:
> You'll notice in CellTable there are some inner classes. One of those
> classes is Style and the other is Resources.
> Style is the class that has the styles which are used, Resources maps that
> class to its css value.
> Inside Style you'll notice two methods called cellTableEvenRow and
> cellTableOddRow. Those are the two classes you're going to care about.
> If you want completely different styles, you can implement your own style
> sheet (just copy the Style.css from com.google.gwt.cellview.client package
> and change the values inside the classes). Or if you just want to override
> the alternating views you can do something like.
>
> public interface MyResources extends CellTable.Resources{
>     @Source({CellTable.Style.DEFAULT_CSS, "MyCssFile.css"})
>     CellTable.Style getStyle();
> }
>
> and in MyCssFile.css just implement .cellTableEvenRow and cellTableOddRow.
> Then make sure to pass in MyResources into the constructor of the CellTable
> and you should have the styles you're looking for.
>
> --
> 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.
>

-- 
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: Status of IE9 support in GWT

2011-03-16 Thread Deepak Singh
Hi David,

What is the tentative date for 2.3 to be released ?

Thanks

On Thu, Mar 17, 2011 at 12:14 AM, David Chandler wrote:

> In keeping with the GWT philosophy of making it possible to write
> no-compromise AJAX in any modern browser, GWT 2.3 (in progress) will support
> IE9. We're adding a new user.agent property "ie9" and the notion of fallback
> properties, so any browser-specific bindings not yet implemented in ie9 will
> fall back to ie8 and show a compile-time warning that a fallback impl was
> used.
>
> In the mean time, you can tell IE9 to behave as IE8 by inserting the
> following in the head section of your GWT host page:
> 
>
> Assuming that IE continues to maintain backward compatibility, you may want
> to insert the equivalent tag for IE9 once GWT 2.3 ships in order to make
> your app somewhat future-proof for future IE versions. For more
> information on document compatibility in Internet Explorer, see
> http://msdn.microsoft.com/en-us/library/cc288325(VS.85).aspx
>
> The IE9 dev mode issue reported back in Dec is fixed in GWT 2.2.0:
> http://googlewebtoolkit.blogspot.com/2010/12/support-for-gwt-dev-mode-in-ie-9.html
>
> You can follow the status of known IE9 issues here:
> http://code.google.com/p/google-web-toolkit/issues/detail?id=5125
> http://code.google.com/p/google-web-toolkit/issues/detail?id=6134
> http://code.google.com/p/google-web-toolkit/issues/detail?id=6135
> http://code.google.com/p/google-web-toolkit/issues/detail?id=6136
>
> --
> David Chandler
> Developer Programs Engineer, Google Web Toolkit
> w: http://code.google.com/
> b: http://googlewebtoolkit.blogspot.com/
> t: @googledevtools
>
> --
> 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.
>

-- 
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: How to compile selectively or avoid compilation of inheriting/implementing classes?

2011-03-16 Thread Chris Conroy
GWT speculatively parses anything you put on the source path. If you don't
want something to be included in your module, you need to explicitly say so
in your .gwt.xml.

On Wed, Mar 16, 2011 at 3:35 PM, KD  wrote:

> Ok let me rephrase this.
> Say, there is an abstract class com.model.AbstractMessage and one of
> its implementation are in same package called
> com.model.ConcreteMessage.
>
> Now another class in another package also implements the
> com.model.AbstractMessage, lets call it com.api.ChangeMessage
>
> Now when I compile the GWT module "com.model" why does it need to go
> look at all implementations of the abstract class
> com.model.AbstractModel in other packages? com.model is THE BASE
> package, everything else extends it. What if I just want to make that
> a GWT module and nothing else.
>
> Is there is the way to stop it?
>
> -KD
>
>
> On Mar 16, 1:17 am, "A. Stevko"  wrote:
> > It does not seem likely that the GWT compiler is bringing in any classes
> > that are not in the source paths.
> > I suggest looking at the imports within those directories to see which
> are
> > referencing thoughworks etc.
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > On Tue, Mar 15, 2011 at 11:21 AM, KD  wrote:
> > > Here is my situation.
> >
> > > On the top level of my API is...
> >
> > > com.mycompany.core.MODEL
> >
> > > I have made this a GWT module, has a blank entry point and has
> > > MyModel.xml. Its structure is as below...
> >
> > > 
> > >  
> > >  
> > >  
> > >  
> > >  
> > >  
> > >  
> > >  
> > > 
> >
> > > Now there are implementations of this model to make a default out of
> > > the box framework and those reside in the following packages
> >
> > > com.mycompany.core.API
> > > com.mycompany.core.KERNAL
> >
> > > i.e. Abstract and concrete classes in these 2 packages above implement
> > > interfaces from the MODEL package
> > > e.g
> > > AbstractMessageListner (in core.API) implements MessageListener (in
> > > core.MODEL)
> >
> > > Now there is another GWT module...
> >
> > > com.mycompany.DASHBOARD
> >
> > > which inherits the MODEL
> >
> > > When I compile all in eclipse or do a 'mvn clean install', there are
> > > no errors. There are Maven dependencies in Dashboard for MODEL source
> >
> > > When I launch dashboard module from eclipse using my custom .launch
> > > file, I get a lot of "No source code..." found errors pointing to
> > > classes in API and KERNAL and also things like
> >
> > > - No source code is available for type java.io.ByteArrayOutputStream;
> > > did you forget to inherit a required module?
> > > - The method close() is undefined for the type OutputStream
> > > - No...for type com.thoughtworks.xstream.io.StreamException; did
> > > you...
> > > - No...for type java.io.Writer; did you...
> >
> > > So my question is:
> > > How can I avoid API and KERNEL being pulled in while compiling. My
> > > argument is MODEL does not depend on anything, rather everything
> > > depends on MODEL. Is there a way I can tell GWT compiler (preferably
> > > selectively) not to worry about classes that DEPEND ON core.MODEL with
> > > the exception of DASHBOARD of course.
> >
> > > My end goal is that, I would like to use MODEL in DASHBOARD on client
> > > side and avoid writing new DTO interfacing between widgets and
> > > backend.
> >
> > > Any ideas or help here would be super in taking me over this roadblock.
> >
> > > --
> > > 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.
> >
> > --
> > -- A. Stevko
> > ===
> > "If everything seems under control, you're just not going fast enough."
> M.
> > Andretti
>
> --
> 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.
>
>

-- 
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: Is there a way to workaround GWT compiler/serializer/linker issue?

2011-03-16 Thread Andreas Horst
Do you use that abstract base class as a RPC parameter? If so, *of
course*GWT has to look for and try to compile all sub classes and
implementations
*since* they might get used in a RPC and hence need to be serializable and
compilable.

To avoid this you can either:
- refactor your RPC to use only the concrete types

*or* if you rely on using abstract classes or interfaces in RPC:
- you might want to configure your sub classes' packages to be part of a
module's client packages, so that the GWT compiler finds them (your "No
source found..." error indicates that this is not the case).

I personnaly think your problem is not the behaviour of the GWT compiler but
your project setup regarding separation into modules. Hope this can help
you.

2011/3/16 KD 

> Lets say I have package : com.mycom.model
>
> It has following classes
>
> com.mycom.model.PlatformMessage (an interface)
>
> com.mycom.model.AbstractMessage (an abstract class that implements
> PlatformMessage)
>
> com.mycom.model.QueryMessage (a concrete implementation of
> AbstractMessage)
>
> Now there is another package: com.mycom.app
>
> It has the following class...
>
> com.mycom.app.StreamMessage (a concrete implementation of
> AbstractMessage)
>
> ONLY com.mycom.model a GWT module.
>
> Now when I compile com.mycom.model, why does it need to go and look
> for all implementations of that abstract class AbstractMessage in
> OTHER packages (as I later find with many No Source found..."
> errors)?
>
> It seems RPC serializer is trying to serialize/compile all classes
> that IMPLEMENT an abstract class in my gwt module.
>
> Is there way to workaround this?
>
> --
> 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.
>
>

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



Is there a way to workaround GWT compiler/serializer/linker issue?

2011-03-16 Thread KD
Lets say I have package : com.mycom.model

It has following classes

com.mycom.model.PlatformMessage (an interface)

com.mycom.model.AbstractMessage (an abstract class that implements
PlatformMessage)

com.mycom.model.QueryMessage (a concrete implementation of
AbstractMessage)

Now there is another package: com.mycom.app

It has the following class...

com.mycom.app.StreamMessage (a concrete implementation of
AbstractMessage)

ONLY com.mycom.model a GWT module.

Now when I compile com.mycom.model, why does it need to go and look
for all implementations of that abstract class AbstractMessage in
OTHER packages (as I later find with many No Source found..."
errors)?

It seems RPC serializer is trying to serialize/compile all classes
that IMPLEMENT an abstract class in my gwt module.

Is there way to workaround this?

-- 
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: How to compile selectively or avoid compilation of inheriting/implementing classes?

2011-03-16 Thread KD
Ok let me rephrase this.
Say, there is an abstract class com.model.AbstractMessage and one of
its implementation are in same package called
com.model.ConcreteMessage.

Now another class in another package also implements the
com.model.AbstractMessage, lets call it com.api.ChangeMessage

Now when I compile the GWT module "com.model" why does it need to go
look at all implementations of the abstract class
com.model.AbstractModel in other packages? com.model is THE BASE
package, everything else extends it. What if I just want to make that
a GWT module and nothing else.

Is there is the way to stop it?

-KD


On Mar 16, 1:17 am, "A. Stevko"  wrote:
> It does not seem likely that the GWT compiler is bringing in any classes
> that are not in the source paths.
> I suggest looking at the imports within those directories to see which are
> referencing thoughworks etc.
>
>
>
>
>
>
>
>
>
> On Tue, Mar 15, 2011 at 11:21 AM, KD  wrote:
> > Here is my situation.
>
> > On the top level of my API is...
>
> > com.mycompany.core.MODEL
>
> > I have made this a GWT module, has a blank entry point and has
> > MyModel.xml. Its structure is as below...
>
> > 
> >  
> >  
> >  
> >  
> >  
> >  
> >  
> >  
> > 
>
> > Now there are implementations of this model to make a default out of
> > the box framework and those reside in the following packages
>
> > com.mycompany.core.API
> > com.mycompany.core.KERNAL
>
> > i.e. Abstract and concrete classes in these 2 packages above implement
> > interfaces from the MODEL package
> > e.g
> > AbstractMessageListner (in core.API) implements MessageListener (in
> > core.MODEL)
>
> > Now there is another GWT module...
>
> > com.mycompany.DASHBOARD
>
> > which inherits the MODEL
>
> > When I compile all in eclipse or do a 'mvn clean install', there are
> > no errors. There are Maven dependencies in Dashboard for MODEL source
>
> > When I launch dashboard module from eclipse using my custom .launch
> > file, I get a lot of "No source code..." found errors pointing to
> > classes in API and KERNAL and also things like
>
> > - No source code is available for type java.io.ByteArrayOutputStream;
> > did you forget to inherit a required module?
> > - The method close() is undefined for the type OutputStream
> > - No...for type com.thoughtworks.xstream.io.StreamException; did
> > you...
> > - No...for type java.io.Writer; did you...
>
> > So my question is:
> > How can I avoid API and KERNEL being pulled in while compiling. My
> > argument is MODEL does not depend on anything, rather everything
> > depends on MODEL. Is there a way I can tell GWT compiler (preferably
> > selectively) not to worry about classes that DEPEND ON core.MODEL with
> > the exception of DASHBOARD of course.
>
> > My end goal is that, I would like to use MODEL in DASHBOARD on client
> > side and avoid writing new DTO interfacing between widgets and
> > backend.
>
> > Any ideas or help here would be super in taking me over this roadblock.
>
> > --
> > 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.
>
> --
> -- A. Stevko
> ===
> "If everything seems under control, you're just not going fast enough." M.
> Andretti

-- 
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: One Session(HTTP) for multiple GWT-Modules?

2011-03-16 Thread Juan Pablo Gardella
But will it then be possible to make in each module a gwt-rpc-call
which checks, if the user is logged-in?

Yes, is possible.

Will the Session be the same, or will each call (from different
modules) deliver a different session-id?

I handle this with Spring security, is transparent. If you don't use Spring
security search other threads that explain this.

And what happens, if the users browser has cookies disabled? Is there
a way to rewrite the url like in JSP or Servlets?

I handle this with Spring security, is transparent.

Juan



2011/3/16 Johannes Stein 

> Yes, thats right.
> But will it then be possible to make in each module a gwt-rpc-call
> which checks, if the user is logged-in?
> Will the Session be the same, or will each call (from different
> modules) deliver a different session-id?
> And what happens, if the users browser has cookies disabled? Is there
> a way to rewrite the url like in JSP or Servlets?
>
> On 16 Mrz., 18:47, Juan Pablo Gardella 
> wrote:
> > The modules is in client side. Session is in the server side.
> >
> > Juan
> >
> > 2011/3/16 Johannes Stein 
> >
> >
> >
> >
> >
> >
> >
> > > hello,
> >
> > > im implementing a little online-game with gwt.
> > > this game contains two modules - one ui for the game itself and a
> > > seperate user-area.
> > > if a user is logged-in into the user-area he should be able to write
> > > comments etc. in the game-gui (the other module).
> > > is it possible to share a http-session between the modules? what could
> > > be a solution?
> >
> > > thanks for any help!
> >
> > > johannes
> >
> > > --
> > > 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.
>
> --
> 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.
>
>

-- 
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: Development Mode quit unexpectedly while using libjava.jnilib plugin

2011-03-16 Thread Nikita Kuznetsov
The problem seems to have resolved itself more or less. I'm not sure exactly
what I did but the only thing I recall changing was including
gwt-servlet.jar into my class path.

On Wed, Mar 16, 2011 at 11:35 AM, Nick  wrote:

> Just got a brand new mac book pro for work.
> Installed the latest JDK (1.6.0_24), App Engine SDK(1.4.2), and
> GWT(2.2.0)
> Using intellij, created a new project and configured everything the
> same way I've been doing for the last 6 months with no problems. Tried
> to debug my GWT application and it crashed. Restarted my computer
> thinking all the new SDKs might be worth a restart. It worked once and
> then started crashing again. I think the new JDK is what broke this
> cause I have an almost identical set up at home but I'm using and
> older JDK. Please help me resolve this. Thanks.
>
> Here's the crash report:
>
> Process: java [1490]
> Path:/usr/bin/java
> Identifier:  com.apple.javajdk16.cmd
> Version: 1.0 (1.0)
> Code Type:   X86-64 (Native)
> Parent Process:  idea [134]
>
> PlugIn Path:   /Library/Java/JavaVirtualMachines/1.6.0_24-
> b07-334.jdk/Contents/Libraries/libjava.jnilib
> PlugIn Identifier: libjava.jnilib
> PlugIn Version:??? (???)
>
> Date/Time:   2011-03-16 11:27:35.998 -0700
> OS Version:  Mac OS X 10.6.6 (10J3210)
> Report Version:  6
>
> Interval Since Last Report:  2842 sec
> Crashes Since Last Report:   5
> Per-App Interval Since Last Report:  77 sec
> Per-App Crashes Since Last Report:   5
> Anonymous UUID:  A613E182-BC76-41FB-8C9F-
> BC4DFC63271D
>
> Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
> Exception Codes: KERN_INVALID_ADDRESS at 0x
> Crashed Thread:  28  Dispatch queue: com.apple.root.low-priority
>
> ...
>
> Model: MacBookPro8,2, BootROM MBP81.0047.B04, 4 processors, Intel Core
> i7, 2.2 GHz, 4 GB, SMC 1.69f1
> Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB
> Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In,
> 384 MB
> Memory Module: global_name
> AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6),
> Broadcom BCM43xx 1.0 5.100.198.10.1)
> Bluetooth: Version 2.4.3f1, 2 service, 19 devices, 1 incoming serial
> ports
> Network Service: AirPort, AirPort, en1
> Serial ATA Device: TOSHIBA MK7559GSXF, 698.64 GB
> Serial ATA Device: MATSHITADVD-R   UJ-898
> USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.),
> 0x8509, 0xfa20 / 3
> USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa10 / 2
> USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.),
> 0x0245, 0xfa12 / 5
> USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500,
> 0xfa11 / 4
> USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.),
> 0x821a, 0xfa113000 / 6
> USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd10 / 2
> USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd11 / 3
>

-- 
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: GWT breaks on Java OSX 10.6 Update 4

2011-03-16 Thread David Chandler
See
http://groups.google.com/group/google-web-toolkit/browse_thread/thread/52bb64519bcb0605/6632ff12b59d5b30?lnk=gst&q=mac+update+4#6632ff12b59d5b30

/dmc

On Wed, Mar 16, 2011 at 2:34 PM, hellomaylo  wrote:

> Anyone else seeing this?  When I apply the current Java OSX 10.6
> Update 4, all of my GWT apps run from Eclipse crash java.  This
> applies to either Eclipse 32 or 64bit.  My colleague and I found this
> when we both got new MacBook Pros, I updated and he didn't, I was
> broken and he wasn't.  Since I haven't found a way to rollback the
> updates, I reinstalled OSX and life is good again.
>
> --
> 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.
>
>


-- 
David Chandler
Developer Programs Engineer, Google Web Toolkit
w: http://code.google.com/
b: http://googlewebtoolkit.blogspot.com/
t: @googledevtools

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



GWT breaks on Java OSX 10.6 Update 4

2011-03-16 Thread hellomaylo
Anyone else seeing this?  When I apply the current Java OSX 10.6
Update 4, all of my GWT apps run from Eclipse crash java.  This
applies to either Eclipse 32 or 64bit.  My colleague and I found this
when we both got new MacBook Pros, I updated and he didn't, I was
broken and he wasn't.  Since I haven't found a way to rollback the
updates, I reinstalled OSX and life is good again.

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



Development Mode quit unexpectedly while using libjava.jnilib plugin

2011-03-16 Thread Nick
Just got a brand new mac book pro for work.
Installed the latest JDK (1.6.0_24), App Engine SDK(1.4.2), and
GWT(2.2.0)
Using intellij, created a new project and configured everything the
same way I've been doing for the last 6 months with no problems. Tried
to debug my GWT application and it crashed. Restarted my computer
thinking all the new SDKs might be worth a restart. It worked once and
then started crashing again. I think the new JDK is what broke this
cause I have an almost identical set up at home but I'm using and
older JDK. Please help me resolve this. Thanks.

Here's the crash report:

Process: java [1490]
Path:/usr/bin/java
Identifier:  com.apple.javajdk16.cmd
Version: 1.0 (1.0)
Code Type:   X86-64 (Native)
Parent Process:  idea [134]

PlugIn Path:   /Library/Java/JavaVirtualMachines/1.6.0_24-
b07-334.jdk/Contents/Libraries/libjava.jnilib
PlugIn Identifier: libjava.jnilib
PlugIn Version:??? (???)

Date/Time:   2011-03-16 11:27:35.998 -0700
OS Version:  Mac OS X 10.6.6 (10J3210)
Report Version:  6

Interval Since Last Report:  2842 sec
Crashes Since Last Report:   5
Per-App Interval Since Last Report:  77 sec
Per-App Crashes Since Last Report:   5
Anonymous UUID:  A613E182-BC76-41FB-8C9F-
BC4DFC63271D

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x
Crashed Thread:  28  Dispatch queue: com.apple.root.low-priority

...

Model: MacBookPro8,2, BootROM MBP81.0047.B04, 4 processors, Intel Core
i7, 2.2 GHz, 4 GB, SMC 1.69f1
Graphics: AMD Radeon HD 6750M, AMD Radeon HD 6750M, PCIe, 1024 MB
Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In,
384 MB
Memory Module: global_name
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6),
Broadcom BCM43xx 1.0 5.100.198.10.1)
Bluetooth: Version 2.4.3f1, 2 service, 19 devices, 1 incoming serial
ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: TOSHIBA MK7559GSXF, 698.64 GB
Serial ATA Device: MATSHITADVD-R   UJ-898
USB Device: FaceTime HD Camera (Built-in), 0x05ac  (Apple Inc.),
0x8509, 0xfa20 / 3
USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfa10 / 2
USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.),
0x0245, 0xfa12 / 5
USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500,
0xfa11 / 4
USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.),
0x821a, 0xfa113000 / 6
USB Device: Hub, 0x0424  (SMSC), 0x2513, 0xfd10 / 2
USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd11 / 3

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



ArrayList, size not changing when item is removed

2011-03-16 Thread Sockmonster
Hi, I'm having a problem with an ArrayList in GWT. Adding items to the
ArrayList works as expected (ie size increments by the number of items
added). However, when I remove an item from the list the size does not
decrement. For example if I add 5 items to a list and then remove an
item, the size remains 5.

I assume this is because the ArrayList is actually implemented using
an Array (as in Java) that doubles in size when it's capacity is
reached, but doesn't shrink when items are removed. But unlike Java,
calling size() returns the size of the array rather than the number of
elements it contains?

Has anyone else encountered this? Am I far off the mark?

Many thanks.

-- 
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: One Session(HTTP) for multiple GWT-Modules?

2011-03-16 Thread Johannes Stein
No ideas?

On 16 Mrz., 18:58, Johannes Stein 
wrote:
> Yes, thats right.
> But will it then be possible to make in each module a gwt-rpc-call
> which checks, if the user is logged-in?
> Will the Session be the same, or will each call (from different
> modules) deliver a different session-id?
> And what happens, if the users browser has cookies disabled? Is there
> a way to rewrite the url like in JSP or Servlets?
>
> On 16 Mrz., 18:47, Juan Pablo Gardella 
> wrote:
>
>
>
>
>
>
>
> > The modules is in client side. Session is in the server side.
>
> > Juan
>
> > 2011/3/16 Johannes Stein 
>
> > > hello,
>
> > > im implementing a little online-game with gwt.
> > > this game contains two modules - one ui for the game itself and a
> > > seperate user-area.
> > > if a user is logged-in into the user-area he should be able to write
> > > comments etc. in the game-gui (the other module).
> > > is it possible to share a http-session between the modules? what could
> > > be a solution?
>
> > > thanks for any help!
>
> > > johannes
>
> > > --
> > > 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.

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



GWT compiler/serializer/linker issue?

2011-03-16 Thread KD
Lets say I have a class

com.mycom.app.AbstractMessage

There is another class in

com.mycom.model.QueryResponse

QueryResponse extends AbstractMessage and notice they are in different
pacakges

com.mycom.model is a GWT Module and in the module XML

When I compile model there are errors. However when I try to use
QueryReponse in another GWT module, I get runtime errors

"No source code is available for type com.mycom.app.AbstractMessage;
did you forget to inherit a required module"

This lends me to believe that AbstractMessage was not compiled/
compiled right to begin understandably because I DO NOT WANT to have
"app" package be a GWT module

In other words, I only want to compile all classes in "model" and not
any super classes. How can I tell the GWT compiler/rpc/linker/
serializer etc not to do so?

I am doing this a source environment where we have a lot of packages,
most of them depend on MODEL only and I DO NOT want to make a GWT
module out of every package, just so it compiles.

Thought anyone?

-- 
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: GWT app only displays a blank page when run in ie9

2011-03-16 Thread Thomas Broyer
See http://code.google.com/p/google-web-toolkit/issues/detail?id=5125&q=ie9

Workaround is the same as when IE8 came out: 
http://code.google.com/p/google-web-toolkit/issues/detail?id=3777#c1 (juste 
replace EmulateIE7 with EmulateIE8)
See also http://msdn.microsoft.com/en-us/library/cc288325(v=vs.85).aspx

-- 
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: GWT app only displays a blank page when run in ie9

2011-03-16 Thread David Chandler
Hi TBirch,

Please see the update I just now posted to the group. Short answer is GWT
2.3 will support IE9.

Thanks,
/dmc

On Wed, Mar 16, 2011 at 2:38 PM, TBirch  wrote:

> I have been able to get my sites to work by changing the setting in
> ie9 to "internet explorer 9 compatibility view". What do I need to do
> to the code for my sites for them to work in normal ie9 view?
>
> On Mar 16, 2:03 pm, TBirch  wrote:
> > I downloaded ie 9 today to my windows vista pc. All applications that
> > I have that run fine under ie8, firefox, chrome, etc. only show a
> > blank page in ie9. I've searched but do not see any posts noting
> > problems running in ie9.
> > Thanks
>
> --
> 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.
>
>


-- 
David Chandler
Developer Programs Engineer, Google Web Toolkit
w: http://code.google.com/
b: http://googlewebtoolkit.blogspot.com/
t: @googledevtools

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



Status of IE9 support in GWT

2011-03-16 Thread David Chandler
In keeping with the GWT philosophy of making it possible to write
no-compromise AJAX in any modern browser, GWT 2.3 (in progress) will support
IE9. We're adding a new user.agent property "ie9" and the notion of fallback
properties, so any browser-specific bindings not yet implemented in ie9 will
fall back to ie8 and show a compile-time warning that a fallback impl was
used.

In the mean time, you can tell IE9 to behave as IE8 by inserting the
following in the head section of your GWT host page:


Assuming that IE continues to maintain backward compatibility, you may want
to insert the equivalent tag for IE9 once GWT 2.3 ships in order to make
your app somewhat future-proof for future IE versions. For more information
on document compatibility in Internet Explorer, see
http://msdn.microsoft.com/en-us/library/cc288325(VS.85).aspx

The IE9 dev mode issue reported back in Dec is fixed in GWT 2.2.0:
http://googlewebtoolkit.blogspot.com/2010/12/support-for-gwt-dev-mode-in-ie-9.html

You can follow the status of known IE9 issues here:
http://code.google.com/p/google-web-toolkit/issues/detail?id=5125
http://code.google.com/p/google-web-toolkit/issues/detail?id=6134
http://code.google.com/p/google-web-toolkit/issues/detail?id=6135
http://code.google.com/p/google-web-toolkit/issues/detail?id=6136

-- 
David Chandler
Developer Programs Engineer, Google Web Toolkit
w: http://code.google.com/
b: http://googlewebtoolkit.blogspot.com/
t: @googledevtools

-- 
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: GWT app only displays a blank page when run in ie9

2011-03-16 Thread TBirch
I have been able to get my sites to work by changing the setting in
ie9 to "internet explorer 9 compatibility view". What do I need to do
to the code for my sites for them to work in normal ie9 view?

On Mar 16, 2:03 pm, TBirch  wrote:
> I downloaded ie 9 today to my windows vista pc. All applications that
> I have that run fine under ie8, firefox, chrome, etc. only show a
> blank page in ie9. I've searched but do not see any posts noting
> problems running in ie9.
> Thanks

-- 
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: Spring Security 3.0 authentication problem

2011-03-16 Thread Musicman75
Hello,

to use GWT with Spring Security look at this blog:

http://seewah.blogspot.com/2009/02/gwt-and-spring-security.html



On 15 Mrz., 18:06, julio  wrote:
> Hi,
>
> I have a GWT client that communicates with a Spring/SpringSecurity 3.0
> server via REST/JSON.
> Both run on the same tomcat/jetty perfectly, but I have a problem
> introducing the authentication:
> If I "POST" the server with an external HTTP client the url:
>
> http://localhost:8080/myserverapp/j_spring_security_check?j_username=...
>
> the server response is OK (200)
>
> but when GWT client tries the same, the status code returned is 0.
> This is the code I'm using at the moment:
>
> final StringBuilder content = new StringBuilder();
>         content.append("j_username=" + URL.encode("julio"));
>         content.append("&j_password=" + URL.encode("mypass"));
>
>         final RequestBuilder builder = new
> RequestBuilder(RequestBuilder.POST, URL.encode(BASEURL + "/
> j_spring_security_check"));
>         builder.setHeader("Content-Type", "application/x-www-form-
> urlencoded");
>
>         try {
>             builder.sendRequest(content.toString(), new
> RequestCallback() {
>
>                                 public void onResponseReceived(Request 
> request, Response response)
> {
>                                         Window.alert("STATUS : " + 
> response.getStatusCode()); // returns
> 0 ??
>                                 }
>
>                                 public void onError(Request request, 
> Throwable exception) {
>                                         Window.alert("ERROR");
>                                 }
>
>             });
>         } catch (final RequestException e) {
>             Window.alert(e.getLocalizedMessage());
>         }
>
> why does it return 0? any idea?
>
> Thanks,
> Julio

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



GWT app only displays a blank page when run in ie9

2011-03-16 Thread TBirch
I downloaded ie 9 today to my windows vista pc. All applications that
I have that run fine under ie8, firefox, chrome, etc. only show a
blank page in ie9. I've searched but do not see any posts noting
problems running in ie9.
Thanks

-- 
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: One Session(HTTP) for multiple GWT-Modules?

2011-03-16 Thread Johannes Stein
Yes, thats right.
But will it then be possible to make in each module a gwt-rpc-call
which checks, if the user is logged-in?
Will the Session be the same, or will each call (from different
modules) deliver a different session-id?
And what happens, if the users browser has cookies disabled? Is there
a way to rewrite the url like in JSP or Servlets?

On 16 Mrz., 18:47, Juan Pablo Gardella 
wrote:
> The modules is in client side. Session is in the server side.
>
> Juan
>
> 2011/3/16 Johannes Stein 
>
>
>
>
>
>
>
> > hello,
>
> > im implementing a little online-game with gwt.
> > this game contains two modules - one ui for the game itself and a
> > seperate user-area.
> > if a user is logged-in into the user-area he should be able to write
> > comments etc. in the game-gui (the other module).
> > is it possible to share a http-session between the modules? what could
> > be a solution?
>
> > thanks for any help!
>
> > johannes
>
> > --
> > 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.

-- 
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: ValueProxy containing EntityProxy

2011-03-16 Thread fclaeys
Thank for your answer Jake.

I try with with(...) But it does not work.

I think with(...) is useful for relationships between EntityProxies but not 
for ValueProxy because ValueProxy haven't relationships.

-- 
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: One Session(HTTP) for multiple GWT-Modules?

2011-03-16 Thread Juan Pablo Gardella
The modules is in client side. Session is in the server side.

Juan

2011/3/16 Johannes Stein 

> hello,
>
> im implementing a little online-game with gwt.
> this game contains two modules - one ui for the game itself and a
> seperate user-area.
> if a user is logged-in into the user-area he should be able to write
> comments etc. in the game-gui (the other module).
> is it possible to share a http-session between the modules? what could
> be a solution?
>
> thanks for any help!
>
> johannes
>
> --
> 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.
>
>

-- 
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: Error: uncaught exception: com.google.gwt.event.shared.UmbrellaException: One or more exceptions caught, see full set in UmbrellaException#getCauses

2011-03-16 Thread Juan Pablo Gardella
Paste the complete stacktrace

Juan

2011/3/16 Mgr 

> In Mozilla browser. &  NetBean IDE 6.9 run the below code throws the
> exception
>
> Error: uncaught exception:
> com.google.gwt.event.shared.UmbrellaException: One or more exceptions
> caught, see full set in UmbrellaException#getCauses
>
>
>
> I have more problem when I develop the gwt application.  I am a newbee
> to gwt. How to solve the below problem.  As soon as possible please
> reply for me. I am yet waiting for your reply.
>
>
> My EntryPoint Class
>
> public class MainEntryPoint implements EntryPoint
> {
>
>   public VerticalPanel verticalPanelbutton = new VerticalPanel();
>  public VerticalPanel content = new VerticalPanel();
>  public DockLayoutPanel docPanel = new DockLayoutPanel(Unit.EM);
>
>  public MainEntryPoint()
>  {
>  }
>
>
>  public void onModuleLoad()
>  {
>
>final Button doctorbutton = new Button("Doctor");
>final Button addressIdbutton = new Button("AddressId");
>
>verticalPanelbutton.add(addressIdbutton);
>
>addressIdbutton.addClickHandler(new ClickHandler()
>{
>
>  public void onClick(ClickEvent event)
>  {
>   AddressId addressId = new AddressId();
>   addressId.getAddressId();
>
>  }
>});
>
>docPanel.addNorth(verticalPanelbutton, 5);
>docPanel.addNorth(content, 10);
>RootPanel.get().add(docPanel);
>
>  }
> }
>
> --
> My child Class
>
> public class AddressId
> {
>
>  public String doorNo_;
>  public Grid gridAddr_;
>
>  public void getAddressId()
>  {
>gridAddr_ = new Grid(4, 2);
>Label doornol = new Label("Door No");
>
>final TextBox doorno = new TextBox();
>
>Button addressok = new Button("Ok");
>addressok.addClickHandler(new ClickHandler()
>{
>
>  public void onClick(ClickEvent event)
>  {
>try
>{
>  AddressId addressId = new AddressId();
>  addressId.doorNo_ = ((TextBox) gridAddr_.getWidget(0,
> 1)).getText();
>  addressId.doorNo_ = ((String)doorno.getText());
>  print("addressId.doorNo_ :"+addressId.doorNo_);
>  Hospital.hospitalSingleton_.addAddressID(addressId);
>}
>catch (Exception e1)
>{
>  print("e" + e1);
>}
>  }
>});
>gridAddr_.setWidget(0, 0, doornol);
>gridAddr_.setWidget(0, 1,doorno);
>gridAddr_.setWidget(1, 0, addressok);
>
>RootLayoutPanel r = RootLayoutPanel.get();
>r.add(gridAddr_);
>  }
>
> --
> 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.
>
>

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



One Session(HTTP) for multiple GWT-Modules?

2011-03-16 Thread Johannes Stein
hello,

im implementing a little online-game with gwt.
this game contains two modules - one ui for the game itself and a
seperate user-area.
if a user is logged-in into the user-area he should be able to write
comments etc. in the game-gui (the other module).
is it possible to share a http-session between the modules? what could
be a solution?

thanks for any help!

johannes

-- 
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: CellTable odd/even row styles

2011-03-16 Thread Jeff Larsen
You'll notice in CellTable there are some inner classes. One of those 
classes is Style and the other is Resources. 

Style is the class that has the styles which are used, Resources maps that 
class to its css value.

Inside Style you'll notice two methods called cellTableEvenRow and 
cellTableOddRow. Those are the two classes you're going to care about. 

If you want completely different styles, you can implement your own style 
sheet (just copy the Style.css from com.google.gwt.cellview.client package 
and change the values inside the classes). Or if you just want to override 
the alternating views you can do something like.


public interface MyResources extends CellTable.Resources{

@Source({CellTable.Style.DEFAULT_CSS, "MyCssFile.css"})
CellTable.Style getStyle();
}


and in MyCssFile.css just implement .cellTableEvenRow and cellTableOddRow.

Then make sure to pass in MyResources into the constructor of the CellTable 
and you should have the styles you're looking for.

-- 
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: CellTable odd/even row styles

2011-03-16 Thread Raphaël Brugier
The good way to override the style of a cellTable is to pass a Ressource to 
the constructor.
See the Expense 
example

-Raphaël.

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



Error: uncaught exception: com.google.gwt.event.shared.UmbrellaException: One or more exceptions caught, see full set in UmbrellaException#getCauses

2011-03-16 Thread Mgr
In Mozilla browser. &  NetBean IDE 6.9 run the below code throws the
exception

Error: uncaught exception:
com.google.gwt.event.shared.UmbrellaException: One or more exceptions
caught, see full set in UmbrellaException#getCauses



I have more problem when I develop the gwt application.  I am a newbee
to gwt. How to solve the below problem.  As soon as possible please
reply for me. I am yet waiting for your reply.


My EntryPoint Class

public class MainEntryPoint implements EntryPoint
{

   public VerticalPanel verticalPanelbutton = new VerticalPanel();
  public VerticalPanel content = new VerticalPanel();
  public DockLayoutPanel docPanel = new DockLayoutPanel(Unit.EM);

  public MainEntryPoint()
  {
  }


  public void onModuleLoad()
  {

final Button doctorbutton = new Button("Doctor");
final Button addressIdbutton = new Button("AddressId");

verticalPanelbutton.add(addressIdbutton);

addressIdbutton.addClickHandler(new ClickHandler()
{

  public void onClick(ClickEvent event)
  {
   AddressId addressId = new AddressId();
   addressId.getAddressId();

  }
});

docPanel.addNorth(verticalPanelbutton, 5);
docPanel.addNorth(content, 10);
RootPanel.get().add(docPanel);

  }
}
--
My child Class

public class AddressId
{

  public String doorNo_;
  public Grid gridAddr_;

  public void getAddressId()
  {
gridAddr_ = new Grid(4, 2);
Label doornol = new Label("Door No");

final TextBox doorno = new TextBox();

Button addressok = new Button("Ok");
addressok.addClickHandler(new ClickHandler()
{

  public void onClick(ClickEvent event)
  {
try
{
  AddressId addressId = new AddressId();
  addressId.doorNo_ = ((TextBox) gridAddr_.getWidget(0,
1)).getText();
  addressId.doorNo_ = ((String)doorno.getText());
  print("addressId.doorNo_ :"+addressId.doorNo_);
  Hospital.hospitalSingleton_.addAddressID(addressId);
}
catch (Exception e1)
{
  print("e" + e1);
}
  }
});
gridAddr_.setWidget(0, 0, doornol);
gridAddr_.setWidget(0, 1,doorno);
gridAddr_.setWidget(1, 0, addressok);

RootLayoutPanel r = RootLayoutPanel.get();
r.add(gridAddr_);
  }

-- 
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: Proxy hell

2011-03-16 Thread jhulford
I'm not familiar w/ a jetty setup, so I suppose you could have done
something in your global configurations, but you have no servlet-
mapping set up in the web.xml to handle the base URI for your web app
(which is presumably deployed to the proxytest path?).   The
DefaultServlet is then what will be handling a request to /proxytest
request due to you not having a specific servlet set up for the
request path and all that is going to do is look for a welcome file
since you don't have any actual file specified in your request path.

It also looks like you don't have a Test.html, set up under the web
app either, or it's in the wrong directory, otherwise the jetty
DefaultServlet should have returned that.

What file are you expecting to be returned or what servlet invoked by
a request to http://localhost:8080/proxytest?

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



CellTable odd/even row styles

2011-03-16 Thread Yaakov
Hi,

Is there a way to override the default odd/even row styles in a
CellTable?

I've tried to do this through CSS rules, but it seems like something
deep down in the code is overriding it or wiping my style altogether
to be more accurate.

I tried this (keep in mind that I have a SimplePanel wrapping the
table with a style applied to the SimplePanel called
'tablePlaceholder');

.tablePlaceholder thead tr {
background: none repeat scroll 0 0 #FF !important;
}

.tablePlaceholder thead tr td {
border: 2px solid #FF;
}

When I use Firebug to see what styles got applied, those styles are
gone, something wiped those styles and replaced it with:
on :
background: none repeat scroll 0 0 #F3F7FB;

on a :
border: 2px solid #F3F7FB;

Any help would be appreciated!

-Yaakov.

-- 
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: Stop keyboard events

2011-03-16 Thread Achilli
Only if u kill the user before he does that!  :)

But if u are satisfied with filtering what's being pressed you can do
like this (example uses uibinding syntax):

@UiHandler("inputValue")
void onInputValueInserted(KeyUpEvent e) {
if(!inputValue.getText().isEmpty()) {
if(!inputValue.getText().matches("[1-9]\\d{0,}")) { // I want to
filter out what's not a number and those numbers starting with 0
inputValue.setText(inputValue.getText().subSequence(0,
inputValue.getText().length() - 1).toString()); // remove the last
char
}
}
}

HTH,
C

On Mar 15, 12:17 am, Magno Machado  wrote:
> Is it possible to prevent a key from being pressed on an textbox?
>
> --
> Magno Machado 
> Paulohttp://blog.magnomachado.com.brhttp://code.google.com/p/emballo/

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



Servlet doesnt work: Error 500 the call failed on the server

2011-03-16 Thread Reptil
Hi,
I have been working in a Web application who acess Google Docs.
So i am trying to ask the person GoogleId and PassWord in the Client
Side,and send it to the server Side by Servlet\RPC
but it gives me this error
"[ERROR] 500 - POST /com.mycompany.project.Spreadsheet/sessoes"
And the exception message
"500 the call failed on the server"

I have my code like this

 service = (SessoesAsync) GWT.create(Sessoes.class);
 ServiceDefTarget endpoint = (ServiceDefTarget) service;
 endpoint.setServiceEntryPoint(GWT.getModuleBaseURL() + 
"sessoes");

final AsyncCallback > callback = new
AsyncCallback >(){

@Override
public void onFailure(Throwable caught) 
{
Window.alert("Communication 
failed");
 
Window.alert(caught.getLocalizedMessage());

}

@Override
public void onSuccess(ArrayList 
 result) {
  if (result != null) {
  for (int i = 0; i < 
result.size(); i++) {

System.out.println("\t"+ i+"-" + result.get(i));

}
} else {
Window.alert("Account Empty");
}

}};


public interface SessoesAsync{

  public void  login(String Id,String Pass,
AsyncCallback> callback) ;
}



@RemoteServiceRelativePath("sessoes")
public interface Sessoes extends RemoteService{

  public ArrayList  login(String Id,String Pass) ;
}


public class SessoesImpl extends RemoteServiceServlet implements
Sessoes{

SpreadsheetService service = new SpreadsheetService("SpreadSheet
demo");
ArrayList lista=null;
@Override
public ArrayList  login(String Id, String Pass)
{Mycode(Doesnt really matter for this)}


}


And my Web.xml is like that


Sessoes

com.mycompany.project.server.SessoesImpl



Sessoes

/com.mycompany.project.Spreadsheet/sessoes



Can you help me find where the error comes from?

-- 
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: DevMode server in AppEngine projects stops immediately after starting the server

2011-03-16 Thread Jambi
Ok I found a workaround here:
http://code.google.com/p/googleappengine/issues/detail?id=4712

I had to install the openJDK and I guess I have to wait for another
mac update to fix the problem. But it works now. Thanks for the hint
Jeff! ;)

-- 
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: DevMode server in AppEngine projects stops immediately after starting the server

2011-03-16 Thread Jeff Larsen
Note: this is just what I've read on twitter. I don't use a mac. 

-- 
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: DevMode server in AppEngine projects stops immediately after starting the server

2011-03-16 Thread Jeff Larsen
You don't need an older appengine/gwt. You need an older JDK. 

-- 
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: DevMode server in AppEngine projects stops immediately after starting the server

2011-03-16 Thread Jambi
Ah I read it wrong, yes... The JDK is also up to date. Is it possible
to downgrade?

On 16 Mrz., 16:50, Jeff Larsen  wrote:
> I believe the latest mac JDK update broke gwt and appengine. Are you using
> that?

-- 
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: DevMode server in AppEngine projects stops immediately after starting the server

2011-03-16 Thread Jambi
Yep, everything is up to date. Is there a repository where I can get
older appengine versions?

On 16 Mrz., 16:50, Jeff Larsen  wrote:
> I believe the latest mac JDK update broke gwt and appengine. Are you using
> that?

-- 
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: FormPanel submit shows old page

2011-03-16 Thread Luca Meoni
Hi,

I have resolved the my trouble. I submit FormPanel on a hidden iframe
according with
documentation, so I have resolved make new FormPanel("_self") and
now it works.

Thanks bye

On 15 Mar, 16:15, Luca Meoni  wrote:
> Hi,
>
> I'm developing a web application based on GWT for client side and
> SpringFramework for server side.
> I submit a FormPanel on a SimpleFormController, the onSubmit method is
> called and it returns a new html but the browser shows me the old
> page. On start and on end jsp I have a GWT EntryPoint and I checks
> that the onModuleLoad method is called.
> I tryed to add these html tags to my jsp:
>
> 
> 
>
> but I always saw the old page. I tryed to submit FormPanel on taget
> "_blank" and it works (the browser shows me the new page).
>
> Someone, can help me?
>
> If you need, I will send you sample of code.

-- 
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: DevMode server in AppEngine projects stops immediately after starting the server

2011-03-16 Thread Jeff Larsen
I believe the latest mac JDK update broke gwt and appengine. Are you using 
that? 

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



DevMode server in AppEngine projects stops immediately after starting the server

2011-03-16 Thread Jambi
Hey guys,

I got a strange behaviour with my AppEngine projects. The Server in
DevMode stops 2-4 seconds right after starting the Server. But there´s
no exception or any error message. I´m pretty sure that it´s not an
issue with my own project because the same failure occurs when I
create a new GWT project with the sample app. One other weird thing is
that it worked one time in the last hours. The project is working fine
when it´s hostet on AppEngine.

the console is giving me this:

2011-03-16 16:33:53.675 java[4580:a07] [Java CocoaComponent
compatibility mode]: Enabled
2011-03-16 16:33:53.693 java[4580:a07] [Java CocoaComponent
compatibility mode]: Setting timeout for SWT to 0.10
Initializing AppEngine server
Logging to JettyLogger(null) via
com.google.apphosting.utils.jetty.JettyLogger
Successfully processed /Users/michael/Documents/Development/workspace/
test/war/WEB-INF/appengine-web.xml
Successfully processed /Users/michael/Documents/Development/workspace/
test/war/WEB-INF/web.xml
The server is running at http://localhost:/

---
After this the server stops...
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-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: java.lang.ClassCastException: org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation cannot be cast to org.mortbay.util.ajax.Continuation

2011-03-16 Thread Ramya Jayasankar
Hi,
 Do we have any other way for using Java Messaging Service with GWT???

On Wed, Mar 16, 2011 at 6:49 AM, Juan Pablo Gardella <
gardellajuanpa...@gmail.com> wrote:

> I think the problem is here:
>
> javax.management.ObjectName is a restricted class. Please see the Google
>  App Engine developer's guide for more details.
>
> This class isn't in
> http://code.google.com/appengine/docs/java/jrewhitelist.html
>
> I suppose you can't use that. ActiveMQ use this class.
>
> Juan
>
>
> 2011/3/16 Ramya Jayasankar 
>
>> Hi,
>>   I also tried with GWT 1.7.1  But there I get other errors:
>>
>> [ERROR] Could not load MBeanServer
>> java.lang.NoClassDefFoundError: javax.management.MBeanServerFactory is a
>> restricted class. Please see the Google  App Engine developer's guide for
>> more details.
>>  at
>> com.google.appengine.tools.development.agent.runtime.Runtime.reject(Runtime.java:51)
>> at
>> org.apache.activemq.broker.jmx.ManagementContext.findMBeanServer(ManagementContext.java:337)
>>  at
>> org.apache.activemq.broker.jmx.ManagementContext.getMBeanServer(ManagementContext.java:178)
>> at
>> org.apache.activemq.broker.jmx.ManagementContext.start(ManagementContext.java:88)
>>  at
>> org.apache.activemq.broker.BrokerService.startManagementContext(BrokerService.java:1941)
>> at org.apache.activemq.broker.BrokerService.start(BrokerService.java:458)
>>  at
>> org.apache.activemq.transport.vm.VMTransportFactory.doCompositeConnect(VMTransportFactory.java:123)
>> at
>> org.apache.activemq.transport.vm.VMTransportFactory.doConnect(VMTransportFactory.java:53)
>>  at
>> org.apache.activemq.transport.TransportFactory.doConnect(TransportFactory.java:51)
>> at
>> org.apache.activemq.transport.TransportFactory.connect(TransportFactory.java:80)
>>  at
>> org.apache.activemq.ActiveMQConnectionFactory.createTransport(ActiveMQConnectionFactory.java:243)
>> at
>> org.apache.activemq.ActiveMQConnectionFactory.createActiveMQConnection(ActiveMQConnectionFactory.java:258)
>>  at
>> org.apache.activemq.ActiveMQConnectionFactory.createActiveMQConnection(ActiveMQConnectionFactory.java:230)
>> at
>> org.apache.activemq.ActiveMQConnectionFactory.createConnection(ActiveMQConnectionFactory.java:178)
>>  at org.apache.activemq.web.WebClient.getConnection(WebClient.java:235)
>> at org.apache.activemq.web.WebClient.createSession(WebClient.java:337)
>>  at org.apache.activemq.web.WebClient.getSession(WebClient.java:228)
>> at
>> org.apache.activemq.web.MessageServletSupport.getDestination(MessageServletSupport.java:318)
>>  at
>> org.apache.activemq.web.MessageListenerServlet.doPost(MessageListenerServlet.java:144)
>> at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
>>  at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
>> at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511)
>>  at
>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1166)
>> at org.apache.activemq.web.SessionFilter.doFilter(SessionFilter.java:45)
>>  at
>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
>> at
>> com.google.appengine.api.blobstore.dev.ServeBlobFilter.doFilter(ServeBlobFilter.java:58)
>>  at
>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
>> at
>> com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:43)
>>  at
>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
>> at
>> com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFileFilter.java:122)
>>  at
>> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
>> at
>> org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:388)
>>  at
>> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
>> at
>> org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
>>  at
>> org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
>> at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:418)
>>  at
>> com.google.apphosting.utils.jetty.DevAppEngineWebAppContext.handle(DevAppEngineWebAppContext.java:70)
>> at
>> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
>>  at
>> com.google.appengine.tools.development.JettyContainerService$ApiProxyHandler.handle(JettyContainerService.java:351)
>> at
>> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
>>  at org.mortbay.jetty.Server.handle(Server.java:326)
>> at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
>>  at
>> org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:938)
>> at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:755)
>>  at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:218)
>> at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
>>  at
>> org.mortbay.io.n

How to extend gwt designer

2011-03-16 Thread Oussema Gabtni
Hello :)
I'm working in a project to create an eclipse plugin which extend the
gwt designer plugin.
I learned how to manipulate eclipse plugin but i don't know how to use
extension points of gwt designer
How can i do that? What are the steps to follow?
Is gwt designer open source?
Thanks for all

-- 
Oussema GABTNI
Étudiant ingénieur à la Faculté des Sciences de Tunis

-- 
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: java.lang.ClassCastException: org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation cannot be cast to org.mortbay.util.ajax.Continuation

2011-03-16 Thread Juan Pablo Gardella
I think the problem is here:

javax.management.ObjectName is a restricted class. Please see the Google
 App Engine developer's guide for more details.

This class isn't in
http://code.google.com/appengine/docs/java/jrewhitelist.html

I suppose you can't use that. ActiveMQ use this class.

Juan


2011/3/16 Ramya Jayasankar 

> Hi,
>   I also tried with GWT 1.7.1  But there I get other errors:
>
> [ERROR] Could not load MBeanServer
> java.lang.NoClassDefFoundError: javax.management.MBeanServerFactory is a
> restricted class. Please see the Google  App Engine developer's guide for
> more details.
>  at
> com.google.appengine.tools.development.agent.runtime.Runtime.reject(Runtime.java:51)
> at
> org.apache.activemq.broker.jmx.ManagementContext.findMBeanServer(ManagementContext.java:337)
>  at
> org.apache.activemq.broker.jmx.ManagementContext.getMBeanServer(ManagementContext.java:178)
> at
> org.apache.activemq.broker.jmx.ManagementContext.start(ManagementContext.java:88)
>  at
> org.apache.activemq.broker.BrokerService.startManagementContext(BrokerService.java:1941)
> at org.apache.activemq.broker.BrokerService.start(BrokerService.java:458)
>  at
> org.apache.activemq.transport.vm.VMTransportFactory.doCompositeConnect(VMTransportFactory.java:123)
> at
> org.apache.activemq.transport.vm.VMTransportFactory.doConnect(VMTransportFactory.java:53)
>  at
> org.apache.activemq.transport.TransportFactory.doConnect(TransportFactory.java:51)
> at
> org.apache.activemq.transport.TransportFactory.connect(TransportFactory.java:80)
>  at
> org.apache.activemq.ActiveMQConnectionFactory.createTransport(ActiveMQConnectionFactory.java:243)
> at
> org.apache.activemq.ActiveMQConnectionFactory.createActiveMQConnection(ActiveMQConnectionFactory.java:258)
>  at
> org.apache.activemq.ActiveMQConnectionFactory.createActiveMQConnection(ActiveMQConnectionFactory.java:230)
> at
> org.apache.activemq.ActiveMQConnectionFactory.createConnection(ActiveMQConnectionFactory.java:178)
>  at org.apache.activemq.web.WebClient.getConnection(WebClient.java:235)
> at org.apache.activemq.web.WebClient.createSession(WebClient.java:337)
>  at org.apache.activemq.web.WebClient.getSession(WebClient.java:228)
> at
> org.apache.activemq.web.MessageServletSupport.getDestination(MessageServletSupport.java:318)
>  at
> org.apache.activemq.web.MessageListenerServlet.doPost(MessageListenerServlet.java:144)
> at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
>  at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
> at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511)
>  at
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1166)
> at org.apache.activemq.web.SessionFilter.doFilter(SessionFilter.java:45)
>  at
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
> at
> com.google.appengine.api.blobstore.dev.ServeBlobFilter.doFilter(ServeBlobFilter.java:58)
>  at
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
> at
> com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:43)
>  at
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
> at
> com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFileFilter.java:122)
>  at
> org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
> at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:388)
>  at
> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
> at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
>  at
> org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
> at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:418)
>  at
> com.google.apphosting.utils.jetty.DevAppEngineWebAppContext.handle(DevAppEngineWebAppContext.java:70)
> at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
>  at
> com.google.appengine.tools.development.JettyContainerService$ApiProxyHandler.handle(JettyContainerService.java:351)
> at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
>  at org.mortbay.jetty.Server.handle(Server.java:326)
> at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
>  at
> org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:938)
> at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:755)
>  at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:218)
> at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
>  at
> org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:409)
> at
> org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)
>
>
> [ERROR] Failed to start ActiveMQ JMS Message Broker. Reason:
> java.io.IOException: Invalid JMX broker name: broker1
> java.io.IOException

Re: java.lang.ClassCastException: org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation cannot be cast to org.mortbay.util.ajax.Continuation

2011-03-16 Thread Ramya Jayasankar
Hi,
  I also tried with GWT 1.7.1  But there I get other errors:

[ERROR] Could not load MBeanServer
java.lang.NoClassDefFoundError: javax.management.MBeanServerFactory is a
restricted class. Please see the Google  App Engine developer's guide for
more details.
at
com.google.appengine.tools.development.agent.runtime.Runtime.reject(Runtime.java:51)
at
org.apache.activemq.broker.jmx.ManagementContext.findMBeanServer(ManagementContext.java:337)
at
org.apache.activemq.broker.jmx.ManagementContext.getMBeanServer(ManagementContext.java:178)
at
org.apache.activemq.broker.jmx.ManagementContext.start(ManagementContext.java:88)
at
org.apache.activemq.broker.BrokerService.startManagementContext(BrokerService.java:1941)
at org.apache.activemq.broker.BrokerService.start(BrokerService.java:458)
at
org.apache.activemq.transport.vm.VMTransportFactory.doCompositeConnect(VMTransportFactory.java:123)
at
org.apache.activemq.transport.vm.VMTransportFactory.doConnect(VMTransportFactory.java:53)
at
org.apache.activemq.transport.TransportFactory.doConnect(TransportFactory.java:51)
at
org.apache.activemq.transport.TransportFactory.connect(TransportFactory.java:80)
at
org.apache.activemq.ActiveMQConnectionFactory.createTransport(ActiveMQConnectionFactory.java:243)
at
org.apache.activemq.ActiveMQConnectionFactory.createActiveMQConnection(ActiveMQConnectionFactory.java:258)
at
org.apache.activemq.ActiveMQConnectionFactory.createActiveMQConnection(ActiveMQConnectionFactory.java:230)
at
org.apache.activemq.ActiveMQConnectionFactory.createConnection(ActiveMQConnectionFactory.java:178)
at org.apache.activemq.web.WebClient.getConnection(WebClient.java:235)
at org.apache.activemq.web.WebClient.createSession(WebClient.java:337)
at org.apache.activemq.web.WebClient.getSession(WebClient.java:228)
at
org.apache.activemq.web.MessageServletSupport.getDestination(MessageServletSupport.java:318)
at
org.apache.activemq.web.MessageListenerServlet.doPost(MessageListenerServlet.java:144)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:511)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1166)
at org.apache.activemq.web.SessionFilter.doFilter(SessionFilter.java:45)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at
com.google.appengine.api.blobstore.dev.ServeBlobFilter.doFilter(ServeBlobFilter.java:58)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at
com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:43)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at
com.google.appengine.tools.development.StaticFileFilter.doFilter(StaticFileFilter.java:122)
at
org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
at org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:388)
at
org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:216)
at org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:182)
at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:765)
at org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:418)
at
com.google.apphosting.utils.jetty.DevAppEngineWebAppContext.handle(DevAppEngineWebAppContext.java:70)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at
com.google.appengine.tools.development.JettyContainerService$ApiProxyHandler.handle(JettyContainerService.java:351)
at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:152)
at org.mortbay.jetty.Server.handle(Server.java:326)
at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:542)
at
org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:938)
at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:755)
at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:218)
at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
at
org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoint.java:409)
at
org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPool.java:582)


[ERROR] Failed to start ActiveMQ JMS Message Broker. Reason:
java.io.IOException: Invalid JMX broker name: broker1
java.io.IOException: Invalid JMX broker name: broker1
at
org.apache.activemq.util.IOExceptionSupport.create(IOExceptionSupport.java:27)
at
org.apache.activemq.broker.BrokerService.createBrokerObjectName(BrokerService.java:1816)
at
org.apache.activemq.broker.BrokerService.getBrokerObjectName(BrokerService.java:994)
at
org.apache.activemq.broker.BrokerService.startManagementContext(BrokerService.java:1943)
at org.apache.activemq.broker.BrokerService.start(BrokerService.java:458)
at
org.apache.activemq.transport.vm.VMTransportFactory.doComposi

Re: Development mode and Requests(Ajax)

2011-03-16 Thread Thomas Broyer


On Wednesday, March 16, 2011 2:43:02 PM UTC+1, doles wrote:
>
> You are being blocked by sop. Single origin policy. 
>
> To go around u have 3 options.
> 1. Setup a redirect servlet in ur UI app that fetches remote data and 
> serves to client.
>

See http://code.google.com/p/google-web-toolkit/issues/detail?id=3131
 

> 2. Write native js in gwt to dynamically write out a script tag on your 
> HTML. This is like jsonp. 
>

See 
http://google-web-toolkit.googlecode.com/svn/javadoc/latest/com/google/gwt/jsonp/client/package-summary.html
 

> 3. Deploy the online app - ur data source - on your dev environment.
>
…and use the -noserver mode of the DevMode: 
http://code.google.com/webtoolkit/doc/latest/DevGuideCompilingAndDebugging.html#How_do_I_use_my_own_server_in_development_mode_instead_of_GWT's
 
I'd go with option #3 if possible, and option #1 otherwise.

-- 
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: java.lang.ClassCastException: org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation cannot be cast to org.mortbay.util.ajax.Continuation

2011-03-16 Thread Juan Pablo Gardella
What code? Paste here if you want help

Juan

2011/3/16 Ramya 

> Hi,
> I am using GWT 2.2 and trying to integrate it with apache-
> activemq..When I run the code I get the following error..
>
> java.lang.ClassCastException:
> org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation cannot
> be cast to org.mortbay.util.ajax.Continuation
>at
>
> org.mortbay.util.ajax.ContinuationSupport.getContinuation(ContinuationSupport.java:
> 30)
>
>
> Please help!!!
>
> --
> 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.
>
>

-- 
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: Development mode and Requests(Ajax)

2011-03-16 Thread Sachin Dole
You are being blocked by sop. Single origin policy.

To go around u have 3 options.
1. Setup a redirect servlet in ur UI app that fetches remote data and serves
to client.
2. Write native js in gwt to dynamically write out a script tag on your
HTML. This is like jsonp.
3. Deploy the online app - ur data source - on your dev environment.

Hope this helps.

Sachin
On Mar 16, 2011 8:15 AM, "Kari"  wrote:
> Hey all,
>
> I am writing a UI which makes asynchronous calls to a server. That
> server is actually the server on which the UI will be deployed.
> However, since I am in dev-mode my domain is 127.0.0.1: and the
> requests are sent to another domain (online.) Unfortunately, I am
> getting the "Access-Control-Allow-Origin" message and no date.
>
> My guess is that I am missing something since this sounds like a
> typical case but for some reason I haven't found an elegant solution.
> I thought that something like that would be already part of GWT. I
> have found about "add-linker" but it didn't seem to work. In the very
> worst case, how could I do everything locally; would the server code
> and client code have to be on the same port, and how could that be
> done if any different from being on a different domain?
>
> Thanks all
>
> --
> 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.
>

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



java.lang.ClassCastException: org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation cannot be cast to org.mortbay.util.ajax.Continuation

2011-03-16 Thread Ramya
Hi,
 I am using GWT 2.2 and trying to integrate it with apache-
activemq..When I run the code I get the following error..

java.lang.ClassCastException:
org.mortbay.jetty.nio.SelectChannelConnector$RetryContinuation cannot
be cast to org.mortbay.util.ajax.Continuation
at
org.mortbay.util.ajax.ContinuationSupport.getContinuation(ContinuationSupport.java:
30)


Please help!!!

-- 
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: ValueProxy containing EntityProxy

2011-03-16 Thread Martín
i have the same problem, but the solution that i have found is:

// This method goes on the entity
public String getValue(){
   return this.pk.getValue(); // the primary key is my ValueProxy
variable
}

and delare:

public String getValue()
on the proxy entity

i´m very new on this framework, if someone have a better answer,
please show us.


On 16 mar, 05:51, fclaeys  wrote:
> Hello,
>
>     I use RequestFactory for communication with the server, in one
> case, I have to call the request with a ValueProxy containing some
> EntityProxy, but when I retrieve the object corresponding to the ValueProxy
> on the server, the fields for EntityProxy are null.
>
> Is it possible to use ValueProxy this way?
>
> Thanks in advance.

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



Development mode and Requests(Ajax)

2011-03-16 Thread Kari
Hey all,

I am writing a UI which makes asynchronous calls to a server. That
server is actually the server on which the UI will be deployed.
However, since I am in dev-mode my domain is 127.0.0.1: and the
requests are sent to another domain (online.) Unfortunately, I am
getting the "Access-Control-Allow-Origin" message and no date.

My guess is that I am missing something since this sounds like a
typical case but for some reason I haven't found an elegant solution.
I thought that something like that would be already part of GWT. I
have found about "add-linker" but it didn't seem to work. In the very
worst case, how could I do everything locally; would the server code
and client code have to be on the same port, and how could that be
done if any different from being on a different domain?

Thanks all

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



Future of AbstractScrollTable in Incubator and EnterpriseCellTable functionality

2011-03-16 Thread Bappy
Hi there,

I currently use AbstractScrollTable from the incubator. I'm aware that
the incubator won't be maintained in future so obviously I'd like to
move away from using it in my implementation. I've heard this
EnterpriseCellTable will appear at some point, will this provide the
same functionality? Basically I need a scrolling table widget that
supports fixed headers, sorting etc (not too fussed about paging!).
Before I start implementing this myself I was wondering if this
EnterpriseCellTable will provide this functionality.

Cheers!

Bappy

-- 
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: How to automatically download image to client from server when button clicked

2011-03-16 Thread Juan Pablo Gardella
You can generate an URL to make the report and use
http://google-web-toolkit.googlecode.com/svn/javadoc/2.2/com/google/gwt/user/client/ui/Image.html
.

Juan

2011/3/16 azuniga 

> I am having the user click a button that will generate a report on the
> server side. The report has embedded charts and graphs but since the
> report is generated server side with BIRT libraries, when I return the
> report as an HTML string, the images aren't displayed. What I'm trying
> to do is have those images downloaded to the user's machine
> automatically and then adding an image widget to the panel to display
> the charts and graphs. Is there some sample code I can use to do this?
> I have the server side servlet code I found from and example and
> modified it for my code. I am missing the client side code. Can anyone
> help? Also, I'd appreciate any suggestions or advice if I'm not doing
> this correctly or if there's some better way to do this.
>
> Server side:
> public class FileServlet extends HttpServlet {
>protected void doGet(HttpServletRequest req, HttpServletResponse
> resp) throws
>ServletException, IOException {
>
>// set the responses content type
>resp.setContentType("image/svg+xml");
>
>// set the header for the response
>resp.setHeader("Content-Disposition", "attachment;
> filename=image.svg");
>
>// get the output writer
>PrintWriter out = resp.getWriter();
>
>// display a simple message
>out.println("This is the output content");
>out.println("Probably something dynamic should go in here");
>
>}
> }
>
> Client Side:?
>
> --
> 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.
>
>

-- 
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: GWT in Eclipse class load order

2011-03-16 Thread Juan Pablo Gardella
Can you resolve your problem? If yes, what was the problem?

Juan

2011/3/14 azuniga 

> I was trying to make a small sample to send to you since I can't send
> most of my source code but while trying to recreate the issue with a
> sample application i was unable to. It sounds strange but now the
> program doesn't complain about the missing class, but I do get
> warnings about jar files. I think that its the reason why it now
> works, but I would still like to find out how to solve the class
> loading error, as I may eventually re-encounter it. So I will try and
> get you a project that produces that error. Here are the warnings I
> get:
>
> [WARN] Server class
> 'org.eclipse.birt.report.engine.api.EngineException' could not be
> found in the web app, but was found on the system classpath
>   [WARN] Adding classpath entry 'file:/goesrapps1/birt-runtime-2_6_1/
> ReportEngine/lib/engineapi.jar' to the web app classpath for this
> session
>   For additional info see: file:/goesrapps1/gwt-2.1.0/doc/helpInfo/
> webAppClassPath.html
> [WARN] Server class 'org.eclipse.birt.core.exception.BirtException'
> could not be found in the web app, but was found on the system
> classpath
>   [WARN] Adding classpath entry 'file:/goesrapps1/birt-runtime-2_6_1/
> ReportEngine/lib/coreapi.jar' to the web app classpath for this
> session
>   For additional info see: file:/goesrapps1/gwt-2.1.0/doc/helpInfo/
> webAppClassPath.html
> [WARN] Server class 'org.mozilla.javascript.Context' could not be
> found in the web app, but was found on the system classpath
>   [WARN] Adding classpath entry 'file:/goesrapps1/birt-runtime-2_6_1/
> ReportEngine/lib/js.jar' to the web app classpath for this session
>   For additional info see: file:/goesrapps1/gwt-2.1.0/doc/helpInfo/
> webAppClassPath.html
> [WARN] Server class
> 'org.eclipse.birt.report.engine.api.script.element.IScriptAPIFactory'
> could not be found in the web app, but was found on the system
> classpath
>   [WARN] Adding classpath entry 'file:/goesrapps1/birt-runtime-2_6_1/
> ReportEngine/lib/scriptapi.jar' to the web app classpath for this
> session
>   For additional info see: file:/goesrapps1/gwt-2.1.0/doc/helpInfo/
> webAppClassPath.html
> [WARN] Server class 'com.ibm.icu.text.SimpleDateFormat' could not be
> found in the web app, but was found on the system classpath
>   [WARN] Adding classpath entry 'file:/goesrapps1/gwt-2.1.0/gwt-
> dev.jar' to the web app classpath for this session
>   For additional info see: file:/goesrapps1/gwt-2.1.0/doc/helpInfo/
> webAppClassPath.html
> [WARN] Server class
> 'org.eclipse.birt.report.model.api.DesignFileException' could not be
> found in the web app, but was found on the system classpath
>   [WARN] Adding classpath entry 'file:/goesrapps1/birt-runtime-2_6_1/
> ReportEngine/lib/modelapi.jar' to the web app classpath for this
> session
>   For additional info see: file:/goesrapps1/gwt-2.1.0/doc/helpInfo/
> webAppClassPath.html
> [WARN] Server class
> 'org.eclipse.birt.chart.computation.IChartComputationFactory' could
> not be found in the web app, but was found on the system classpath
>   [WARN] Adding classpath entry 'file:/goesrapps1/birt-runtime-2_6_1/
> ReportEngine/lib/chartengineapi.jar' to the web app classpath for this
> session
>   For additional info see: file:/goesrapps1/gwt-2.1.0/doc/helpInfo/
> webAppClassPath.html
> [WARN] Server class
> 'org.eclipse.birt.chart.reportitem.api.ChartItemUtil' could not be
> found in the web app, but was found on the system classpath
>   [WARN] Adding classpath entry 'file:/goesrapps1/birt-runtime-2_6_1/
> ReportEngine/lib/chartitemapi.jar' to the web app classpath for this
> session
>   For additional info see: file:/goesrapps1/gwt-2.1.0/doc/helpInfo/
> webAppClassPath.html
> [WARN] Server class
> 'org.eclipse.birt.data.engine.api.aggregation.IAggrFunction' could not
> be found in the web app, but was found on the system classpath
>   [WARN] Adding classpath entry 'file:/goesrapps1/birt-runtime-2_6_1/
> ReportEngine/lib/dteapi.jar' to the web app classpath for this session
>   For additional info see: file:/goesrapps1/gwt-2.1.0/doc/helpInfo/
> webAppClassPath.html
> [WARN] Server class 'org.eclipse.emf.ecore.EObject' could not be found
> in the web app, but was found on the system classpath
>   [WARN] Adding classpath entry 'file:/goesrapps1/birt-runtime-2_6_1/
> ReportEngine/lib/org.eclipse.emf.ecore_2.6.1.v20100914-1218.jar' to
> the web app classpath for this session
>   For additional info see: file:/goesrapps1/gwt-2.1.0/doc/helpInfo/
> webAppClassPath.html
> [WARN] Server class 'org.eclipse.emf.common.notify.Notifier' could not
> be found in the web app, but was found on the system classpath
>   [WARN] Adding classpath entry 'file:/goesrapps1/birt-runtime-2_6_1/
> ReportEngine/lib/org.eclipse.emf.common_2.6.0.v20100914-1218.jar' to
> the web app classpath for this session
>   For additional info see: file:/goesrapps1/gwt-2.1.0/doc/helpInfo/
> webAppClassPath.html
> [WARN] Server class

How to automatically download image to client from server when button clicked

2011-03-16 Thread azuniga
I am having the user click a button that will generate a report on the
server side. The report has embedded charts and graphs but since the
report is generated server side with BIRT libraries, when I return the
report as an HTML string, the images aren't displayed. What I'm trying
to do is have those images downloaded to the user's machine
automatically and then adding an image widget to the panel to display
the charts and graphs. Is there some sample code I can use to do this?
I have the server side servlet code I found from and example and
modified it for my code. I am missing the client side code. Can anyone
help? Also, I'd appreciate any suggestions or advice if I'm not doing
this correctly or if there's some better way to do this.

Server side:
public class FileServlet extends HttpServlet {
protected void doGet(HttpServletRequest req, HttpServletResponse
resp) throws
ServletException, IOException {

// set the responses content type
resp.setContentType("image/svg+xml");

// set the header for the response
resp.setHeader("Content-Disposition", "attachment;
filename=image.svg");

// get the output writer
PrintWriter out = resp.getWriter();

// display a simple message
out.println("This is the output content");
out.println("Probably something dynamic should go in here");

}
}

Client Side:?

-- 
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: GWT1.7 --> GWT 2.X; Browser dependent error with hashmap

2011-03-16 Thread Panke
I filed an bugreport and later discovered a similar one [1].
The workaround described there works for me, too.


[1] http://code.google.com/p/google-web-toolkit/issues/detail?id=4086

-- 
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: ValueProxy containing EntityProxy

2011-03-16 Thread Jake Wharton
Use .with(...) to retrieve relationships.

See: 
http://code.google.com/webtoolkit/doc/latest/DevGuideRequestFactory.html#relationships

-- 
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: empty "ghost" place token getting created

2011-03-16 Thread Christopher
I figured it out - I was using a Hyperlink widget without having set
the targetHistoryToken. I also had a click handler for the widget that
attempted going to the place; which it did. However because there was
no targetHistoryToken the default place was being navigated to after.

My link now looks like:

http://groups.google.com/group/google-web-toolkit?hl=en.



Re: empty "ghost" place token getting created

2011-03-16 Thread Christopher
I'm getting this very same issue. Any pointers?

-- 
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: EditorDriver.setViolations in 2.3 release branch doesn't work as expected

2011-03-16 Thread Marcin Misiewicz
I post the new issue regarding to editorDriver.setViolations 
http://code.google.com/p/google-web-toolkit/issues/detail?id=6153

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



ValueProxy containing EntityProxy

2011-03-16 Thread fclaeys
Hello,

I use RequestFactory for communication with the server, in one 
case, I have to call the request with a ValueProxy containing some 
EntityProxy, but when I retrieve the object corresponding to the ValueProxy 
on the server, the fields for EntityProxy are null.

Is it possible to use ValueProxy this way?


Thanks in advance.

-- 
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: empty "ghost" place token getting created

2011-03-16 Thread Christopher
Ditto - same issue exactly - how frustrating. Is anyone able to shed
light on this?

-- 
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: Compiled GWT JS size > handwritten JS size?

2011-03-16 Thread ss.require
Thanks for replys. Actually, I'm developing an application with a
design that is the same as Facebook has. This design implies that all
pages in the app are loaded by AJAX not by a traditional url-site
navigation and the application should have js-file for every
pagelet(some unique area of functionality) that is lazily loaded
during site navigation. At the beginning I thought to create a single
module and load additional pagelets through "code splitting" feature.
But now I think this is not the case for GWT due to 2 reasons:
1)Pagelet usually has a simple functionality(10-20 lines of JS) but an
exclusive fragment that GWT generates for such a pagelet is much
larger about 15Kb due to JRE's base and maybe something else.
2)I think a compiler will not be able to generate clever 100 js small
files as I can by handwritten js-files.
3)Every pagelet should be loaded from a single module. It's also a
problem how to navigate to 100 pagelets from a single module.

The speed of page's loading is very important, every pagelet should be
loaded instantly, I can't wait while a big js load.

So now I think to use a single GWT module for some very interactive
components(pagelets) but use simple handwritten js for simple pagelets
due to gwt's performance overhead.

What do you think about that? Any ideas?

On Mar 15, 10:34 pm, nino ekambi  wrote:
> Thanks for mentioning Sumwire. I did not know about that application. I
> allways been interested in those types of applications to see what i can
> "steal"  from them :)
>
> Regards,
>
> Alain
>
> 2011/3/15 David Chandler 
>
>
>
>
>
>
>
>
>
> > Thanks for the vote of confidence, Dal. In fairness, there are some cases
> > where you wouldn't use GWT, and writing a static Web page with NO Javascript
> > is certainly one of them. GWT is intended for rich Internet applications.
>
> > GWT incurs some overhead just to bring in the base JRE, so if all you need
> > is a few lines of Javascript, there's not a compelling case for GWT. But I
> > know of an app that started with a few lines and grew to 3000 lines of
> > script, at which point the developers wished they'd used GWT even for the
> > few lines.
>
> > Apps that benefit the most from GWT are those that could not conceivably be
> > written without it. One example that comes to mind is Sumwise, which
> > implements a complete financial modeling language and spreadsheet in the
> > browser. Large projects / teams also get the most from GWT due to the
> > improved manageability of a strongly typed language vs. a dynamic language.
>
> > /dmc
>
> > On Tue, Mar 15, 2011 at 3:51 PM, Gal Dolber  wrote:
>
> >> I have been working with gwt for more than 2 years now and I can't imagine
> >> a page where I won't use gwt.
>
> >> If you really try you may find some cases where handwritten js produce a
> >> smaller page than gwt. It is also probable than in the small size of that
> >> cases the difference won't matter. But I doubt you will get a better
> >> performance from js than gwt.
>
> >> On Tue, Mar 15, 2011 at 4:27 PM, ss.require  wrote:
>
> >>> Let's take a common non very interactive page, like a common
> >>> "Wikipedia" page. For such pages, where there is not a lot of
> >>> javascript: Compiled GWT JS size > handwritten JS size and it's more
> >>> optimal(performance overhead) to use simple JavaScript than GWT
>
> >>> On the other hand, if web-page is very interactive, like Gmail, then :
> >>> Compiled GWT JS size < handwritten JS size due to GWT's optimizations.
> >>> In such cases it's more optimal(performance overhead) to use GWT than
> >>> JavaScript.
>
> >>> In general, It would be a mistake to use GWT for Wikipedia due to
> >>> performance overhead. Am i right?
>
> >>> --
> >>> 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.
>
> >> --
> >> Guit: Elegant, beautiful, modular and *production ready* gwt applications.
>
> >>http://code.google.com/p/guit/
>
> >>  --
> >> 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.
>
> > --
> > David Chandler
> > Developer Programs Engineer, Google Web Toolkit
> > w:http://code.google.com/
> > b:http://googlewebtoolkit.blogspot.com/
> > t: @googledevtools
>
> > --
> > You received this message because you are subscribed to the Google Groups
> > "Google Web Toolkit" group.
> > To post to this group, send ema