Re: How to send data back to client side code?

2010-08-13 Thread Sree ...
Modified the Employee.java as below *public class Employee implements IsSerializable{* then moved the Employee.java to shared package. [eclipse updated all references well] Now when I GWT to compile its saying Compiling module project.xxx Validating newly compiled units [ERROR] Errors i

and instead of in RichTextAreaImplStandard

2010-08-13 Thread Ali
Hi Sorry if already asked, I didn't find it. Is there any way to make RichTextAreaImplStandard to add and instead of . I looked at RichTextAreaImplStandard but it sends commands deep down into JS. Do you have any idea?! Best wishes, Ali -- You received this message because you are subscrib

and instead of

2010-08-13 Thread Ali
Hi Sorry if already asked, I didn't find it. Is there any way to make RichTextAreaImplStandard to add and instead of . I looked at RichTextAreaImplStandard but it sends commands deep down into JS. Do you have any idea?! Best wishes, Ali -- You received this message because you are subscrib

Re: UiBinder xml definition reference: HELP...

2010-08-13 Thread Prashant Hegde
Not sure if there is such a documentation, however, one rule is that whenever a widget has a method say "setName" ( set methods), you can use name="" in the UIBinder XML file for that widget. May be someone else can give a better answer. Prashant On 13-08-2010 23:34, Thamizharasu S wrote: H

Re: SuggestBox + UiBinder question...

2010-08-13 Thread Prashant Hegde
The way I normally do this: In the Corresponding view class, @UiField(provided = true)SuggestBox suggestbox; In the constructor, before the initWidget() call, instantiate the suggestbox the way you want it. Prashant On 14-08-2010 00:13, Thamizharasu S wrote: Hi All, I have a problem

Re: How to send data back to client side code?

2010-08-13 Thread Sree ...
okey... thanks alot guys i ll try to make those changes and will update here also thx for so quick responses.. am loving it On Sat, Aug 14, 2010 at 2:31 AM, cokol wrote: > hi the problem is that gwt does not have source of your Employee > class, since you have put it into the server package

Re: MVP suggestion

2010-08-13 Thread dmen
Thank you, much appreciated :) On Aug 14, 2:25 am, Thomas Broyer wrote: > On 14 août, 01:07, dmen wrote: > > > Hi, consider a panel that starts by showing a couple of buttons. When > > you press a certain button, the panel expands with a form and an > > anchor link. When you click the link, the

Re: MVP suggestion

2010-08-13 Thread Thomas Broyer
On 14 août, 01:07, dmen wrote: > Hi, consider a panel that starts by showing a couple of buttons. When > you press a certain button, the panel expands with a form and an > anchor link. When you click the link, the panel expands once again > with some html content. The actual business purpose of

MVP suggestion

2010-08-13 Thread dmen
Hi, consider a panel that starts by showing a couple of buttons. When you press a certain button, the panel expands with a form and an anchor link. When you click the link, the panel expands once again with some html content. The actual business purpose of the panel is the form. Everything is code

Re: String.matches() does not work with \p{ASCII}

2010-08-13 Thread Vlad
Thanks, with the hexidecimal range 00, 7F it works. On 13 авг, 01:17, cokol wrote: > as you probably know, regex is belongs to that cases not fully > compatible between java and javascript, and in dev mode your GWT > engine uses real JDK therefore it works, whereas after compilation > your matche

Re: question about code splitting

2010-08-13 Thread Kevin Qiu
My intuition is that it won't affect your code split. It's easy to verify though. Just compile gwt with -soyc (story of your compile) and it will give you a nice summary of what classes are loaded initially and what are left over from the code split. On Fri, Aug 13, 2010 at 5:08 PM, cokol wrote:

Re: question about code splitting

2010-08-13 Thread cokol
to load code asynchronously does not make sence unless not loaded by "demand", as a sample: if you have login-screen as a first screen, and after login you want to initialize the application,here you would benefit from splitting the code, one part to handle login and the other for entire applicati

Re: How to send data back to client side code?

2010-08-13 Thread cokol
hi the problem is that gwt does not have source of your Employee class, since you have put it into the server package, you always have 3 packages to handle (as per default): client server shared everything under "client" becomes javascript after compilation and is not aware of anything contained

Re: How to send data back to client side code?

2010-08-13 Thread Greg Dougherty
What do you mean by "send data"? Do you mean: the client makes a call, and I used to return a String (which worked), now I try to return a List, and it doesn't work? If so, your problem is probably that you have only declared Employee on the Server side, which makes it impossible for your client

Re: UiBinder Performance

2010-08-13 Thread Falcon
It sounds like the Cell widgets (specifically CellTable in this case) would be perfect for you; unfortunately those are coming in 2.1 (although I suppose you could grab 2.1 M2 and try that). See http://stackoverflow.com/questions/2891803/how-to-use-gwt-2-1-data-presentation-widgets for some infor

UiBinder Performance

2010-08-13 Thread Adam
I have been looking over the ColumnDefinition code from http://code.google.com/webtoolkit/articles/mvp-architecture-2.html "MVP Architecture 2". In particular the "render" method. We have considered using UiBinder in the render portions. The concern some of us have are the performance implicatio

Re: Does these books still compatible with the new GWT ?

2010-08-13 Thread FKereki
My own ESSENTIAL GWT is now out, and is geared towards GWT 2, so I think it will suit you. You can find it at Amazon.com and other online bookshops. Best regards, F.Kereki -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this gr

question about code splitting

2010-08-13 Thread Joe Hudson
Hi, I'm wondering if I still get the benefits from code splitting from the example below: String className = MyClass.getName(); ... GWT.runAsync(new RunAsyncCallback() { onSuccess() { new MyClass(); } onFailuare() { ... } }); Basically, I am wondering that since I referenced My

Re: How to send data back to client side code?

2010-08-13 Thread lineman78
Any object referenced in client-side code must be in a client package. The new version of the GWT plugin for eclipse added a shared package suffix, but it is added to the gwt.xml as a client side package. On Aug 13, 11:39 am, "Sree ..." wrote: > Am not sure this belongs to GWT or GAE or both ...

Re: Script tag dynamic loading

2010-08-13 Thread lineman78
I have run into this problem with a few scripts that rely on the document load event, maybe look into manually firing it. I think I tried dynamic loading of the maps library before and gave up, but I didn't try very hard to get it working. On Aug 13, 5:57 am, Vincent COROLLEUR wrote: > I tried t

Re: Detecting Network connection loss - com.google.gwt.user.client.rpc.InvocationException

2010-08-13 Thread djd
The timeout mechanism can be found here http://www.google.com/codesearch/p?hl=en#jxxBHps6Oxg/trunk/kiyaa/src/main/java/com/habitsoft/kiyaa/util/AsyncCallbackWithTimeout.java It's a bit complicated (otherwise you would have to overwrite the default generators of GWT-RPC). I would personally go for

Re: Script tag dynamic loading

2010-08-13 Thread cokol
maybe u can expose me your eclipse project and I can try to resolve it locally...? if u dont mind On 13 Aug., 13:57, Vincent COROLLEUR wrote: > I tried to load the script on a button event and it's the same... > > Really annoying -- You received this message because you are subscribed to the Go

Re: How do I set the border around elements in a DockLayoutPanel?

2010-08-13 Thread cokol
then do the same - use the decoratorpanel as container for elements where you want to have corners, u might also want to create a composite having decoratorpanel wrapping elements... On 13 Aug., 19:07, Greg Dougherty wrote: > Thanks, but it's not the panel I want to decorate, it's the elements >

SuggestBox + UiBinder question...

2010-08-13 Thread Thamizharasu S
Hi All, I have a problem with SuggestBox with UiBinder. I have created a SuggestBox control using ui.xml binder file. How could I define the 'MultiWordSuggestOracle' object with my suggestBox object which is defined in the xml. Any idea? - Thamizharasu S -- You received this message because yo

[no subject]

2010-08-13 Thread Olindo Pindaro
-- Olindo Pindaro http://www.linkedin.com/in/olindopindaro +39 3939455830 -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, send email

Re: Expose URL as REST service how?

2010-08-13 Thread Thamizharasu S
Hi, Thanks for the quick answer. I want to deply my GWT app in GAE. is there any document for reference or could you help me on this to achieve? - Thamizharasu S On Aug 13, 10:51 pm, lineman78 wrote: > REST is provided by most app servers in the form of a reference > implementation of JSR-311.

UiBinder xml definition reference: HELP...

2010-08-13 Thread Thamizharasu S
Hi All, Where can I find the full list of property reference for UiBinder controls in xml file? For example, any GWT elements can be bind with UiBinder. Sometimes it is confusing to identify the correct property name and some available values. Can any one point to identify it for my reference?

Re: Expose URL as REST service how?

2010-08-13 Thread lineman78
REST is provided by most app servers in the form of a reference implementation of JSR-311. Glassfish uses Jersey, JBoss RESTEasy. Most app servers bundle support in one way or another now. Some GWT people have found RESTlet easy to use also. The Jersey users manual is very in-depth and ought to

Question about GwtEvent and setting source

2010-08-13 Thread Christian Goudreau
I wanted to set the source of my custom event fired on our eventBus and ended up digging inside handlerManager just to find out that we just can't set the source. Source is package private AND setted uppon creation of HandlerManger. Common pratice for an EventBus is to extends HandlerManager... an

How to send data back to client side code?

2010-08-13 Thread Sree ...
Am not sure this belongs to GWT or GAE or both ... So here's my problem... I have one client/Example.java [contains all GWT code] calls a methods on server/SomeServiceImpl.java [Contains code to talk to dataStore] Wat server/SomeServiceImpl.java does is Featch data from Employee.Java [this

Expose URL as REST service how?

2010-08-13 Thread Thamizharasu S
Hi All, I am evaluating GWT for my new project which is going to be started shortly. I have a requirement with REST support. For example, I have a list of users. If I click on any one the user, the details of the user will be shown in a different view. I need to expose this URL, http://sample.com

Re: How do I set the border around elements in a DockLayoutPanel?

2010-08-13 Thread Greg Dougherty
Thanks, but it's not the panel I want to decorate, it's the elements within the panel (i.e. I want to put a box around Center). On Aug 13, 6:08 am, cokol wrote: > wrap you panel into DecoratorPanel then you can use 9box round corners > > On 12 Aug., 20:50, Greg Dougherty wrote: > > > With a Dock

The host html alignment always overriding the the alignment of the horizontal panel

2010-08-13 Thread Leung
Hi, The following is part of my host file. HorizontalPanel hpanel = new HorizontalPanel(); hpanel.add(button); hpanel.setHorizontalAlignment(ALIGN_CENTER); Root.get("main").add(hpanel); The alignment is always dominating by the setting of the html host file; So from above, the button in h

Re: Request Factory with Service objects

2010-08-13 Thread Thomas Broyer
On 13 août, 18:07, tc wrote: > How does the new RequestFactory work with with actual Service Objects > on the server.  Not everything is a simple CRUD operation and you > definitely do not want to through everything into the entity object. > Does RequestFactory work with service objects?  If so c

Acris Security and App Engine

2010-08-13 Thread spierce7
I've been trying to find out more information about sessions in GWT, as I couldn't figure out how to get them to work, and something that I stumbled across is Acris, which has a Security implementation. I've been reading about it and I can't find detailed information on how to use maven to setup a

Re: GWT/Tomcat serialization issues during deployment

2010-08-13 Thread duey
Had to get my hands dirty to figure this one out. Here's how I got around these exceptions. 1. First, on the client side. Instead of calling testService.sendTestData(new TestData(), sendTestDataCallback); I did the following: String content = ServiceUtils.marshallTestServiceObject(new

Re: synchronize asynchronous calls?

2010-08-13 Thread Jeff Chimene
On 08/13/2010 09:16 AM, Kevin Qiu wrote: > > Do not put code at //1 or //2 Did my example show that? I don't > think it did. //1 and //2 should be inside the SM. Did you code an > implementation or just do a desk check? > > > The whole point of syncing a series of async calls is to

Re: "MyWebApp is not a GWT project" - message

2010-08-13 Thread Jon_E
Thanks, Kathrin. That worked perfectly. On Aug 13, 6:53 am, Katharina Probst wrote: > You need to go to the Project Properties (right-click on your project), > under Google, Web Toolkit Settings, and click the button that says "Use > Google Web Toolkit" (same for AppEngine, if you're using it).

Re: synchronize asynchronous calls?

2010-08-13 Thread Kevin Qiu
> > > Do not put code at //1 or //2 Did my example show that? I don't think it > did. //1 and //2 should be inside the SM. Did you code an implementation or > just do a desk check? > The whole point of syncing a series of async calls is to make the flow of execution deterministic. I put print stat

Request Factory with Service objects

2010-08-13 Thread tc
How does the new RequestFactory work with with actual Service Objects on the server. Not everything is a simple CRUD operation and you definitely do not want to through everything into the entity object. Does RequestFactory work with service objects? If so can someone show a quick example on how

Re: Data presentation widgets

2010-08-13 Thread Paul Stockley
No you don't. I am using them with 2.1 M2 without RequestFactory On Aug 13, 9:36 am, Arthur Kalmenson wrote: > I think that's going to be the case until GWT 2.1 comes out. > > -- > Arthur Kalmenson > > > > On Tue, Aug 10, 2010 at 10:00 AM, tc wrote: > > Do you have to use the RequestFactory / MV

Re: synchronize asynchronous calls?

2010-08-13 Thread Jeff Chimene
On Fri, Aug 13, 2010 at 7:23 AM, Kevin Qiu wrote: > Jeff, > > is it safe to say the skeleton of your method looks like this? > > void execute() { > // 1 > DeferredCommand.addCommand(new IncrementalCommand() { /* state machine > logic as posted above */ } > // 2 > } > > The problem is, Defer

Re: synchronize asynchronous calls?

2010-08-13 Thread Kevin Qiu
cokol, could you elaborate on the timer idea? namely, how do you block the current executing method using a timer? I'm sure I missed your point, but just for argument's sake, I cooked up this method: public void execute() { Timer blocker = new Timer() { public void run() { while (curr

Re: synchronize asynchronous calls?

2010-08-13 Thread Kevin Qiu
Jeff, is it safe to say the skeleton of your method looks like this? void execute() { // 1 DeferredCommand.addCommand(new IncrementalCommand() { /* state machine logic as posted above */ } // 2 } The problem is, DeferredCommand isn't blocking, so after DeferredCommand.addCommand(...), what

Re: Debugging Maven GWT project with GlassFish

2010-08-13 Thread Thomas Broyer
On 13 août, 14:21, Sergey Ponomarev wrote: > > You'd have to start your GlassFish server (don't know how to do it > > with Maven, but you probably know) and then run (gwt:run or gwt:debug) > > using the noServer configuration > > option:http://mojo.codehaus.org/gwt-maven-plugin/run-mojo.html#no

Re: CalendarService application showing total meeting from Google Calendar

2010-08-13 Thread ichi
Fernando, I've already downloaded the right version, but I've already checked each class in which the compiler said the method is undefined, such as: getEventEntries (in Calendar Service http://code.google.com/intl/fr/apis/gdata/javadoc/com/google/gdata/client/calendar/CalendarService.html I also d

Re: "MyWebApp is not a GWT project" - message

2010-08-13 Thread Katharina Probst
You need to go to the Project Properties (right-click on your project), under Google, Web Toolkit Settings, and click the button that says "Use Google Web Toolkit" (same for AppEngine, if you're using it). Also, make sure that under Web Application, the button that says "This project has a WAR dire

Re: showing all the elements from SuggestOracle in suggestionBox

2010-08-13 Thread ctasada
You can send me a private message attaching the source of your class, so I can take a look. I'm using it in my code without problems. On Aug 13, 6:33 am, aditya sanas <007aditya.b...@gmail.com> wrote: > Hello, > > yes you are right we dont have direct access to SuggestBox Popups. > > I have alrea

Re: Data presentation widgets

2010-08-13 Thread Arthur Kalmenson
I think that's going to be the case until GWT 2.1 comes out. -- Arthur Kalmenson On Tue, Aug 10, 2010 at 10:00 AM, tc wrote: > Do you have to use the RequestFactory / MVP pieces of GWT 2.1 in order > to use the Data Presentation Widgets? My guess is no.  I would like to > use all of it but it

Re: why we probably won't use GWT for a large UI project

2010-08-13 Thread Bhaskar
its good... if your company can buy GXT(EX GWT) it would be good... On Tue, Aug 10, 2010 at 1:57 PM, marius.andreiana < marius.andrei...@gmail.com> wrote: > Hi, > > We're working on a large project, which has the back-end is written in > a non-Java technology, with REST APIs. We're looking for a

Re: com.google.gwt.user.client.rpc.IncompatibleRemoteServiceException: java.lang.IllegalAccessException: Private fields can not be set on JRE classes

2010-08-13 Thread Vik
Hie I am passing Throwable as parameter in the method. Any clue on what is wrong please... Thankx and Regards Vik Founder www.sakshum.com www.sakshum.blogspot.com On Fri, Aug 6, 2010 at 9:09 PM, Vik wrote: > Hie > > On a rpc call i am getting following exception. please advise what is going

ApplicationCreator

2010-08-13 Thread Vijay
Hi, I had my old application namly FirstGWT. I deleted it. Then created another application. when i run the new one I found the error : "Launch configuration ApplicationCreator references non-existing project FirstGWT." How can i fix it? -- You received this message because you are subscribed

Re: Clicking HyperLink Twice or more...

2010-08-13 Thread Sree ...
Looks like there is some problem with latests GWT upgrade!! or am I doing it wrong? This happens for me also. I use buttons in my page. First click on the buttons works, 2nd click donesn't and again 3rd click works. Its used to work perfectly until i updated my GWT to latest version. I haven't cha

Using UI Binder

2010-08-13 Thread $ a r j i t h Pullithodi
HI All, I am a beginner in GWT, I was trying to develop an application through UI Binder way. but it found really difficult to integrate designers (html) code to gwt widgets. is it possible to use g:widgets inside html tag and vice versa?. I can't use complete html as ui binder xml since its o

"MyWebApp is not a GWT project" - message

2010-08-13 Thread Jon_E
Hi, How do I launch a project in debug mode in Eclipse that was created with the command line tool? - - - Background - - - - Following the tutorial, I created an application using the command line: webAppCreator -out MyWebApp com.mycompany.mywebapp.MyWebApp Next, I installed the Eclipse plug i

Re: Deploy static content in Webserver and Dynamic in App server

2010-08-13 Thread Jason M
Did you ever figure out how to do this? I'm needing to do the same thing. On Jul 13, 11:28 pm, my wrote: > Thanks for your response. > > Here is more details. > > Yes I am in the same domain & same network too.  Here is the history > in the past.. I used to bundle the .js, images, html & css and

Re: why we probably won't use GWT for a large UI project

2010-08-13 Thread Rob
On Aug 12, 6:47 pm, Kevin Qiu wrote: > Totally agree with lineman78 on the use of SmartGWT. We used SmartGWT to > build a prototype, only to find out that mixing Js library wrapper with > native GWT is bad. It's super easy in SmartGWT if you're building a simple > CRUD application, but anything be

Re: Classloader problem

2010-08-13 Thread hbf
I added the two libraries to the "Classpath" tab (under "Bootstrap Entries") and this works like a charm! Thanks for your help, cokol and Thomas! Kaspar On Aug 13, 12:40 pm, cokol wrote: > hi, when you put something into WEB-INF/lib folder, the library is > loaded to the classpath of the servlet

Re: Debugging Maven GWT project with GlassFish

2010-08-13 Thread Sergey Ponomarev
> You'd have to start your GlassFish server (don't know how to do it > with Maven, but you probably know) and then run (gwt:run or gwt:debug) > using the noServer configuration > option:http://mojo.codehaus.org/gwt-maven-plugin/run-mojo.html#noServer mvn gwt:debug -DnoServer=true -DrunTarget=wel

Re: GWT and Map dynamic loading

2010-08-13 Thread Vincent COROLLEUR
Hello, I still have the problem. I tried to load other scripts and it works. There is a mechanism from JS maps API that i may not understand or know. I should not be the only guy trying this... Regards, Vincent -- You received this message because you are subscribed to the Google Groups "Go

Re: Script tag dynamic loading

2010-08-13 Thread Vincent COROLLEUR
I tried to load the script on a button event and it's the same... Really annoying -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-tool...@googlegroups.com. To unsubscribe from this group, se

Re: Switching a class for precompile

2010-08-13 Thread cokol
yes, but I forgot to say, that this only applies to JRE emulation set of classes provided by GWT, so like java.lang.BigInteger and such for your custom classes it works like expected. On 12 Aug., 17:40, Evan Ruff wrote: > Cokol, > > Thanks for the response, that's exactly what I'm trying to accom

Re: Detecting Network connection loss - com.google.gwt.user.client.rpc.InvocationException

2010-08-13 Thread cokol
exactly, like if(caught instanceof RequestTimeoutException){ //timeout } but u have explicetely to set timeout to support it, since as per default the timeout is set to 0 (no timeouts) On 12 Aug., 17:12, Jeff Chimene wrote: > On 08/11/2010 06:12 PM, nokostar wrote: > > > What is the best way o

Re: Reading a local file

2010-08-13 Thread salk31
If you really must keep it on the client side you could use a signed Java applet but that is quite a lot of work and various hassles with different platforms. JS/Applet communication works pretty well. -- You received this message because you are subscribed to the Google Groups "Google Web Toolk

Re: String.matches() does not work with \p{ASCII}

2010-08-13 Thread cokol
hard to say, its up to the engine implementing regex, if you want to check for ascii code of each character you gonnamake a loop like function isAscii(str){ for(i=0;i127)return false; } return true; } when making regex its like a touring machine which scans the character applied to the pattern,

Re: How do I set the border around elements in a DockLayoutPanel?

2010-08-13 Thread cokol
wrap you panel into DecoratorPanel then you can use 9box round corners On 12 Aug., 20:50, Greg Dougherty wrote: > With a DockPanel I just create a CSS style, and apply it to the > Panel.  I did that with a DockLayoutPanel, and nothing seemed to > happen.  I searched the archives of this group for

Re: synchronize asynchronous calls?

2010-08-13 Thread cokol
write a class which can be used like this: Executor.async(cmd1).async(cmd2).async(cmd3).sync(cmd4) it gonna start cmd1..cmd3 and when all are finished it gonna start cmd4 and go for observer pattern everytime an async call finishes it checks if it was the last one, if so it triggers cmd4, being

Re: Script tag dynamic loading

2010-08-13 Thread cokol
..but watch out, in case you have a code depending on A.js you cannot run it directly after loadJS("A.js") - it will not work, since loadJS() is always asynchronously loaded, meaning you code is executed whilst A.js has not been loaded yet, you have to work with callbacks to proceed executing AFTER

Re: Debugging Maven GWT project with GlassFish

2010-08-13 Thread Thomas Broyer
On 13 août, 10:20, Sergey Ponomarev wrote: > Hello. > > Could you please tell me is it possible to configure maven-gwt-plugin > so it will use existing GlassFish for hosted mode but not the bundled > Jetty or Tomcat. I've read there is a "server" option but what should > I put there? Or may be so

Re: Script tag dynamic loading

2010-08-13 Thread cokol
cross domain policy does not apply for some certain resources like javascript or images, so this is not the problem, you have to append the script element to the HEAD element, not to the BODY On 13 Aug., 11:56, Vincent COROLLEUR wrote: > Hello, > > I still have the problem. I tried to load other

Re: Classloader problem

2010-08-13 Thread cokol
hi, when you put something into WEB-INF/lib folder, the library is loaded to the classpath of the servlet container regardless if its on eclipse classpath or not. if you dont want to roll out the library with the war file or it resides somewhere else than WEB-INF/lib - you can still add the jar to

Re: Classloader problem

2010-08-13 Thread Thomas Broyer
On 13 août, 12:00, hbf wrote: > Hi everybody, > > I am using the Apache Tika libraries [1] in my GWT project. All JUnit > test pass fine but in hosted mode, Tika does not find any parsers. > I've checked the source and see that they use the ServiceRegistry [2] > to find parsers, and in hosted mod

Re: GWT security

2010-08-13 Thread Peter Simun
Hi Greg, why is more acceptable for you, that user will see whole application (also the screen which is not allowed to use) rather than ONLY screens that he is able to use. Your argument becomes to me little bit funny: "tech support and UI nightmare". If you have correctly setup user permissions,

Classloader problem

2010-08-13 Thread hbf
Hi everybody, I am using the Apache Tika libraries [1] in my GWT project. All JUnit test pass fine but in hosted mode, Tika does not find any parsers. I've checked the source and see that they use the ServiceRegistry [2] to find parsers, and in hosted mode, none are found. When I put the Tika JAR

Rebind result MyMessages_ could not be found

2010-08-13 Thread Thomas Van Driessche
Hi All, I have in my client package a MyMessage interface that extends from com.google.gwt.i18n.client.Messages and eu.maydu.gwt.validation.client.i18n.StandardValidationMessages. Now whe i do a mvn gwt:compile on the project he sais [INFO] [ERROR] Line 10: Rebind result 'be.roularta.jobcv

Re: Script tag dynamic loading

2010-08-13 Thread Vincent COROLLEUR
Hello, I still have the problem. I tried to load other scripts and it works. There is a mechanism from JS maps API that i may not understand or know. I should not be the only guy trying this... Regards, Vincent -- You received this message because you are subscribed to the Google Groups "Go

Using TabLayoutPanel with UiBinder : custom header

2010-08-13 Thread magat
Hi, I'm using TablLayoutPanel with UiBinder, like this : Header1 Content Header2 Content2 And it works great :) But, for some reason I need the content of the header to be a widget (so I can

Re: Scraping website with GWT

2010-08-13 Thread Henrique Viecili
it is possible but you will be blocked or get a security warning if you access a URL outside your site. You might wonder 'why would I scrap my own site?', well ask my boss that want to index all pages from our intranet. If you use this code to get the content public native String getIFRAMEBodyCont

GWT Maven Plugin + codeServerPort

2010-08-13 Thread Thalles
Hi guys, I'm looking for a possibility to change the codeServerPort while using the GWT Maven Plugin (http://mojo.codehaus.org/gwt-maven-plugin/ index.html) to develop a GWT application. I've searched the web, but I couldn't find anything that would solve my problem. In the documentation of the p

Debugging Maven GWT project with GlassFish

2010-08-13 Thread Sergey Ponomarev
Hello. Could you please tell me is it possible to configure maven-gwt-plugin so it will use existing GlassFish for hosted mode but not the bundled Jetty or Tomcat. I've read there is a "server" option but what should I put there? Or may be some other way? Thank you. -- You received this message

Re: Images only show sometimes

2010-08-13 Thread George Georgovassilis
Hello GKotta, That should happen only with an IE browser - I found that it doesn't load images when you add more than a couple DOM elements in one bunch. Basically there are three workarounds: 1. Use a DeferredCommand to add one image at a time 2. Preconstruct an array of images and re-assign the