Re: Performance Tip for IE browsers : Java garbage collection is NOT Javascript garbage Collection

2011-09-26 Thread ben fenster
so just to understand just replace anonymous in call callback with a
variable will fix the problem ?
instead of:
call(new callback(){});

use :
callback c = new callback(){};
call(c);

?



On Sep 26, 1:29 pm, Rokesh rjan...@gmail.com wrote:
 Hi All,

 I've been working on GWT for a while now and noticed something important and
 peculiar.
 In GWT you code in Java and almost automatically assume Java garbage
 collection (because that's how you code).

 In this code 
 sample:http://code.google.com/webtoolkit/doc/latest/DevGuideServerCommunicat...
 you'll see that the callback is created like the code snippet below. I
 imagine that every GWT project will implement it like this.

 The Use Case: Fill data in the new CellTable widget. The size of the data
 varied from 100 to 600 records.

 If the onSuccess results in a lot of data and this event/callback is invoked
 lots of times (actually 3 to 5 times is enough) , on IE6, IE7,IE8 and IE9
 there will be performance degradation. In other browsers
 like Chrome, Firefox and Safari there is no performance loss noticed.

 After reading Joel Webber's note on Performance, I found out that it's not
 the component (like the CellTable) that causes this behavior,
 but it was the callback creation. It seems that IE doesn't know how to
 garbage collection the callback. So each time this new AsyncCallback is
 performed,
 a memory leak occurred in IE browsers.

 Since the Callback is stateless, we decided to create the callback only once
  (*static *variable) and there was no performance loss anymore.
 After clicking for a while, the performance was the same (even after
 inspecting the results of  some measurement tools).

 This worked for us and even IE6 is blazingly fast. IE9 is now even faster
 that Chrome! No need for Chrome Frame Plugin (some organizations don't allow
 Plugins at all, think about that!)

 Hopefully this tip works for you.

 And Yes we have GWT in production. That company's browser policy is to use
 IE (now on 7, moving to 8). So this had to work or otherwise , it was a huge
 showstopper!

 GWT applications do perform (even in older browsers), just make sure that
 critical parts of your code are carefully reviewed (especially on the
 new).

  AsyncCallback callback = new AsyncCallback() {
     public void onSuccess(Void result) {
       // do some UI stuff to show success
     }

     public void onFailure(Throwable caught) {
       // do some UI stuff to show failure
     }
   };

   // (3) Make the call...

-- 
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 and nokia phones

2010-09-04 Thread ben fenster
???

On 3 ספטמבר, 13:38, ben fenster fenster@gmail.com wrote:
 i wrote a gwt app and it runs on all major desktop browsers and even
 on the iphone
 but it wont run on any nokia phones in nokia phone i see a white empty
 screen

-- 
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 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 and nokia phones

2010-09-03 Thread ben fenster
i wrote a gwt app and it runs on all major desktop browsers and even
on the iphone
but it wont run on any nokia phones in nokia phone i see a white empty
screen

-- 
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 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: compile report

2010-08-15 Thread ben fenster
thank u  :)


On 12 אוגוסט, 18:14, Katharina Probst kpro...@google.com wrote:
 You can just add this to your .gwt.xml:

 set-property name=user.agent value=gecko1_8/ (or whatever user agent
 you want).

 You can also define a new module for separate compilation with
 -compileReport.  This is described
 herehttp://code.google.com/webtoolkit/doc/latest/DevGuideOrganizingProjec...
 .

 kathrin

 On Thu, Aug 12, 2010 at 8:06 AM, ben fenster fenster@gmail.com wrote:
  can anyone tell me how to create a compile report for just one
  permutation

  On 11 אוגוסט, 18:50, Katharina Probst kpro...@google.com wrote:
   It's possible that it's not stuck, but actually building a compile report
   for all your 42 permutations (you can look into your extra directory and
  see
   if it's happily outputting stuff there).  That could take a while, as
  it's
   going through all kinds of compilation information and building up a lot
  of
   html files.

   Unless you are specifically interested in comparing all your 42 compile
   reports (that would be a bit tedious...), you will probably want to
  restrict
   your compilation with compile reports to some key permutations, e.g., one
   per browser family.

   kathrin

   On Wed, Aug 11, 2010 at 12:16 PM, cokol eplisc...@googlemail.com
  wrote:
please post your gwt.xml module descriptor

On 11 Aug., 18:03, ben fenster fenster@gmail.com wrote:
 ?

 On 11 אוגוסט, 15:21, ben fenster fenster@gmail.com wrote:

  can anyone tell me why when i compile without compile report flag
  the
  compilation finishes ok and when i use the flag the compilation
  gets
  stuck at the end after all the permutation is finished here is the
  report:
     Compiling 42 permutations
        Compiling permutation 0...
        Compiling permutation 1...
        Compiling permutation 2...
        Compiling permutation 3...
        Compiling permutation 4...
        Compiling permutation 5...
        Compiling permutation 6...
        Compiling permutation 7...
        Compiling permutation 8...
        Compiling permutation 9...
        Compiling permutation 10...
        Compiling permutation 11...
        Compiling permutation 12...
        Compiling permutation 13...
        Compiling permutation 14...
        Compiling permutation 15...
        Compiling permutation 16...
        Compiling permutation 17...
        Compiling permutation 18...
        Compiling permutation 19...
        Compiling permutation 20...
        Compiling permutation 21...
        Compiling permutation 22...
        Compiling permutation 23...
        Compiling permutation 24...
        Compiling permutation 25...
        Compiling permutation 26...
        Compiling permutation 27...
        Compiling permutation 28...
        Compiling permutation 29...
        Compiling permutation 30...
        Compiling permutation 31...
        Compiling permutation 32...
        Compiling permutation 33...
        Compiling permutation 34...
        Compiling permutation 35...
        Compiling permutation 36...
        Compiling permutation 37...
        Compiling permutation 38...
        Compiling permutation 39...
        Compiling permutation 40...
        Compiling permutation 41...
     Compile of permutations succeeded
  at this point it is stuck and the java process takes 600mb
  pls 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-tool...@googlegroups.com.
To unsubscribe from this group, send email to
google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@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-tool...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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: compile report

2010-08-12 Thread ben fenster
thats sounds good how can i do that ?

On 11 אוגוסט, 18:50, Katharina Probst kpro...@google.com wrote:
 It's possible that it's not stuck, but actually building a compile report
 for all your 42 permutations (you can look into your extra directory and see
 if it's happily outputting stuff there).  That could take a while, as it's
 going through all kinds of compilation information and building up a lot of
 html files.

 Unless you are specifically interested in comparing all your 42 compile
 reports (that would be a bit tedious...), you will probably want to restrict
 your compilation with compile reports to some key permutations, e.g., one
 per browser family.

 kathrin

 On Wed, Aug 11, 2010 at 12:16 PM, cokol eplisc...@googlemail.com wrote:
  please post your gwt.xml module descriptor

  On 11 Aug., 18:03, ben fenster fenster@gmail.com wrote:
   ?

   On 11 אוגוסט, 15:21, ben fenster fenster@gmail.com wrote:

can anyone tell me why when i compile without compile report flag the
compilation finishes ok and when i use the flag the compilation gets
stuck at the end after all the permutation is finished here is the
report:
   Compiling 42 permutations
      Compiling permutation 0...
      Compiling permutation 1...
      Compiling permutation 2...
      Compiling permutation 3...
      Compiling permutation 4...
      Compiling permutation 5...
      Compiling permutation 6...
      Compiling permutation 7...
      Compiling permutation 8...
      Compiling permutation 9...
      Compiling permutation 10...
      Compiling permutation 11...
      Compiling permutation 12...
      Compiling permutation 13...
      Compiling permutation 14...
      Compiling permutation 15...
      Compiling permutation 16...
      Compiling permutation 17...
      Compiling permutation 18...
      Compiling permutation 19...
      Compiling permutation 20...
      Compiling permutation 21...
      Compiling permutation 22...
      Compiling permutation 23...
      Compiling permutation 24...
      Compiling permutation 25...
      Compiling permutation 26...
      Compiling permutation 27...
      Compiling permutation 28...
      Compiling permutation 29...
      Compiling permutation 30...
      Compiling permutation 31...
      Compiling permutation 32...
      Compiling permutation 33...
      Compiling permutation 34...
      Compiling permutation 35...
      Compiling permutation 36...
      Compiling permutation 37...
      Compiling permutation 38...
      Compiling permutation 39...
      Compiling permutation 40...
      Compiling permutation 41...
   Compile of permutations succeeded
at this point it is stuck and the java process takes 600mb
pls 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-tool...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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: compile report

2010-08-12 Thread ben fenster
can anyone tell me how to create a compile report for just one
permutation


On 11 אוגוסט, 18:50, Katharina Probst kpro...@google.com wrote:
 It's possible that it's not stuck, but actually building a compile report
 for all your 42 permutations (you can look into your extra directory and see
 if it's happily outputting stuff there).  That could take a while, as it's
 going through all kinds of compilation information and building up a lot of
 html files.

 Unless you are specifically interested in comparing all your 42 compile
 reports (that would be a bit tedious...), you will probably want to restrict
 your compilation with compile reports to some key permutations, e.g., one
 per browser family.

 kathrin

 On Wed, Aug 11, 2010 at 12:16 PM, cokol eplisc...@googlemail.com wrote:
  please post your gwt.xml module descriptor

  On 11 Aug., 18:03, ben fenster fenster@gmail.com wrote:
   ?

   On 11 אוגוסט, 15:21, ben fenster fenster@gmail.com wrote:

can anyone tell me why when i compile without compile report flag the
compilation finishes ok and when i use the flag the compilation gets
stuck at the end after all the permutation is finished here is the
report:
   Compiling 42 permutations
      Compiling permutation 0...
      Compiling permutation 1...
      Compiling permutation 2...
      Compiling permutation 3...
      Compiling permutation 4...
      Compiling permutation 5...
      Compiling permutation 6...
      Compiling permutation 7...
      Compiling permutation 8...
      Compiling permutation 9...
      Compiling permutation 10...
      Compiling permutation 11...
      Compiling permutation 12...
      Compiling permutation 13...
      Compiling permutation 14...
      Compiling permutation 15...
      Compiling permutation 16...
      Compiling permutation 17...
      Compiling permutation 18...
      Compiling permutation 19...
      Compiling permutation 20...
      Compiling permutation 21...
      Compiling permutation 22...
      Compiling permutation 23...
      Compiling permutation 24...
      Compiling permutation 25...
      Compiling permutation 26...
      Compiling permutation 27...
      Compiling permutation 28...
      Compiling permutation 29...
      Compiling permutation 30...
      Compiling permutation 31...
      Compiling permutation 32...
      Compiling permutation 33...
      Compiling permutation 34...
      Compiling permutation 35...
      Compiling permutation 36...
      Compiling permutation 37...
      Compiling permutation 38...
      Compiling permutation 39...
      Compiling permutation 40...
      Compiling permutation 41...
   Compile of permutations succeeded
at this point it is stuck and the java process takes 600mb
pls 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-tool...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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.



compile report

2010-08-11 Thread ben fenster
can anyone tell me why when i compile without compile report flag the
compilation finishes ok and when i use the flag the compilation gets
stuck at the end after all the permutation is finished here is the
report:
   Compiling 42 permutations
  Compiling permutation 0...
  Compiling permutation 1...
  Compiling permutation 2...
  Compiling permutation 3...
  Compiling permutation 4...
  Compiling permutation 5...
  Compiling permutation 6...
  Compiling permutation 7...
  Compiling permutation 8...
  Compiling permutation 9...
  Compiling permutation 10...
  Compiling permutation 11...
  Compiling permutation 12...
  Compiling permutation 13...
  Compiling permutation 14...
  Compiling permutation 15...
  Compiling permutation 16...
  Compiling permutation 17...
  Compiling permutation 18...
  Compiling permutation 19...
  Compiling permutation 20...
  Compiling permutation 21...
  Compiling permutation 22...
  Compiling permutation 23...
  Compiling permutation 24...
  Compiling permutation 25...
  Compiling permutation 26...
  Compiling permutation 27...
  Compiling permutation 28...
  Compiling permutation 29...
  Compiling permutation 30...
  Compiling permutation 31...
  Compiling permutation 32...
  Compiling permutation 33...
  Compiling permutation 34...
  Compiling permutation 35...
  Compiling permutation 36...
  Compiling permutation 37...
  Compiling permutation 38...
  Compiling permutation 39...
  Compiling permutation 40...
  Compiling permutation 41...
   Compile of permutations succeeded
at this point it is stuck and the java process takes 600mb
pls 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-tool...@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: compile report

2010-08-11 Thread ben fenster
?

On 11 אוגוסט, 15:21, ben fenster fenster@gmail.com wrote:
 can anyone tell me why when i compile without compile report flag the
 compilation finishes ok and when i use the flag the compilation gets
 stuck at the end after all the permutation is finished here is the
 report:
    Compiling 42 permutations
       Compiling permutation 0...
       Compiling permutation 1...
       Compiling permutation 2...
       Compiling permutation 3...
       Compiling permutation 4...
       Compiling permutation 5...
       Compiling permutation 6...
       Compiling permutation 7...
       Compiling permutation 8...
       Compiling permutation 9...
       Compiling permutation 10...
       Compiling permutation 11...
       Compiling permutation 12...
       Compiling permutation 13...
       Compiling permutation 14...
       Compiling permutation 15...
       Compiling permutation 16...
       Compiling permutation 17...
       Compiling permutation 18...
       Compiling permutation 19...
       Compiling permutation 20...
       Compiling permutation 21...
       Compiling permutation 22...
       Compiling permutation 23...
       Compiling permutation 24...
       Compiling permutation 25...
       Compiling permutation 26...
       Compiling permutation 27...
       Compiling permutation 28...
       Compiling permutation 29...
       Compiling permutation 30...
       Compiling permutation 31...
       Compiling permutation 32...
       Compiling permutation 33...
       Compiling permutation 34...
       Compiling permutation 35...
       Compiling permutation 36...
       Compiling permutation 37...
       Compiling permutation 38...
       Compiling permutation 39...
       Compiling permutation 40...
       Compiling permutation 41...
    Compile of permutations succeeded
 at this point it is stuck and the java process takes 600mb
 pls 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-tool...@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: PushButton hover not always removed on mouse out

2010-07-05 Thread ben fenster
can you please post your fix?

On 28 יוני, 09:49, ChrisK cknow...@gmail.com wrote:
 I've had to make my own image button and replace all instances 
 ofPushButtonwith it. It mimics thePushButtonbehaviour but doesn't
 have this issue on the exact same page so I'm pretty sure this is an
 issue withPushButton.

 On May 17, 9:28 pm, ChrisK cknow...@gmail.com wrote:

  I'm using GWT 2.0.3 and using UiBinder am adding a composite to the
  RootPanel. The composite contains some PushButtons which I am defining
  fully using UiBinder with g:upFace, g:upHoveringFace and g:downFace.

  The issue is that it's very easy to fool all of these buttons just
  by moving themousequickly across them - they stay in the hover state
  and even have the gwt-PushButton-up-hovering CSS class attached.

  If I replace a button with an Image and add my own code formouse
  over,mouseout andmouseup it works absolutely fine and I'm not able
  to fool the fake button. Obviously though I'd like to use the built
  in widgets as they provide at lot of added extras such as
  accessibility (amongst other things).

  Looking at the source code for CustomButton whichPushButtonextends,
  I can't understand line 623-631 (in current trunk but has been there
  for a while). I think there are more situations where setHovering
  should be set to false but I may be misunderstanding the isOrHasChild/
  eventGetTarget methods.

  case Event.ONMOUSEOUT:
          Element to = DOM.eventGetToElement(event);
          if (DOM.isOrHasChild(getElement(), DOM.eventGetTarget(event))
               (to == null || !DOM.isOrHasChild(getElement(), to))) {
            if (isCapturing) {
              onClickCancel();
            }
            setHovering(false);
          }
          break;

  --
  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 to 
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group 
  athttp://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-tool...@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: Table Row Gaps

2010-05-23 Thread ben fenster
try setting padding and spacing to 0

On 21 מאי, 17:52, Chi H c...@chi.ca wrote:
 It sounds like this 
 -https://developer.mozilla.org/en/Images,_Tables,_and_Mysterious_Gaps
 is what you're experience,

 On May 20, 11:14 pm, Craigo craig...@gmail.com wrote:

  When creating a Grid, FlexTable, VerticalPanel, or any other type of
  table, I couldn't get rid of the gaps in the rows.  The gaps would
  only appear in Chrome and FF, but not in IE6.  They were very small
  gaps (about 3 pixels high).  Nothing seemed to work, setCellPadding,
  setCellSpacing, css with padding, margin, border-collapse, ...

  Finally figured out changing the doctype solved it.

  The default was:
  !doctype html

  When I changed it to:
  !DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
  http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;

  The row gaps disappeared!

  If there is a better way, please post.  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-tool...@googlegroups.com.
  To unsubscribe from this group, send email to 
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group 
  athttp://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-tool...@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group 
 athttp://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-tool...@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: Client side file I/O

2010-05-11 Thread ben fenster
you can use php to create a server side script that will create a file
from data you will send via post request and  alink to the file
this way u will create save  button that will be a download link to a
file in the server side
loading shold be even easier since it just a file upload

On 10 מאי, 21:45, David Given d...@cowlark.com wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 I have a rich app client that wants to be able to construct data
 algorithmically and save the result; it also wants to be able to read a
 local file, and process it locally.

 [No, I do *not* want unrestricted access to the filesystem from the
 client! I want to do all this via standard file load/save dialogues
 mediated by the user, like a sane app does.]

 I can save data by constructing a data: URL, invoking it, and the web
 browser will pop up a save dialogue to the user; this is ideal.

 Unfortunately the only way I've found in classic HTML of loading data is
 to use a file upload field, but that doesn't let the client see the data
 - --- it sends it straight to the server. Apart from being a waste of time
 and bandwidth, my app may not *have* a server (instead running entirely
 locally).

 Are there any new techniques I'm not aware of that will allow me to
 prompt the user for a file and then be able to get the contents of the
 file into a client-side structure so I can process it?

 I'm willing to use Gears or HTML5 if necessary, but I'd prefer to use
 stock HTML/JS if possible.

 - --
 ┌─── dg@cowlark.com ─http://www.cowlark.com─
 │
 │ There is no Fermi Paradox. Any time space faring aliens make it to
 │ Earth, the cows get them. --- Sam Starfall
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.10 (GNU/Linux)
 Comment: Using GnuPG with Mozilla -http://enigmail.mozdev.org/

 iD8DBQFL6HBNf9E0noFvlzgRAthtAJ9z9Ctqgch4o+GoEals2Is5UCkBpgCcCzXJ
 DzHZtGbGNaLs777RQLe22dc=
 =UHjb
 -END PGP SIGNATURE-

 --
 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 to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group 
 athttp://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-tool...@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: PHP servlet in memory database

2010-05-10 Thread ben fenster
the only way i could think of is php is session variables

On 4 מאי, 13:38, Muhammad Saifullah msaif.muham...@gmail.com wrote:
 i have some problem noticed below.

 i need to load data as array to memory in PHP.but in PHP if i write *$array=
 array(1,2);* in test.php then this $array variable is initialized every
 time user requests.if we request test.php 100 times by clicking 100 times
 browser refresh button then this $array variable will be executed 100 times.

 but i need to execute the $array variable only one time for first time
 request and subsequent request of test.php must not execute the $array
 variable.but only use that memory location.how can i do that in PHP.

 but in JAVA SEVRVLET it is easy to execute,just write the $array variable in
 one time execution of init() method of servlet lifecycle method and
 subsequent request of that servlet dont execute init() method but service()
 method but service() method always uses that $array memeory location.

 *all i want to initilize $array variable once but use that memory loc from
 subsequent request in PHP.is there any possiblity in PHP?*

 --
 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 to 
 google-web-toolkit+unsubscr...@googlegroups.com.
 For more options, visit this group 
 athttp://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-tool...@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: MouseMoveEvent problem when i move my mouse very fast

2010-04-13 Thread ben fenster
i had the same problem and i dont think it has a solution since the
events are sent from the browser and if they are wrong then theirs
nothing to do about it

On 13 אפריל, 09:35, fonghuangyee fonghuang...@gmail.com wrote:
 http://www.farbtube.com

 this is the demo, or should i use a canvas?
 Anyone know how to implement it?

 On Apr 13, 3:45 pm, fonghuangyee fonghuang...@gmail.com wrote: 
 addMouseMoveHandler(new MouseMoveHandler() {

          @Override
          public void onMouseMove(MouseMoveEvent event) {
                  System.out.println(X :  + event.getX());

  });

  My problem is, if i move my mouse very fast, i cant receive every
  MouseMoveEvent.
  As the code above, i aspect:
  0,1,2,3,4,5,6

  But when i move very fast, i will get
  0, 5, 15, 20, 50.

  I am doing a simple app as Window Paint.
  I need to detect every MouseMoveEvent so that i can do drawing on the
  page.

  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-tool...@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: -port keeps disappearing

2010-04-12 Thread ben fenster
did you found a solution?


On 12 אפריל, 14:07, Katharina Probst kpro...@google.com wrote:
 Hi,

 In your run/debug configuration, if you go to the Server tab, what does it
 say?  This tab also sets the port and the -noserver (or server) arguments,
 so you'll want to make sure they're not in conflict with your Arguments
 tab.

 kathrin

 On Mon, Apr 12, 2010 at 8:33 AM, Abdullah Shaikh 

 abdullah.shaik...@gmail.com wrote:
  Yes the -port  port number disappears for me too 

  Below are the arguments that are automatically set for me, and I just add
  the -port argument since I want to use a different port.

  -startupUrl /myapp/MyApp.html -noserver -remoteUI
  ${gwt_remote_ui_server_port}:${unique_id} -logLevel INFO -war
  /home/abdullah/projects/myapp_ws/MyApp/war com.app.myapp.MyApp

  Do I need to set the ${gwt_remote_ui_server_port} or something ?

  - Abdullah

  On Mon, Apr 12, 2010 at 4:54 PM, Ian Bambury ianbamb...@gmail.com wrote:

  In the Run Configs - Arguments I add -codeServerPort -noserver and -port.
  If I restart Eclipse, or go to the arguments, or after a while of just
  running via the run button, the -port switch and port number disappear.

  Anyone else get this? Any way to make it 'stick'? Is it a bug in the GEP?

  Ian

 http://examples.roughian.com

  --
  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 to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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: cant compile since moving to gwr 2.0.3

2010-02-24 Thread ben fenster
after more digging i found the exact line that make it fail is
m_bundle= GWT.create(GlobalImageBundle.class);
what could cause client bundle creation fail without any exception
stack trace??

On Feb 24, 3:47 am, ben fenster fenster@gmail.com wrote:
 my project was running fine in hosted and compiled modes but when i
 moved it to another computer with a fresh install and gwt 2.0.3 (was
 running on gwt2.0 before) it keep failing to compile without an
 explanation and when i run in debug i see it fails when i try to get
 an image from client bundle the last lines in the compile output were

             Rule did not match
             Rebind result was
 com.google.gwt.user.client.ui.impl.ClippedImageImpl

-- 
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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



cant compile since moving to gwr 2.0.3

2010-02-24 Thread ben fenster
my project was running fine in hosted and compiled modes but when i
moved it to another computer with a fresh install and gwt 2.0.3 (was
running on gwt2.0 before) it keep failing to compile without an
explanation and when i run in debug i see it fails when i try to get
an image from client bundle the last lines in the compile output were

Rule did not match
Rebind result was
com.google.gwt.user.client.ui.impl.ClippedImageImpl

-- 
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 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: cant compile since moving to gwr 2.0.3

2010-02-24 Thread ben fenster
thanks but it worked after i restarted my computer :)

On Feb 24, 6:36 am, PKolenic pkole...@gmail.com wrote:
 It might be throwing a throwable and not an exception.
 Try wrapping it in:

 try {
      m_bundle = GWT.create(GlobalImageBundle.class);} catch(Throwable throw) {

    system.out.print(throw.getMessage());

 }

 That should help tract down better what is going on.

 On Feb 24, 5:05 am, ben fenster fenster@gmail.com wrote:

  after more digging i found the exact line that make it fail is
  m_bundle= GWT.create(GlobalImageBundle.class);
  what could cause client bundle creation fail without any exception
  stack trace??

  On Feb 24, 3:47 am, ben fenster fenster@gmail.com wrote:

   my project was running fine in hosted and compiled modes but when i
   moved it to another computer with a fresh install and gwt 2.0.3 (was
   running on gwt2.0 before) it keep failing to compile without an
   explanation and when i run in debug i see it fails when i try to get
   an image from client bundle the last lines in the compile output were

               Rule did not match
               Rebind result was
   com.google.gwt.user.client.ui.impl.ClippedImageImpl- Hide quoted text -

  - Show quoted text -

-- 
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 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 applet integration

2010-02-01 Thread ben fenster
i load a java applet in my gwt project and some of the fetures in the
applet works fine but some of ther throws the following  errors
altough they work when i run them in a non browser form
i am using gwt2.0  and i get the following error
13:30:10.386 [ERROR] [vzooo] Uncaught exception escaped
com.google.gwt.core.client.JavaScriptException: (Error): ÒÙéÔ àÓ×ê
âÑÕè http://localhost ÜçÑÜê ÞÐäÙÙß HTMLHtmlElement.nodeType ÞÐê moz-
safe-about:blank.
 fileName: http://localhost
 lineNumber: 62
 stack: ([object XPCCrossOriginWrapper])@http://localhost:62
@:0
(null,327808,[object MouseEvent])@http://localhost/vzooo/hosted.html?
vzooo:56
([object MouseEvent])@http://localhost:32
((function (evt) {if (!__gwt_makeJavaInvoke(1)(null, 327808, evt))
{evt.stopPropagation();evt.preventDefault();return false;}return
true;}),null,[object Object])@http://localhost:50
@:0
(null,65563,(function (evt) {if (!__gwt_makeJavaInvoke(1)(null,
327808, evt)) {evt.stopPropagation();evt.preventDefault();return
false;}return true;}),[object GWTJavaObject],[object Object])@http://
localhost/vzooo/hosted.html?vzooo:56
([object MouseEvent])@http://localhost:38
([object MouseEvent])@http://localhost:20
((function (evt) {if (__static[196659](evt)) {var cap = __static
[196658];if (cap  cap.__listener) {if (__gwt_makeJavaInvoke(1)(null,
262177, cap.__listener)) {__gwt_makeJavaInvoke(3)(null, 327709, evt,
cap, cap.__listener);evt.stopPropagation();),[object
XPCCrossOriginWrapper],[object Object])@http://localhost:50
@:0
(null,65563,(function (evt) {if (__static[196659](evt)) {var cap =
__static[196658];if (cap  cap.__listener) {if (__gwt_makeJavaInvoke
(1)(null, 262177, cap.__listener)) {__gwt_makeJavaInvoke(3)(null,
327709, evt, cap, cap.__listener);evt.stopPropagation();),[object
XPCCrossOriginWrapper],[object Object])@http://localhost/vzooo/
hosted.html?vzooo:56
([object MouseEvent])@http://localhost:38
at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript
(BrowserChannelServer.java:195)
at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke
(ModuleSpaceOOPHM.java:120)
at com.google.gwt.dev.shell.ModuleSpace.invokeNative
(ModuleSpace.java:507)
at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject
(ModuleSpace.java:264)
at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject
(JavaScriptHost.java:91)
at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:188)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.gwt.dev.shell.MethodAdaptor.invoke
(MethodAdaptor.java:103)
at com.google.gwt.dev.shell.MethodDispatch.invoke
(MethodDispatch.java:71)
at com.google.gwt.dev.shell.OophmSessionHandler.invoke
(OophmSessionHandler.java:157)
at
com.google.gwt.dev.shell.BrowserChannel.reactToMessagesWhileWaitingForReturn
(BrowserChannel.java:1713)
at com.google.gwt.dev.shell.BrowserChannelServer.invokeJavascript
(BrowserChannelServer.java:165)
at com.google.gwt.dev.shell.ModuleSpaceOOPHM.doInvoke
(ModuleSpaceOOPHM.java:120)
at com.google.gwt.dev.shell.ModuleSpace.invokeNative
(ModuleSpace.java:507)
at com.google.gwt.dev.shell.ModuleSpace.invokeNativeObject
(ModuleSpace.java:264)
at com.google.gwt.dev.shell.JavaScriptHost.invokeNativeObject
(JavaScriptHost.java:91)
at com.google.gwt.core.client.impl.Impl.apply(Impl.java)
at com.google.gwt.core.client.impl.Impl.entry0(Impl.java:188)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at com.google.gwt.dev.shell.MethodAdaptor.invoke
(MethodAdaptor.java:103)
at com.google.gwt.dev.shell.MethodDispatch.invoke
(MethodDispatch.java:71)
at com.google.gwt.dev.shell.OophmSessionHandler.invoke
(OophmSessionHandler.java:157)
at com.google.gwt.dev.shell.BrowserChannel.reactToMessages
(BrowserChannel.java:1668)
at com.google.gwt.dev.shell.BrowserChannelServer.processConnection
(BrowserChannelServer.java:401)
at com.google.gwt.dev.shell.BrowserChannelServer.run
(BrowserChannelServer.java:222)
at java.lang.Thread.run(Unknown Source)

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

2010-01-31 Thread ben fenster
 i am  trying to run  an applet inside my gwt code  via htmlpanel  it
works fine until i add the display: none style attribute and then
remove it the applet stop being responsive anyone knows why???

-- 
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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



code splitting on smart gwt

2010-01-14 Thread ben fenster
how can i use code splitting on an external jar like smart gwt ?
-- 
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 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: Float css atribute

2010-01-10 Thread ben fenster
10x :)

On Jan 10, 4:44 pm, Thomas Broyer t.bro...@gmail.com wrote:
 On Jan 10, 7:16 am, ben fenster fenster@gmail.com wrote:

  DOM.setStyleAttribute(m_userImgPnl.getElement(), float, left);
  using this line i am tring to set a simple panel style to float lest
  but when i run i see using firebug that  the change didnt happen
  anyone knows why?

 Seehttp://code.google.com/p/google-web-toolkit/issues/detail?id=4366
 you have to use cssFloat (W3C DOM standard) and
 styleFloat (Internet Explorer)

 (BTW, DOM will probably be deprecated in the near future, so use
 m_userImgPnl.getElement().getStyle().setProperty(cssFlaot, left)
 instead)
-- 
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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




Float css atribute

2010-01-09 Thread ben fenster
DOM.setStyleAttribute(m_userImgPnl.getElement(), float, left);
using this line i am tring to set a simple panel style to float lest
but when i run i see using firebug that  the change didnt happen
anyone knows why?
-- 
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 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: request builder

2010-01-08 Thread ben fenster
??

On Jan 7, 7:30 pm, ben fenster fenster@gmail.com wrote:
 thats what  i am doing and it works great in hosted but not in compile
 mode do you have an idea way ??

 On Jan 7, 3:55 pm, Jamie jamiesharbor-sou...@yahoo.com wrote:

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

  BTW, if you are running a separate PHP web server, firefox considers a
  different port to be cross-site.
  You can work around that by deploying your compiled javascript via the
  PHP server, or you can use (eg) Apache to do proxy forwarding so the
  browser thinks it is all one site.

  On Jan 7, 5:51 am, ben fenster fenster@gmail.com wrote:

   ???

   On Jan 7, 11:56 am, ben fenster fenster@gmail.com wrote:

its not cross site and it works ok in hosted more over it doesnt fail
in compile but keep getting empty responses and in hosted they are ok
i cant understand why

On Jan 7, 10:47 am, olivier nouguier olivier.nougu...@gmail.com
wrote:

 SOP ?

 or some GWT SOP

 All I known is that when using GWT-RPC the standard policy doesn't 
 want
 cross webapp access!

 HIH

 On Thu, Jan 7, 2010 at 9:39 AM, ben fenster fenster@gmail.com 
 wrote:
  does any one know why would a request sent using equest builder 
  works
  in hosted mode  but dont work in compile mode i am using it to 
  access
  php scripts running on the same xamp server

  --
  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 to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

 --
 A coward is incapable of exhibiting love; it is the prerogative of the
 brave.
 --
 Mohandas Gandhi
-- 
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 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: request builder

2010-01-08 Thread ben fenster
the thing is there wasnt anything to tell because i used a reequest
builder wich sent requests ok in hosted but nor in compile
the problem was with the url  the problem is with the reequeest
builder class that for some reason didnt throw any exception  when it
considered the diffrence betwen 127.0.0.1 and localhose as a
violation  of sop policiy
so everything was working fine just without a response data

On Jan 8, 12:45 pm, Paul Robinson ukcue...@gmail.com wrote:
 Please don't take this the wrong way. I really am trying to help...

 If you read this:http://catb.org/~esr/faqs/smart-questions.html

 then you may understand why you've had a poor response and perhaps get
 some ideas about how to elicit a better response. For example, Jamie
 tried to help, but it's not clear from what you said whether you've
 looked at what is actually being sent over the network to the server
 using something like firebug or TamperData. You don't say what error you
 get, if any. You don't say whether and how the network traffic is
 different in dev and production mode. Unless you provide more details,
 and show that you're actually trying to work out what's happening,
 nobody else will either.

 HTH
 Paul

 ben fenster wrote:
  ??

  On Jan 7, 7:30 pm, ben fenster fenster@gmail.com wrote:

  thats what  i am doing and it works great in hosted but not in compile
  mode do you have an idea way ??

  On Jan 7, 3:55 pm, Jamie jamiesharbor-sou...@yahoo.com wrote:

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

  BTW, if you are running a separate PHP web server, firefox considers a
  different port to be cross-site.
  You can work around that by deploying your compiled javascript via the
  PHP server, or you can use (eg) Apache to do proxy forwarding so the
  browser thinks it is all one site.

  On Jan 7, 5:51 am, ben fenster fenster@gmail.com wrote:

  ???

  On Jan 7, 11:56 am, ben fenster fenster@gmail.com wrote:

  its not cross site and it works ok in hosted more over it doesnt fail
  in compile but keep getting empty responses and in hosted they are ok
  i cant understand why

  On Jan 7, 10:47 am, olivier nouguier olivier.nougu...@gmail.com
  wrote:

  SOP ?

  or some GWT SOP

  All I known is that when using GWT-RPC the standard policy doesn't want
  cross webapp access!

  HIH

  On Thu, Jan 7, 2010 at 9:39 AM, ben fenster fenster@gmail.com 
  wrote:

  does any one know why would a request sent using equest builder works
  in hosted mode  but dont work in compile mode i am using it to access
  php scripts running on the same xamp server

  --
  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 to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

  --
  A coward is incapable of exhibiting love; it is the prerogative of the
  brave.
  --
  Mohandas Gandhi
-- 
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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




request builder

2010-01-07 Thread ben fenster
does any one know why would a request sent using equest builder works
in hosted mode  but dont work in compile mode i am using it to access
php scripts running on the same xamp server
-- 
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 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: request builder

2010-01-07 Thread ben fenster
its not cross site and it works ok in hosted more over it doesnt fail
in compile but keep getting empty responses and in hosted they are ok
i cant understand why

On Jan 7, 10:47 am, olivier nouguier olivier.nougu...@gmail.com
wrote:
 SOP ?

 or some GWT SOP

 All I known is that when using GWT-RPC the standard policy doesn't want
 cross webapp access!

 HIH



 On Thu, Jan 7, 2010 at 9:39 AM, ben fenster fenster@gmail.com wrote:
  does any one know why would a request sent using equest builder works
  in hosted mode  but dont work in compile mode i am using it to access
  php scripts running on the same xamp server

  --
  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 to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

 --
 A coward is incapable of exhibiting love; it is the prerogative of the
 brave.
 --
 Mohandas Gandhi
-- 
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 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: request builder

2010-01-07 Thread ben fenster
???

On Jan 7, 11:56 am, ben fenster fenster@gmail.com wrote:
 its not cross site and it works ok in hosted more over it doesnt fail
 in compile but keep getting empty responses and in hosted they are ok
 i cant understand why

 On Jan 7, 10:47 am, olivier nouguier olivier.nougu...@gmail.com
 wrote:

  SOP ?

  or some GWT SOP

  All I known is that when using GWT-RPC the standard policy doesn't want
  cross webapp access!

  HIH

  On Thu, Jan 7, 2010 at 9:39 AM, ben fenster fenster@gmail.com wrote:
   does any one know why would a request sent using equest builder works
   in hosted mode  but dont work in compile mode i am using it to access
   php scripts running on the same xamp server

   --
   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 to
   google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
   .
   For more options, visit this group at
  http://groups.google.com/group/google-web-toolkit?hl=en.

  --
  A coward is incapable of exhibiting love; it is the prerogative of the
  brave.
  --
  Mohandas Gandhi
-- 
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 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: request builder

2010-01-07 Thread ben fenster
thats what  i am doing and it works great in hosted but not in compile
mode do you have an idea way ??

On Jan 7, 3:55 pm, Jamie jamiesharbor-sou...@yahoo.com wrote:
 You should then probably install something like TamperData or Firebug
 for firefox, and see if your request is actually being sent from the
 browser.  Or you could use wireshark, but that's not as easy to read.
 As well, tamperdata or wireshark will let you see the data in the
 responses.

 BTW, if you are running a separate PHP web server, firefox considers a
 different port to be cross-site.
 You can work around that by deploying your compiled javascript via the
 PHP server, or you can use (eg) Apache to do proxy forwarding so the
 browser thinks it is all one site.

 On Jan 7, 5:51 am, ben fenster fenster@gmail.com wrote:

  ???

  On Jan 7, 11:56 am, ben fenster fenster@gmail.com wrote:

   its not cross site and it works ok in hosted more over it doesnt fail
   in compile but keep getting empty responses and in hosted they are ok
   i cant understand why

   On Jan 7, 10:47 am, olivier nouguier olivier.nougu...@gmail.com
   wrote:

SOP ?

or some GWT SOP

All I known is that when using GWT-RPC the standard policy doesn't want
cross webapp access!

HIH

On Thu, Jan 7, 2010 at 9:39 AM, ben fenster fenster@gmail.com 
wrote:
 does any one know why would a request sent using equest builder works
 in hosted mode  but dont work in compile mode i am using it to access
 php scripts running on the same xamp server

 --
 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 to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.

--
A coward is incapable of exhibiting love; it is the prerogative of the
brave.
--
Mohandas Gandhi
-- 
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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
i have a presentation tomorrow and every thing works great i am using
gwt 2.0 but when i compile and run from the compiled version all of
the http request does not work
-- 
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 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: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
i use it and no errors there also i am accessing php pages threw http
request the php works ok and when i use it in hosted mode every thing
is great but when i use it in compile nothing works

On Jan 6, 7:03 pm, olivier nouguier olivier.nougu...@gmail.com
wrote:
 You should use firebug to learn more !



 On Wed, Jan 6, 2010 at 5:55 PM, ben fenster fenster@gmail.com wrote:
  i have a presentation tomorrow and every thing works great i am using
  gwt 2.0 but when i compile and run from the compiled version all of
  the http request does not work

  --
  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 to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

 --
 A coward is incapable of exhibiting love; it is the prerogative of the
 brave.
 --
 Mohandas Gandhi
-- 
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 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: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
i am also using smart gwt could this be the reason for  my problems?

On Jan 6, 7:15 pm, olivier nouguier olivier.nougu...@gmail.com
wrote:
 euh your backend is full php ? If true I have no knowlegde :(



 On Wed, Jan 6, 2010 at 6:11 PM, ben fenster fenster@gmail.com wrote:
  i use it and no errors there also i am accessing php pages threw http
  request the php works ok and when i use it in hosted mode every thing
  is great but when i use it in compile nothing works

  On Jan 6, 7:03 pm, olivier nouguier olivier.nougu...@gmail.com
  wrote:
   You should use firebug to learn more !

   On Wed, Jan 6, 2010 at 5:55 PM, ben fenster fenster@gmail.com
  wrote:
i have a presentation tomorrow and every thing works great i am using
gwt 2.0 but when i compile and run from the compiled version all of
the http request does not work

--
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 to
google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@googlegroups.com

.
For more options, visit this group at
   http://groups.google.com/group/google-web-toolkit?hl=en.

   --
   A coward is incapable of exhibiting love; it is the prerogative of the
   brave.
   --
   Mohandas Gandhi

  --
  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 to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

 --
 A coward is incapable of exhibiting love; it is the prerogative of the
 brave.
 --
 Mohandas Gandhi
-- 
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 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: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
how can it be that something runs great in hosted from the browser  it
self but dont work in compile ???

On Jan 6, 7:21 pm, ben fenster fenster@gmail.com wrote:
 i am also using smart gwt could this be the reason for  my problems?

 On Jan 6, 7:15 pm, olivier nouguier olivier.nougu...@gmail.com
 wrote:

  euh your backend is full php ? If true I have no knowlegde :(

  On Wed, Jan 6, 2010 at 6:11 PM, ben fenster fenster@gmail.com wrote:
   i use it and no errors there also i am accessing php pages threw http
   request the php works ok and when i use it in hosted mode every thing
   is great but when i use it in compile nothing works

   On Jan 6, 7:03 pm, olivier nouguier olivier.nougu...@gmail.com
   wrote:
You should use firebug to learn more !

On Wed, Jan 6, 2010 at 5:55 PM, ben fenster fenster@gmail.com
   wrote:
 i have a presentation tomorrow and every thing works great i am using
 gwt 2.0 but when i compile and run from the compiled version all of
 the http request does not work

 --
 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 to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
   google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@googlegroups.com

 .
 For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.

--
A coward is incapable of exhibiting love; it is the prerogative of the
brave.
--
Mohandas Gandhi

   --
   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 to
   google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
   .
   For more options, visit this group at
  http://groups.google.com/group/google-web-toolkit?hl=en.

  --
  A coward is incapable of exhibiting love; it is the prerogative of the
  brave.
  --
  Mohandas Gandhi
-- 
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 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: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
i send them they work ok in hosted but in compiled when i get to check
status  i get exception the site is www.vzooo.com  if anyone can check
it out and see i will apreceate it

it is relly strange  i noticed that the gwt compile only compiles 5
out of 6 permutations but it says compiled ok  is ther a way to get
more detailed compile log

On Jan 6, 7:53 pm, mariyan nenchev nenchev.mari...@gmail.com wrote:
 What do you mean by  all of the http request does not work

 On Wed, Jan 6, 2010 at 7:49 PM, ben fenster fenster@gmail.com wrote:
  how can it be that something runs great in hosted from the browser  it
  self but dont work in compile ???

  On Jan 6, 7:21 pm, ben fenster fenster@gmail.com wrote:
   i am also using smart gwt could this be the reason for  my problems?

   On Jan 6, 7:15 pm, olivier nouguier olivier.nougu...@gmail.com
   wrote:

euh your backend is full php ? If true I have no knowlegde :(

On Wed, Jan 6, 2010 at 6:11 PM, ben fenster fenster@gmail.com
  wrote:
 i use it and no errors there also i am accessing php pages threw http
 request the php works ok and when i use it in hosted mode every thing
 is great but when i use it in compile nothing works

 On Jan 6, 7:03 pm, olivier nouguier olivier.nougu...@gmail.com
 wrote:
  You should use firebug to learn more !

  On Wed, Jan 6, 2010 at 5:55 PM, ben fenster fenster@gmail.com

 wrote:
   i have a presentation tomorrow and every thing works great i am
  using
   gwt 2.0 but when i compile and run from the compiled version all
  of
   the http request does not work

   --
   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 to
   google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@googlegroups.com

 google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@googlegroups.com
  google-web-toolkit%252bunsubscr...@googlegroups.comgoogle-web-toolkit%25252bunsubscr...@googlegroups.com

   .
   For more options, visit this group at
  http://groups.google.com/group/google-web-toolkit?hl=en.

  --
  A coward is incapable of exhibiting love; it is the prerogative of
  the
  brave.
  --
  Mohandas Gandhi

 --
 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 to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@googlegroups.com

 .
 For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.

--
A coward is incapable of exhibiting love; it is the prerogative of the
brave.
--
Mohandas Gandhi

  --
  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 to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
how can i work in hosted but not in compiled??

On Jan 6, 9:30 pm, Trevor Skaife tska...@gmail.com wrote:
 I went to your site and I see this error in Chrome Uncaught
 java.util.NoSuchElementException: forgot, if you compile using PRETTY
 you'd be able get a better understanding in your java code where the
 error occurs.

 Trevor

 On Jan 6, 1:10 pm, Sudeep S sudee...@gmail.com wrote:

  use -style PRETTY and -logLevel DEBUG to get detailed messages

  On Wed, Jan 6, 2010 at 11:33 PM, ben fenster fenster@gmail.com wrote:
   i send them they work ok in hosted but in compiled when i get to check
   status  i get exception the site iswww.vzooo.com if anyone can check
   it out and see i will apreceate it

   it is relly strange  i noticed that the gwt compile only compiles 5
   out of 6 permutations but it says compiled ok  is ther a way to get
   more detailed compile log

   On Jan 6, 7:53 pm, mariyan nenchev nenchev.mari...@gmail.com wrote:
What do you mean by  all of the http request does not work

     On Wed, Jan 6, 2010 at 7:49 PM, ben fenster fenster@gmail.com
   wrote:
 how can it be that something runs great in hosted from the browser  it
 self but dont work in compile ???

 On Jan 6, 7:21 pm, ben fenster fenster@gmail.com wrote:
  i am also using smart gwt could this be the reason for  my problems?

  On Jan 6, 7:15 pm, olivier nouguier olivier.nougu...@gmail.com
  wrote:

   euh your backend is full php ? If true I have no knowlegde :(

   On Wed, Jan 6, 2010 at 6:11 PM, ben fenster fenster@gmail.com

 wrote:
i use it and no errors there also i am accessing php pages threw
   http
request the php works ok and when i use it in hosted mode every
   thing
is great but when i use it in compile nothing works

On Jan 6, 7:03 pm, olivier nouguier olivier.nougu...@gmail.com
wrote:
 You should use firebug to learn more !

 On Wed, Jan 6, 2010 at 5:55 PM, ben fenster 
   fenster@gmail.com

wrote:
  i have a presentation tomorrow and every thing works great i
   am
 using
  gwt 2.0 but when i compile and run from the compiled version
   all
 of
  the http request does not work

  --
  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 to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2Bunsubs
   cr...@googlegroups.com
   google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
nsubscr...@googlegroups.com

 google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
  nsubscr...@googlegroups.com
   google-web-toolkit%252bunsubscr...@googlegroups.comgoogle-web-toolkit%252
52bunsubscr...@googlegroups.com

google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
 nsubscr...@googlegroups.com
   google-web-toolkit%252bunsubscr...@googlegroups.comgoogle-web-toolkit%252
52bunsubscr...@googlegroups.com

 google-web-toolkit%252bunsubscr...@googlegroups.comgoogle-web-toolkit%252
  52bunsubscr...@googlegroups.com
   google-web-toolkit%25252bunsubscr...@googlegroups.comgoogle-web-toolkit%2
525252bunsubscr...@googlegroups.com

  .
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

 --
 A coward is incapable of exhibiting love; it is the 
 prerogative
   of
 the
 brave.
 --
 Mohandas Gandhi

--
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 to
google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2Bunsubs
 cr...@googlegroups.com
   google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
nsubscr...@googlegroups.com

 google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
  nsubscr...@googlegroups.com
   google-web-toolkit%252bunsubscr...@googlegroups.comgoogle-web-toolkit%252
52bunsubscr...@googlegroups.com

.
For more options, visit this group at
   http://groups.google.com/group/google-web-toolkit?hl=en.

   --
   A coward is incapable of exhibiting love; it is the prerogative of
   the
   brave.
   --
   Mohandas Gandhi

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

Re: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
?

On Jan 6, 10:22 pm, ben fenster fenster@gmail.com wrote:
 how can i work in hosted but not in compiled??

 On Jan 6, 9:30 pm, Trevor Skaife tska...@gmail.com wrote:

  I went to your site and I see this error in Chrome Uncaught
  java.util.NoSuchElementException: forgot, if you compile using PRETTY
  you'd be able get a better understanding in your java code where the
  error occurs.

  Trevor

  On Jan 6, 1:10 pm, Sudeep S sudee...@gmail.com wrote:

   use -style PRETTY and -logLevel DEBUG to get detailed messages

   On Wed, Jan 6, 2010 at 11:33 PM, ben fenster fenster@gmail.com 
   wrote:
i send them they work ok in hosted but in compiled when i get to check
status  i get exception the site iswww.vzooo.com if anyone can check
it out and see i will apreceate it

it is relly strange  i noticed that the gwt compile only compiles 5
out of 6 permutations but it says compiled ok  is ther a way to get
more detailed compile log

On Jan 6, 7:53 pm, mariyan nenchev nenchev.mari...@gmail.com wrote:
 What do you mean by  all of the http request does not work

  On Wed, Jan 6, 2010 at 7:49 PM, ben fenster fenster@gmail.com
wrote:
  how can it be that something runs great in hosted from the browser  
  it
  self but dont work in compile ???

  On Jan 6, 7:21 pm, ben fenster fenster@gmail.com wrote:
   i am also using smart gwt could this be the reason for  my 
   problems?

   On Jan 6, 7:15 pm, olivier nouguier olivier.nougu...@gmail.com
   wrote:

euh your backend is full php ? If true I have no knowlegde :(

On Wed, Jan 6, 2010 at 6:11 PM, ben fenster 
fenster@gmail.com

  wrote:
 i use it and no errors there also i am accessing php pages 
 threw
http
 request the php works ok and when i use it in hosted mode 
 every
thing
 is great but when i use it in compile nothing works

 On Jan 6, 7:03 pm, olivier nouguier 
 olivier.nougu...@gmail.com
 wrote:
  You should use firebug to learn more !

  On Wed, Jan 6, 2010 at 5:55 PM, ben fenster 
fenster@gmail.com

 wrote:
   i have a presentation tomorrow and every thing works 
   great i
am
  using
   gwt 2.0 but when i compile and run from the compiled 
   version
all
  of
   the http request does not work

   --
   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 to
   google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2Bunsubs
cr...@googlegroups.com
google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
 nsubscr...@googlegroups.com

  google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
   nsubscr...@googlegroups.com
google-web-toolkit%252bunsubscr...@googlegroups.comgoogle-web-toolkit%252
 52bunsubscr...@googlegroups.com

 google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
  nsubscr...@googlegroups.com
google-web-toolkit%252bunsubscr...@googlegroups.comgoogle-web-toolkit%252
 52bunsubscr...@googlegroups.com

  google-web-toolkit%252bunsubscr...@googlegroups.comgoogle-web-toolkit%252
   52bunsubscr...@googlegroups.com
google-web-toolkit%25252bunsubscr...@googlegroups.comgoogle-web-toolkit%2
 525252bunsubscr...@googlegroups.com

   .
   For more options, visit this group at
  http://groups.google.com/group/google-web-toolkit?hl=en.

  --
  A coward is incapable of exhibiting love; it is the 
  prerogative
of
  the
  brave.
  --
  Mohandas Gandhi

 --
 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 to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2Bunsubs
  cr...@googlegroups.com
google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
 nsubscr...@googlegroups.com

  google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
   nsubscr...@googlegroups.com
google-web-toolkit%252bunsubscr...@googlegroups.comgoogle-web-toolkit%252
 52bunsubscr...@googlegroups.com

 .
 For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.

--
A coward is incapable of exhibiting love; it is the prerogative

Re: pls help !!!!!!!!!!

2010-01-06 Thread ben fenster
the problem is with the request builder can anyone tell me how can it
run in hosted mode but not in complie mode please someone
i get no error  i found out with plain alerts

On Jan 6, 10:59 pm, ben fenster fenster@gmail.com wrote:
 ?

 On Jan 6, 10:22 pm, ben fenster fenster@gmail.com wrote:

  how can i work in hosted but not in compiled??

  On Jan 6, 9:30 pm, Trevor Skaife tska...@gmail.com wrote:

   I went to your site and I see this error in Chrome Uncaught
   java.util.NoSuchElementException: forgot, if you compile using PRETTY
   you'd be able get a better understanding in your java code where the
   error occurs.

   Trevor

   On Jan 6, 1:10 pm, Sudeep S sudee...@gmail.com wrote:

use -style PRETTY and -logLevel DEBUG to get detailed messages

On Wed, Jan 6, 2010 at 11:33 PM, ben fenster fenster@gmail.com 
wrote:
 i send them they work ok in hosted but in compiled when i get to check
 status  i get exception the site iswww.vzooo.com if anyone can check
 it out and see i will apreceate it

 it is relly strange  i noticed that the gwt compile only compiles 5
 out of 6 permutations but it says compiled ok  is ther a way to get
 more detailed compile log

 On Jan 6, 7:53 pm, mariyan nenchev nenchev.mari...@gmail.com wrote:
  What do you mean by  all of the http request does not work

   On Wed, Jan 6, 2010 at 7:49 PM, ben fenster fenster@gmail.com
 wrote:
   how can it be that something runs great in hosted from the 
   browser  it
   self but dont work in compile ???

   On Jan 6, 7:21 pm, ben fenster fenster@gmail.com wrote:
i am also using smart gwt could this be the reason for  my 
problems?

On Jan 6, 7:15 pm, olivier nouguier olivier.nougu...@gmail.com
wrote:

 euh your backend is full php ? If true I have no knowlegde :(

 On Wed, Jan 6, 2010 at 6:11 PM, ben fenster 
 fenster@gmail.com

   wrote:
  i use it and no errors there also i am accessing php pages 
  threw
 http
  request the php works ok and when i use it in hosted mode 
  every
 thing
  is great but when i use it in compile nothing works

  On Jan 6, 7:03 pm, olivier nouguier 
  olivier.nougu...@gmail.com
  wrote:
   You should use firebug to learn more !

   On Wed, Jan 6, 2010 at 5:55 PM, ben fenster 
 fenster@gmail.com

  wrote:
i have a presentation tomorrow and every thing works 
great i
 am
   using
gwt 2.0 but when i compile and run from the compiled 
version
 all
   of
the http request does not work

--
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 to
google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2Bunsubs
 cr...@googlegroups.com
 google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
  nsubscr...@googlegroups.com

   google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
nsubscr...@googlegroups.com
 google-web-toolkit%252bunsubscr...@googlegroups.comgoogle-web-toolkit%252
  52bunsubscr...@googlegroups.com

  google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
   nsubscr...@googlegroups.com
 google-web-toolkit%252bunsubscr...@googlegroups.comgoogle-web-toolkit%252
  52bunsubscr...@googlegroups.com

   google-web-toolkit%252bunsubscr...@googlegroups.comgoogle-web-toolkit%252
52bunsubscr...@googlegroups.com
 google-web-toolkit%25252bunsubscr...@googlegroups.comgoogle-web-toolkit%2
  525252bunsubscr...@googlegroups.com

.
For more options, visit this group at
   http://groups.google.com/group/google-web-toolkit?hl=en.

   --
   A coward is incapable of exhibiting love; it is the 
   prerogative
 of
   the
   brave.
   --
   Mohandas Gandhi

  --
  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 to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2Bunsubs
   cr...@googlegroups.com
 google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu
  nsubscr...@googlegroups.com

   google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252Bu

Re: SOP / cross-site http requests

2009-12-29 Thread ben fenster
you cant the only thing you can do is use JsonpRequestBuilder but you
will have to construct a compatible server side

On Dec 28, 12:41 pm, Fabio fabio.bo...@gmail.com wrote:
 RequestBuilder builder = new RequestBuilder(RequestBuilder.GET,
 URL.encode(http://localhost:12345/rest/businessFunctions;));

 same domain but different server (listening on different port).
 It gives me error, how can bypass 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-tool...@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: smart gwt help

2009-12-20 Thread ben fenster
how can u use the cache option u suggested ?

On Dec 18, 2:53 pm, mariyan nenchev nenchev.mari...@gmail.com wrote:
 In our host page specify what modules you want to use, unused images are not
 loaded(just make your war(static content folder) bigger). The problem is
 that smart gwt does not user spirtes and load every image every time(with
 Not modified status, but this could be configured to be cached from the
 browser?).
 For better info look at the smart client's forum. There are many topics
 about improvement and resource optimizing

--

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 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: cant see the incubator paging table when moved to gwt2

2009-12-19 Thread ben fenster
???

On 18 דצמבר, 14:28, ben fenster fenster@gmail.com wrote:
 does anyone knows why the paging table stopped working on gwt2.0 ???
 there is 0 compile errors

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




dynamically fetch JSON feeds from other web domains

2009-12-19 Thread ben fenster
in google article
http://code.google.com/intl/iw/webtoolkit/doc/latest/FAQ_Server.html#Why_doesn%27t_GWT_provide_a_synchronous_server_connection_opt

they say

If the external feed doesn't support callback function names using
array syntax, you can generate uniquely named bridge methods like
jsonCallback1, jsonCallback2, etc. Also, don't forget to cleanup in
the bridge function after it's been called, such as removing the
SCRIPT node that's been added to the DOM, and deleting the bridge
method, since they are no longer used once you have the result.

can anyone show me an example my javascript is ot so good and i relly
need a way to create those unique named functions

--

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 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: dynamically fetch JSON feeds from other web domains

2009-12-19 Thread ben fenster
thanx exactly what i needed

On 19 דצמבר, 13:18, Thomas Broyer t.bro...@gmail.com wrote:
 On Dec 19, 12:12 pm, Thomas Broyer t.bro...@gmail.com wrote:

  On Dec 19, 11:10 am, ben fenster fenster@gmail.com wrote:

   in google 
   articlehttp://code.google.com/intl/iw/webtoolkit/doc/latest/FAQ_Server.html#...
 [...]
  If you use GWT 2.0, just use the Jsonp module and JsonpRequestBuilder
  which will do all those things for 
  you:http://google-web-toolkit.googlecode.com/svn/javadoc/2.0/com/google/g...

 Just created issue 4379 to fix/enhance the 
 FAQ:http://code.google.com/p/google-web-toolkit/issues/detail?id=4379

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




cant see the incubator paging table when moved to gwt2

2009-12-18 Thread ben fenster
does anyone knows why the paging table stopped working on gwt2.0 ???
there is 0 compile errors

--

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 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: can i send http request to a subdomain from gwt

2009-12-17 Thread ben fenster
i am using the gwt-comet lib and there is some trouble with this
configuration

On 17 דצמבר, 16:51, jhulford jhulf...@gmail.com wrote:
 Can't you set up Apache directives to handle .php and .html files and
 and forward your comet requests through the jk module to Tomcat?  To
 your browser it should all look like it's going to the same domain.

 On Dec 15, 10:57 am, ben fenster fenster@gmail.com wrote:

  i want to use apache to handle static content and php and use tomct
  for comet
  sop restriction prevent me from accessing another domain or even
  another port but would it prevent me from sending a request to a
  subdomain?

--

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 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: can i send http request to a subdomain from gwt

2009-12-16 Thread ben fenster
i need something that would work on every browser i cant understand
how facebook sends requests to their chat subdomain

On 16 דצמבר, 10:29, rjcarr rjc...@gmail.com wrote:
 I think this is one of those questions you're just going to have to
 test yourself.  Also, be careful, because different browsers have
 different policies for this sort of thing.

 On Dec 15, 8:57 am, ben fenster fenster@gmail.com wrote:

  i want to use apache to handle static content and php and use tomct
  for comet
  sop restriction prevent me from accessing another domain or even
  another port but would it prevent me from sending a request to a
  subdomain?

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




can i send http request to a subdomain from gwt

2009-12-15 Thread ben fenster
i want to use apache to handle static content and php and use tomct
for comet
sop restriction prevent me from accessing another domain or even
another port but would it prevent me from sending a request to a
subdomain?

--

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 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 2.0 + apache + rpc pls help

2009-12-13 Thread ben fenster
???

On 13 דצמבר, 02:07, ben fenster fenster@gmail.com wrote:
 pls can anyone help 

 On 12 דצמבר, 12:19, ben fenster fenster@gmail.com wrote:

  the urls are fine do i need any special configuration or special mods
  for apache i currently use standart apache in xamp

  On 12 דצמבר, 11:41, Nicanor Cristian nicanor.bab...@gmail.com wrote:

   Check out the urls.

   ben fenster wrote:
i am trying to run a project that include gwt as client side and rpc +
php as server side
the only webserver iknow capable of running all of those together is
apache but every time i try to call rpc i get an error of page not
found

DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN
htmlhead
title404 Not Found/title
/headbody
h1Not Found/h1
pThe requested URL /vzooo/ChatServerlet was not found on this
server./p
pAdditionally, a 406 Not Acceptable
error was encountered while trying to use an ErrorDocument to handle
the request./p
hr
addressApache/2.2.12 (Win32) DAV/2 mod_ssl/2.2.12 OpenSSL/0.9.8k
mod_autoindex_color PHP/5.3.0 mod_perl/2.0.4 Perl/v5.10.0 Server at
localhost Port 80/address
/body/html

pls  help someone

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group 
athttp://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-tool...@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 2.0 + apache + rpc pls help

2009-12-13 Thread ben fenster
how can you do someyhing like that  cross site requests gets
blocked???

On 13 דצמבר, 15:42, nacho vela.igna...@gmail.com wrote:
 Why don't you use 2 different ports?

 One for PHP and one for Java.

 For example I have one apache serving php in localhost:80 and one
 tomcat serving java in localhost:

 On Dec 13, 10:18 am, ben fenster fenster@gmail.com wrote:

  ???

  On 13 דצמבר, 02:07, ben fenster fenster@gmail.com wrote:

   pls can anyone help 

   On 12 דצמבר, 12:19, ben fenster fenster@gmail.com wrote:

the urls are fine do i need any special configuration or special mods
for apache i currently use standart apache in xamp

On 12 דצמבר, 11:41, Nicanor Cristian nicanor.bab...@gmail.com wrote:

 Check out the urls.

 ben fenster wrote:
  i am trying to run a project that include gwt as client side and 
  rpc +
  php as server side
  the only webserver iknow capable of running all of those together is
  apache but every time i try to call rpc i get an error of page not
  found

  DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN
  htmlhead
  title404 Not Found/title
  /headbody
  h1Not Found/h1
  pThe requested URL /vzooo/ChatServerlet was not found on this
  server./p
  pAdditionally, a 406 Not Acceptable
  error was encountered while trying to use an ErrorDocument to handle
  the request./p
  hr
  addressApache/2.2.12 (Win32) DAV/2 mod_ssl/2.2.12 OpenSSL/0.9.8k
  mod_autoindex_color PHP/5.3.0 mod_perl/2.0.4 Perl/v5.10.0 Server at
  localhost Port 80/address
  /body/html

  pls  help someone

  --

  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 to 
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group 
  athttp://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-tool...@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 2.0 + apache + rpc pls help

2009-12-13 Thread ben fenster
?

On 13 דצמבר, 16:17, ben fenster fenster@gmail.com wrote:
 how can you do someyhing like that  cross site requests gets
 blocked???

 On 13 דצמבר, 15:42, nacho vela.igna...@gmail.com wrote:

  Why don't you use 2 different ports?

  One for PHP and one for Java.

  For example I have one apache serving php in localhost:80 and one
  tomcat serving java in localhost:

  On Dec 13, 10:18 am, ben fenster fenster@gmail.com wrote:

   ???

   On 13 דצמבר, 02:07, ben fenster fenster@gmail.com wrote:

pls can anyone help 

On 12 דצמבר, 12:19, ben fenster fenster@gmail.com wrote:

 the urls are fine do i need any special configuration or special mods
 for apache i currently use standart apache in xamp

 On 12 דצמבר, 11:41, Nicanor Cristian nicanor.bab...@gmail.com wrote:

  Check out the urls.

  ben fenster wrote:
   i am trying to run a project that include gwt as client side and 
   rpc +
   php as server side
   the only webserver iknow capable of running all of those together 
   is
   apache but every time i try to call rpc i get an error of page not
   found

   DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN
   htmlhead
   title404 Not Found/title
   /headbody
   h1Not Found/h1
   pThe requested URL /vzooo/ChatServerlet was not found on this
   server./p
   pAdditionally, a 406 Not Acceptable
   error was encountered while trying to use an ErrorDocument to 
   handle
   the request./p
   hr
   addressApache/2.2.12 (Win32) DAV/2 mod_ssl/2.2.12 OpenSSL/0.9.8k
   mod_autoindex_color PHP/5.3.0 mod_perl/2.0.4 Perl/v5.10.0 Server 
   at
   localhost Port 80/address
   /body/html

   pls  help someone

   --

   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 to 
   google-web-toolkit+unsubscr...@googlegroups.com.
   For more options, visit this group 
   athttp://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-tool...@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 2.0 + apache + rpc pls help

2009-12-12 Thread ben fenster
the urls are fine do i need any special configuration or special mods
for apache i currently use standart apache in xamp

On 12 דצמבר, 11:41, Nicanor Cristian nicanor.bab...@gmail.com wrote:
 Check out the urls.

 ben fenster wrote:
  i am trying to run a project that include gwt as client side and rpc +
  php as server side
  the only webserver iknow capable of running all of those together is
  apache but every time i try to call rpc i get an error of page not
  found

  DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN
  htmlhead
  title404 Not Found/title
  /headbody
  h1Not Found/h1
  pThe requested URL /vzooo/ChatServerlet was not found on this
  server./p
  pAdditionally, a 406 Not Acceptable
  error was encountered while trying to use an ErrorDocument to handle
  the request./p
  hr
  addressApache/2.2.12 (Win32) DAV/2 mod_ssl/2.2.12 OpenSSL/0.9.8k
  mod_autoindex_color PHP/5.3.0 mod_perl/2.0.4 Perl/v5.10.0 Server at
  localhost Port 80/address
  /body/html

  pls  help someone

  --

  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 to 
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group 
  athttp://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-tool...@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 2.0 + apache + rpc pls help

2009-12-12 Thread ben fenster
pls can anyone help 

On 12 דצמבר, 12:19, ben fenster fenster@gmail.com wrote:
 the urls are fine do i need any special configuration or special mods
 for apache i currently use standart apache in xamp

 On 12 דצמבר, 11:41, Nicanor Cristian nicanor.bab...@gmail.com wrote:

  Check out the urls.

  ben fenster wrote:
   i am trying to run a project that include gwt as client side and rpc +
   php as server side
   the only webserver iknow capable of running all of those together is
   apache but every time i try to call rpc i get an error of page not
   found

   DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN
   htmlhead
   title404 Not Found/title
   /headbody
   h1Not Found/h1
   pThe requested URL /vzooo/ChatServerlet was not found on this
   server./p
   pAdditionally, a 406 Not Acceptable
   error was encountered while trying to use an ErrorDocument to handle
   the request./p
   hr
   addressApache/2.2.12 (Win32) DAV/2 mod_ssl/2.2.12 OpenSSL/0.9.8k
   mod_autoindex_color PHP/5.3.0 mod_perl/2.0.4 Perl/v5.10.0 Server at
   localhost Port 80/address
   /body/html

   pls  help someone

   --

   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 to 
   google-web-toolkit+unsubscr...@googlegroups.com.
   For more options, visit this group 
   athttp://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-tool...@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: 404 accessing servlet when Apache in front of Tomcat

2009-12-12 Thread ben fenster
i get the same error with xamp  did u figure it out ?

On 8 דצמבר, 05:09, jalynn2 joe.a.l...@gmail.com wrote:
 I developed my GWT1.7  module using Tomcat 5.5, and everything works
 fine. When I deployed to my production site, I get a 404 when the form
 tries to call the servlet. The production site hasApacheconnected to
 Tomcat via AJP. I configuredApacheto forward all requests to Tomcat.
 If I type the servlet URL into a browser I also get the 404. The 404
 comes from Tomcat, according to the response page.

 It seems to be related to the fact that there is a real directory in
 the web site that matches the path in the servlet URL mapping. If I
 change the URL mapping in web.xml to something else, (e.g., change
 from '/MyApp/appService.do' to '/MyApp2/appService.do') then I can
 find the servlet when typing that URL into the browser.

 If you have any ideas what could be causing this, I would appreciate
 it.

 Is it possible to change the path to something other than the module
 name?

--

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 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 2.0 pls help

2009-12-11 Thread ben fenster
i have a project with to modules it compiles with no errors
when i try to run it after setting the module to run in run
configuration the development shows everything is ok but dont give me
any link that i can use for the browser

--

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 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 2.0 pls help

2009-12-11 Thread ben fenster
m sorry 2 modules :)

On 11 דצמבר, 13:14, ben fenster fenster@gmail.com wrote:
 i have a project with to modules it compiles with no errors
 when i try to run it after setting the module to run in run
 configuration the development shows everything is ok but dont give me
 any link that i can use for the browser

--

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 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 2.0 pls help

2009-12-11 Thread ben fenster
no each one in a diffrent folder inside the war  the forlder is names
acording to the full package name of its module for instance module x
sits in war/bcom.bla.x

On 11 דצמבר, 18:50, Rajeev Dayal rda...@google.com wrote:
 What files do you have in your war directory?
 Are both modules listed as startup modules under Project Properties -
 Google - Web Toolkit?

 On Fri, Dec 11, 2009 at 6:49 AM, ben fenster fenster@gmail.com wrote:
  m sorry 2 modules :)

  On 11 דצמבר, 13:14, ben fenster fenster@gmail.com wrote:
   i have a project with to modules it compiles with no errors
   when i try to run it after setting the module to run in run
   configuration the development shows everything is ok but dont give me
   any link that i can use for the browser

  --

  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 to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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 2.0 pls help

2009-12-11 Thread ben fenster
the name is  modulen ame + .html

On 11 דצמבר, 21:15, Rajeev Dayal rda...@google.com wrote:
 What is the name of your host HTML page (which loads up the GWT Module)?
 Where is it located?

 On Fri, Dec 11, 2009 at 2:13 PM, ben fenster fenster@gmail.com wrote:
  no each one in a diffrent folder inside the war  the forlder is names
  acording to the full package name of its module for instance module x
  sits in war/bcom.bla.x

  On 11 דצמבר, 18:50, Rajeev Dayal rda...@google.com wrote:
   What files do you have in your war directory?
   Are both modules listed as startup modules under Project Properties -
   Google - Web Toolkit?

   On Fri, Dec 11, 2009 at 6:49 AM, ben fenster fenster@gmail.com
  wrote:
m sorry 2 modules :)

On 11 דצמבר, 13:14, ben fenster fenster@gmail.com wrote:
 i have a project with to modules it compiles with no errors
 when i try to run it after setting the module to run in run
 configuration the development shows everything is ok but dont give me
 any link that i can use for the browser

--

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 to
google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@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-tool...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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 2.0 pls help

2009-12-11 Thread ben fenster
i figured it out thanks alot :)

On 11 דצמבר, 21:15, Rajeev Dayal rda...@google.com wrote:
 What is the name of your host HTML page (which loads up the GWT Module)?
 Where is it located?

 On Fri, Dec 11, 2009 at 2:13 PM, ben fenster fenster@gmail.com wrote:
  no each one in a diffrent folder inside the war  the forlder is names
  acording to the full package name of its module for instance module x
  sits in war/bcom.bla.x

  On 11 דצמבר, 18:50, Rajeev Dayal rda...@google.com wrote:
   What files do you have in your war directory?
   Are both modules listed as startup modules under Project Properties -
   Google - Web Toolkit?

   On Fri, Dec 11, 2009 at 6:49 AM, ben fenster fenster@gmail.com
  wrote:
m sorry 2 modules :)

On 11 דצמבר, 13:14, ben fenster fenster@gmail.com wrote:
 i have a project with to modules it compiles with no errors
 when i try to run it after setting the module to run in run
 configuration the development shows everything is ok but dont give me
 any link that i can use for the browser

--

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 to
google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@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-tool...@googlegroups.com.
  To unsubscribe from this group, send email to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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 2.0 pls help

2009-12-11 Thread ben fenster
i figured it out thanks alot :)

On 11 דצמבר, 23:36, ben fenster fenster@gmail.com wrote:
 the name is  modulen ame + .html

 On 11 דצמבר, 21:15, Rajeev Dayal rda...@google.com wrote:

  What is the name of your host HTML page (which loads up the GWT Module)?
  Where is it located?

  On Fri, Dec 11, 2009 at 2:13 PM, ben fenster fenster@gmail.com wrote:
   no each one in a diffrent folder inside the war  the forlder is names
   acording to the full package name of its module for instance module x
   sits in war/bcom.bla.x

   On 11 דצמבר, 18:50, Rajeev Dayal rda...@google.com wrote:
What files do you have in your war directory?
Are both modules listed as startup modules under Project Properties -
Google - Web Toolkit?

On Fri, Dec 11, 2009 at 6:49 AM, ben fenster fenster@gmail.com
   wrote:
 m sorry 2 modules :)

 On 11 דצמבר, 13:14, ben fenster fenster@gmail.com wrote:
  i have a project with to modules it compiles with no errors
  when i try to run it after setting the module to run in run
  configuration the development shows everything is ok but dont give 
  me
  any link that i can use for the browser

 --

 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 to
 google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
   google-web-toolkit%2bunsubscr...@googlegroups.comgoogle-web-toolkit%252bunsubscr...@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-tool...@googlegroups.com.
   To unsubscribe from this group, send email to
   google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@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-tool...@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 2.0 + apache + rpc pls help

2009-12-11 Thread ben fenster
i am trying to run a project that include gwt as client side and rpc +
php as server side
the only webserver iknow capable of running all of those together is
apache but every time i try to call rpc i get an error of page not
found



DOCTYPE HTML PUBLIC -//IETF//DTD HTML 2.0//EN
htmlhead
title404 Not Found/title
/headbody
h1Not Found/h1
pThe requested URL /vzooo/ChatServerlet was not found on this
server./p
pAdditionally, a 406 Not Acceptable
error was encountered while trying to use an ErrorDocument to handle
the request./p
hr
addressApache/2.2.12 (Win32) DAV/2 mod_ssl/2.2.12 OpenSSL/0.9.8k
mod_autoindex_color PHP/5.3.0 mod_perl/2.0.4 Perl/v5.10.0 Server at
localhost Port 80/address
/body/html


pls  help someone

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




pls help gwt compile

2009-12-08 Thread ben fenster
the project runs great in hosted mode compiles with no errors but when
running in browser mode i keep getting old version does it have
anything to do with me running apache as web server and using gwt no
server argument?

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




pls help !!!

2009-12-07 Thread ben fenster
i am trying to run my gwt module in firefox there is no errors, it
compiles ok without any errors or warnning
it also runs great in hosted mode but when i try to run it in firefox
(or any other browser) it says

GWT module 'vzooo' needs to be (re)compiled, please run a compile or
use the Compile/Browse button in hosted mode

--

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 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: pls help !!!

2009-12-07 Thread ben fenster
no i ment there is no compile errors but it will only run in hosted
not in any browser

it may have somethiong to do with the fact  i  am using no server
argument to use php and in the same time have a cerverlet for comet?

On 7 דצמבר, 13:26, Alexander the.malk...@gmail.com wrote:
 In first line you said firefox is OK and then firefox is NOT OK. Huh?

 2009/12/7 ben fenster fenster@gmail.com



  i am trying to run my gwt module in firefox there is no errors, it
  compiles ok without any errors or warnning
  it also runs great in hosted mode but when i try to run it in firefox
  (or any other browser) it says

  GWT module 'vzooo' needs to be (re)compiled, please run a compile or
  use the Compile/Browse button in hosted mode

  --

  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 to
  google-web-toolkit+unsubscr...@googlegroups.comgoogle-web-toolkit%2bunsubscr...@googlegroups.com
  .
  For more options, visit this group at
 http://groups.google.com/group/google-web-toolkit?hl=en.

 --
 Regards,
 Alexander

--

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 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: DecoratedPopupPanel

2009-12-04 Thread ben fenster
there is a chapter on it in google application book and a code sample
to download in the book site
i think its in chapter 6
http://groups.google.com/group/gwtapps

On 3 דצמבר, 12:53, Tony tony.kyr...@gmail.com wrote:
 how can i make a DecoratedPopupPanel move like a DialogBox?

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.




comet

2009-11-30 Thread ben fenster
can anyone tell me what is the best free comet server
i came across so meny diffrent servers and i dont know wether to
implement one in rpc or use one of the other  already built servers
like Liberator

--

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

2009-11-24 Thread ben fenster
10x u saved me :)

On 24 נובמבר, 07:43, Jason Morris lem...@gmail.com wrote:
 Eclipse fills in methods based on the JDK installed, not the GWT emulated 
 JRE. GWT's implementation
 of the JRE sits in the package com.google.gwt.emul.java, not java.

 ben fenster wrote:
  thanks i removed the override and it worked can you please tell me why
   did act like that since the eclipse filled out the implementation
  acording to the interface and if the method is not suppored  how did
  it got into the imlementation in the first place

  On 23 נובמבר, 16:52, Jason Morris lem...@gmail.com wrote:
  Hi ben,

  If you are using a version of GWT  2.0 this error appears because the 
  standard GWT List interface
  doesn't have the subList method. You can either remove the @Override 
  annotation from that method, or
  extend AbstractList instead of implementing List directly (generally 
  considered a better option
  anyways).

  You could also upgrade to GWT 2.0-rc, which has the subList method 
  included in the interface definition.

  Hope that helps.
  //Jason

  ben fenster wrote:
  import java.util.Collection;
  import java.util.Iterator;
  import java.util.List;
  import java.util.ListIterator;
  public class bla implements ListString {
    �...@override
     public boolean add(String e) {
             // TODO Auto-generated method stub
             return false;
     }
    �...@override
     public void add(int index, String element) {
             // TODO Auto-generated method stub
     }
    �...@override
     public boolean addAll(Collection? extends String c) {
             // TODO Auto-generated method stub
             return false;
     }
    �...@override
     public boolean addAll(int index, Collection? extends String c) {
             // TODO Auto-generated method stub
             return false;
     }
    �...@override
     public void clear() {
             // TODO Auto-generated method stub
     }
    �...@override
     public boolean contains(Object o) {
             // TODO Auto-generated method stub
             return false;
     }
    �...@override
     public boolean containsAll(Collection? c) {
             // TODO Auto-generated method stub
             return false;
     }
    �...@override
     public String get(int index) {
             // TODO Auto-generated method stub
             return null;
     }
    �...@override
     public int indexOf(Object o) {
             // TODO Auto-generated method stub
             return 0;
     }
    �...@override
     public boolean isEmpty() {
             // TODO Auto-generated method stub
             return false;
     }
    �...@override
     public IteratorString iterator() {
             // TODO Auto-generated method stub
             return null;
     }
    �...@override
     public int lastIndexOf(Object o) {
             // TODO Auto-generated method stub
             return 0;
     }
    �...@override
     public ListIteratorString listIterator() {
             // TODO Auto-generated method stub
             return null;
     }
    �...@override
     public ListIteratorString listIterator(int index) {
             // TODO Auto-generated method stub
             return null;
     }
    �...@override
     public boolean remove(Object o) {
             // TODO Auto-generated method stub
             return false;
     }
    �...@override
     public String remove(int index) {
             // TODO Auto-generated method stub
             return null;
     }
    �...@override
     public boolean removeAll(Collection? c) {
             // TODO Auto-generated method stub
             return false;
     }
    �...@override
     public boolean retainAll(Collection? c) {
             // TODO Auto-generated method stub
             return false;
     }
    �...@override
     public String set(int index, String element) {
             // TODO Auto-generated method stub
             return null;
     }
    �...@override
     public int size() {
             // TODO Auto-generated method stub
             return 0;
     }
    �...@override
     public ListString subList(int fromIndex, int toIndex) {
             return null;
     }
    �...@override
     public Object[] toArray() {
             // TODO Auto-generated method stub
             return null;
     }
    �...@override
     public T T[] toArray(T[] a) {
             // TODO Auto-generated method stub
             return null;
     }
  }
   i am did the exact same thing and got
  [ERROR] Line 131: The method subList(int, int) of type bla must
  override or implement a supertype method
  On 23 נובמבר, 16:07, Paul MERLIN eskato...@gmail.com wrote:
  Le lundi 23 novembre 2009 15:05:18, ben fenster a écrit :
  im sorry but i was under some presure i have a close deadline and
  thats pretty much the only problem idid you create an anonymous class
  or a class that implements the list
  public class Test implements ListString { ... }
  --
  You received this message because you are subscribed

java.util.List

2009-11-23 Thread ben fenster
why cant i make a sub class for java.util.List
every time i do i get compile errors

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=.




Re: java.util.List

2009-11-23 Thread ben fenster
i know !!!
but when i try to implement it  and the compile it  i get a general
error saying  my main module cant be loaded
so baby ! show me any class you create that inherites from List and of
course compile it !

On 23 נובמבר, 14:10, Lothar Kimmeringer j...@kimmeringer.de wrote:
 ben fenster schrieb:

  why cant i make a sub class for java.util.List
  every time i do i get compile errors

 Reading the error-message should help but independent
 from that, the the answer is: It's an interface, baby.

 Regards, Lothar

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=.




Re: java.util.List

2009-11-23 Thread ben fenster
);
}
@Override
public boolean containsAll(Collection? c) {
// TODO Auto-generated method stub
return m_items.containsAll(c);
}
@Override
public T get(int index) {
// TODO Auto-generated method stub
return m_items.get(index);
}
@Override
public int indexOf(Object o) {
// TODO Auto-generated method stub
return m_items.indexOf(o);
}
@Override
public boolean isEmpty() {
// TODO Auto-generated method stub
return m_items.isEmpty();
}
@Override
public IteratorT iterator() {

return m_items.iterator();
}
@Override
public int lastIndexOf(Object o) {

return m_items.lastIndexOf(o);
}
@Override
public ListIteratorT listIterator() {
// TODO Auto-generated method stub
return m_items.listIterator();
}
@Override
public ListIteratorT listIterator(int index) {
// TODO Auto-generated method stub
return m_items.listIterator(index);
}
@Override
public boolean remove(Object o) {
return m_items.remove(o);
}
@Override
public T remove(int index) {
// TODO Auto-generated method stub
return m_items.get(index);
}
@Override
public boolean removeAll(Collection? c) {
// TODO Auto-generated method stub
return m_items.removeAll(c);
}
@Override
public boolean retainAll(Collection? c) {
// TODO Auto-generated method stub
return m_items.retainAll(c);
}
@Override
public T set(int index, T element) {
// TODO Auto-generated method stub
return m_items.set(index, element);
}
@Override
public int size() {
// TODO Auto-generated method stub
return m_items.size();
}
@Override
public ListT subList(int fromIndex, int toIndex) {

return m_items.subList(fromIndex, toIndex);
}
@Override
public Object[] toArray() {
return m_items.toArray();
}
@Override
public T T[] toArray(T[] a) {
// TODO Auto-generated method stub
return m_items.toArray(a);
}



}
On 23 נובמבר, 14:49, Lothar Kimmeringer j...@kimmeringer.de wrote:
 ben fenster schrieb:

  i know !!!

 So why do you try to create a subclass of an interface?

  but when i try to implement it

 Implement != subclass.

   and the compile it  i get a general
  error saying  my main module cant be loaded

 You try to compile it for deployment or are we talking about
 the hosted mode? if the latter, what's the error-message
 showing up in the details-pane if you click on the main-entry

  so baby ! show me any class you create that inherites from List and of
  course compile it !

 I come to the impression that you think that I'm some kind
 of support-guy you have the right to use for free. That's
 not the case, so please work on your way of asking questions:

  - Don't use exclamation and question marks excessively
  - Give as much information as possible to be able to
    reproduce or at least understand your problem
  - Don't forget: It's you, who want to be helped, so ask
    in a way motivating as much people as possible to
    help you.

 I never needed to create a new implementation of java.util.List
 but alway use ArrayList for the client side of the application.
 Most likely java.util.List is not part of the client JRE that
 is converted to Javascript leading to the error (but that's just
 a guess, the error-message in the details-pane should clearify
 that).

 Regards, Lothar

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=.




Re: java.util.List

2009-11-23 Thread ben fenster
by the way the error is
[ERROR] Failure to load module 'vzooo'

On 23 נובמבר, 14:49, Lothar Kimmeringer j...@kimmeringer.de wrote:
 ben fenster schrieb:

  i know !!!

 So why do you try to create a subclass of an interface?

  but when i try to implement it

 Implement != subclass.

   and the compile it  i get a general
  error saying  my main module cant be loaded

 You try to compile it for deployment or are we talking about
 the hosted mode? if the latter, what's the error-message
 showing up in the details-pane if you click on the main-entry

  so baby ! show me any class you create that inherites from List and of
  course compile it !

 I come to the impression that you think that I'm some kind
 of support-guy you have the right to use for free. That's
 not the case, so please work on your way of asking questions:

  - Don't use exclamation and question marks excessively
  - Give as much information as possible to be able to
    reproduce or at least understand your problem
  - Don't forget: It's you, who want to be helped, so ask
    in a way motivating as much people as possible to
    help you.

 I never needed to create a new implementation of java.util.List
 but alway use ArrayList for the client side of the application.
 Most likely java.util.List is not part of the client JRE that
 is converted to Javascript leading to the error (but that's just
 a guess, the error-message in the details-pane should clearify
 that).

 Regards, Lothar

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=.




Re: java.util.List

2009-11-23 Thread ben fenster
yes its in a client package and i also tried to create an empty
implementation of INTEGER and it didnt work
did you try to run the module with the  empty ListString in hosted
mode

On 23 נובמבר, 15:53, Nathan Wells nwwe...@gmail.com wrote:
 1) Is your class in a client package? by that, I mean does the
 parent package have a *.gwt.xml file, and does it declare the
 SmartQueue package as a source package?

 If you haven't already, you might want to read this:

 http://code.google.com/webtoolkit/doc/1.6/DevGuideCodingBasics.html

 along with the rest of the Developer Guide. and probably the FAQ...
 and the Reference Guide... and watch a few Google I/O videos.

 On Nov 23, 6:17 am, ben fenster fenster@gmail.com wrote:

  by the way the error is
  [ERROR] Failure to load module 'vzooo'

  On 23 נובמבר, 14:49, Lothar Kimmeringer j...@kimmeringer.de wrote:

   ben fenster schrieb:

i know !!!

   So why do you try to create a subclass of an interface?

but when i try to implement it

   Implement != subclass.

 and the compile it  i get a general
error saying  my main module cant be loaded

   You try to compile it for deployment or are we talking about
   the hosted mode? if the latter, what's the error-message
   showing up in the details-pane if you click on the main-entry

so baby ! show me any class you create that inherites from List and of
course compile it !

   I come to the impression that you think that I'm some kind
   of support-guy you have the right to use for free. That's
   not the case, so please work on your way of asking questions:

    - Don't use exclamation and question marks excessively
    - Give as much information as possible to be able to
      reproduce or at least understand your problem
    - Don't forget: It's you, who want to be helped, so ask
      in a way motivating as much people as possible to
      help you.

   I never needed to create a new implementation of java.util.List
   but alway use ArrayList for the client side of the application.
   Most likely java.util.List is not part of the client JRE that
   is converted to Javascript leading to the error (but that's just
   a guess, the error-message in the details-pane should clearify
   that).

   Regards, Lothar

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=.




Re: java.util.List

2009-11-23 Thread ben fenster
im sorry but i was under some presure i have a close deadline and
thats pretty much the only problem idid you create an anonymous class
or a class that implements the list

On 23 נובמבר, 15:50, Paul MERLIN eskato...@gmail.com wrote:
 Le lundi 23 novembre 2009 12:29:10, ben fenster a écrit :

  why cant i make a sub class for java.util.List
  every time i do i get compile errors

 Documentation is clear :

   Google Web Toolkit includes a library that emulates a subset of the Java 
 runtime library. The list
     below shows the set of JRE packages, types and methods that GWT can 
 translate automatically.
    Note that in some cases, only a subset of methods is supported for a given 
 type.

    http://code.google.com/intl/fr/webtoolkit/doc/1.6/RefJreEmulation.html

 java.util.List is in the emulated list but you'd better check if all methods 
 are supported

 I tried to write an empty implementation (no time to waste) of ListString, 
 and GWTCompiler seems to be happy with it,
 so I'd suspect an error in your code (using something else that is not 
 supported by gwt jre emulation).

 By the way, you're asking insistingly without giving any valuable information 
 for us to help you ... IMHO that's
 impolite.

 /Paul

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=.




Re: java.util.List

2009-11-23 Thread ben fenster

import java.util.Collection;
import java.util.Iterator;
import java.util.List;
import java.util.ListIterator;

public class bla implements ListString {

@Override
public boolean add(String e) {
// TODO Auto-generated method stub
return false;
}

@Override
public void add(int index, String element) {
// TODO Auto-generated method stub

}

@Override
public boolean addAll(Collection? extends String c) {
// TODO Auto-generated method stub
return false;
}

@Override
public boolean addAll(int index, Collection? extends String c) {
// TODO Auto-generated method stub
return false;
}

@Override
public void clear() {
// TODO Auto-generated method stub

}

@Override
public boolean contains(Object o) {
// TODO Auto-generated method stub
return false;
}

@Override
public boolean containsAll(Collection? c) {
// TODO Auto-generated method stub
return false;
}

@Override
public String get(int index) {
// TODO Auto-generated method stub
return null;
}

@Override
public int indexOf(Object o) {
// TODO Auto-generated method stub
return 0;
}

@Override
public boolean isEmpty() {
// TODO Auto-generated method stub
return false;
}

@Override
public IteratorString iterator() {
// TODO Auto-generated method stub
return null;
}

@Override
public int lastIndexOf(Object o) {
// TODO Auto-generated method stub
return 0;
}

@Override
public ListIteratorString listIterator() {
// TODO Auto-generated method stub
return null;
}

@Override
public ListIteratorString listIterator(int index) {
// TODO Auto-generated method stub
return null;
}

@Override
public boolean remove(Object o) {
// TODO Auto-generated method stub
return false;
}

@Override
public String remove(int index) {
// TODO Auto-generated method stub
return null;
}

@Override
public boolean removeAll(Collection? c) {
// TODO Auto-generated method stub
return false;
}

@Override
public boolean retainAll(Collection? c) {
// TODO Auto-generated method stub
return false;
}

@Override
public String set(int index, String element) {
// TODO Auto-generated method stub
return null;
}

@Override
public int size() {
// TODO Auto-generated method stub
return 0;
}

@Override
public ListString subList(int fromIndex, int toIndex) {

return null;
}

@Override
public Object[] toArray() {
// TODO Auto-generated method stub
return null;
}

@Override
public T T[] toArray(T[] a) {
// TODO Auto-generated method stub
return null;
}

}


 i am did the exact same thing and got

[ERROR] Line 131: The method subList(int, int) of type bla must
override or implement a supertype method



On 23 נובמבר, 16:07, Paul MERLIN eskato...@gmail.com wrote:
 Le lundi 23 novembre 2009 15:05:18, ben fenster a écrit :

  im sorry but i was under some presure i have a close deadline and
  thats pretty much the only problem idid you create an anonymous class
  or a class that implements the list

 public class Test implements ListString { ... }

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=.




Re: java.util.List

2009-11-23 Thread ben fenster
no i am using gwt 1.7
i cant understand the error because i do  implement the method
moreover the method was auto filled by eclipse

On 23 נובמבר, 16:52, Jason Morris lem...@gmail.com wrote:
 Hi ben,

 If you are using a version of GWT  2.0 this error appears because the 
 standard GWT List interface
 doesn't have the subList method. You can either remove the @Override 
 annotation from that method, or
 extend AbstractList instead of implementing List directly (generally 
 considered a better option
 anyways).

 You could also upgrade to GWT 2.0-rc, which has the subList method included 
 in the interface definition.

 Hope that helps.
 //Jason

 ben fenster wrote:
  import java.util.Collection;
  import java.util.Iterator;
  import java.util.List;
  import java.util.ListIterator;

  public class bla implements ListString {

    �...@override
     public boolean add(String e) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public void add(int index, String element) {
             // TODO Auto-generated method stub

     }

    �...@override
     public boolean addAll(Collection? extends String c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public boolean addAll(int index, Collection? extends String c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public void clear() {
             // TODO Auto-generated method stub

     }

    �...@override
     public boolean contains(Object o) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public boolean containsAll(Collection? c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public String get(int index) {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public int indexOf(Object o) {
             // TODO Auto-generated method stub
             return 0;
     }

    �...@override
     public boolean isEmpty() {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public IteratorString iterator() {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public int lastIndexOf(Object o) {
             // TODO Auto-generated method stub
             return 0;
     }

    �...@override
     public ListIteratorString listIterator() {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public ListIteratorString listIterator(int index) {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public boolean remove(Object o) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public String remove(int index) {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public boolean removeAll(Collection? c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public boolean retainAll(Collection? c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public String set(int index, String element) {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public int size() {
             // TODO Auto-generated method stub
             return 0;
     }

    �...@override
     public ListString subList(int fromIndex, int toIndex) {

             return null;
     }

    �...@override
     public Object[] toArray() {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public T T[] toArray(T[] a) {
             // TODO Auto-generated method stub
             return null;
     }

  }

   i am did the exact same thing and got

  [ERROR] Line 131: The method subList(int, int) of type bla must
  override or implement a supertype method

  On 23 נובמבר, 16:07, Paul MERLIN eskato...@gmail.com wrote:
  Le lundi 23 novembre 2009 15:05:18, ben fenster a écrit :

  im sorry but i was under some presure i have a close deadline and
  thats pretty much the only problem idid you create an anonymous class
  or a class that implements the list
  public class Test implements ListString { ... }

  --

  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 to 
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group 
  athttp://groups.google.com/group/google-web-toolkit?hl=.

--

You received this message because you are subscribed

Re: java.util.List

2009-11-23 Thread ben fenster
thanks i removed the override and it worked can you please tell me why
 did act like that since the eclipse filled out the implementation
acording to the interface and if the method is not suppored  how did
it got into the imlementation in the first place

On 23 נובמבר, 16:52, Jason Morris lem...@gmail.com wrote:
 Hi ben,

 If you are using a version of GWT  2.0 this error appears because the 
 standard GWT List interface
 doesn't have the subList method. You can either remove the @Override 
 annotation from that method, or
 extend AbstractList instead of implementing List directly (generally 
 considered a better option
 anyways).

 You could also upgrade to GWT 2.0-rc, which has the subList method included 
 in the interface definition.

 Hope that helps.
 //Jason

 ben fenster wrote:
  import java.util.Collection;
  import java.util.Iterator;
  import java.util.List;
  import java.util.ListIterator;

  public class bla implements ListString {

    �...@override
     public boolean add(String e) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public void add(int index, String element) {
             // TODO Auto-generated method stub

     }

    �...@override
     public boolean addAll(Collection? extends String c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public boolean addAll(int index, Collection? extends String c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public void clear() {
             // TODO Auto-generated method stub

     }

    �...@override
     public boolean contains(Object o) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public boolean containsAll(Collection? c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public String get(int index) {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public int indexOf(Object o) {
             // TODO Auto-generated method stub
             return 0;
     }

    �...@override
     public boolean isEmpty() {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public IteratorString iterator() {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public int lastIndexOf(Object o) {
             // TODO Auto-generated method stub
             return 0;
     }

    �...@override
     public ListIteratorString listIterator() {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public ListIteratorString listIterator(int index) {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public boolean remove(Object o) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public String remove(int index) {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public boolean removeAll(Collection? c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public boolean retainAll(Collection? c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public String set(int index, String element) {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public int size() {
             // TODO Auto-generated method stub
             return 0;
     }

    �...@override
     public ListString subList(int fromIndex, int toIndex) {

             return null;
     }

    �...@override
     public Object[] toArray() {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public T T[] toArray(T[] a) {
             // TODO Auto-generated method stub
             return null;
     }

  }

   i am did the exact same thing and got

  [ERROR] Line 131: The method subList(int, int) of type bla must
  override or implement a supertype method

  On 23 נובמבר, 16:07, Paul MERLIN eskato...@gmail.com wrote:
  Le lundi 23 novembre 2009 15:05:18, ben fenster a écrit :

  im sorry but i was under some presure i have a close deadline and
  thats pretty much the only problem idid you create an anonymous class
  or a class that implements the list
  public class Test implements ListString { ... }

  --

  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 to 
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group

Re: java.util.List

2009-11-23 Thread ben fenster
thanks i removed the override and it worked can you please tell me why
 did act like that since the eclipse filled out the implementation
acording to the interface and if the method is not suppored  how did
it got into the imlementation in the first place

On 23 נובמבר, 16:52, Jason Morris lem...@gmail.com wrote:
 Hi ben,

 If you are using a version of GWT  2.0 this error appears because the 
 standard GWT List interface
 doesn't have the subList method. You can either remove the @Override 
 annotation from that method, or
 extend AbstractList instead of implementing List directly (generally 
 considered a better option
 anyways).

 You could also upgrade to GWT 2.0-rc, which has the subList method included 
 in the interface definition.

 Hope that helps.
 //Jason

 ben fenster wrote:
  import java.util.Collection;
  import java.util.Iterator;
  import java.util.List;
  import java.util.ListIterator;

  public class bla implements ListString {

    �...@override
     public boolean add(String e) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public void add(int index, String element) {
             // TODO Auto-generated method stub

     }

    �...@override
     public boolean addAll(Collection? extends String c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public boolean addAll(int index, Collection? extends String c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public void clear() {
             // TODO Auto-generated method stub

     }

    �...@override
     public boolean contains(Object o) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public boolean containsAll(Collection? c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public String get(int index) {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public int indexOf(Object o) {
             // TODO Auto-generated method stub
             return 0;
     }

    �...@override
     public boolean isEmpty() {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public IteratorString iterator() {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public int lastIndexOf(Object o) {
             // TODO Auto-generated method stub
             return 0;
     }

    �...@override
     public ListIteratorString listIterator() {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public ListIteratorString listIterator(int index) {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public boolean remove(Object o) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public String remove(int index) {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public boolean removeAll(Collection? c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public boolean retainAll(Collection? c) {
             // TODO Auto-generated method stub
             return false;
     }

    �...@override
     public String set(int index, String element) {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public int size() {
             // TODO Auto-generated method stub
             return 0;
     }

    �...@override
     public ListString subList(int fromIndex, int toIndex) {

             return null;
     }

    �...@override
     public Object[] toArray() {
             // TODO Auto-generated method stub
             return null;
     }

    �...@override
     public T T[] toArray(T[] a) {
             // TODO Auto-generated method stub
             return null;
     }

  }

   i am did the exact same thing and got

  [ERROR] Line 131: The method subList(int, int) of type bla must
  override or implement a supertype method

  On 23 נובמבר, 16:07, Paul MERLIN eskato...@gmail.com wrote:
  Le lundi 23 novembre 2009 15:05:18, ben fenster a écrit :

  im sorry but i was under some presure i have a close deadline and
  thats pretty much the only problem idid you create an anonymous class
  or a class that implements the list
  public class Test implements ListString { ... }

  --

  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 to 
  google-web-toolkit+unsubscr...@googlegroups.com.
  For more options, visit this group

Re: GWT Chat

2009-11-16 Thread ben fenster
how can the comet gwt lib keep a live connection


On 16 נובמבר, 16:01, Roy roy.smith@googlemail.com wrote:
 App Engine supports XMPP

 On Nov 16, 1:38 pm, Prempena pascal.rempena...@gmail.com wrote:

  I've tried to find a solution with App Engine for weeks without any
  success. Server push is not only useful for Chat. It can be used to
  inform users of some events coming from the Server.

  This is issue is referenced at a good place in the issue 
  list:http://code.google.com/p/googleappengine/issues/detail?id=377

  If someone is able to find a good solution, I'm interested too.

--

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 to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=.




Re: PHP + GWT ????

2009-11-10 Thread ben fenster

yes it works great thanks :)
but i was wondering how the hell can gwt debug the js code running on
another web
server in my case apache ?!??!?

On Nov 9, 9:18 pm, Ian Bambury ianbamb...@gmail.com wrote:
 Hi Ben,

 I've been away for a long weekend and only just got back. Is it working OK?

 Ian

 http://examples.roughian.com

 2009/11/9 ben fenster fenster@gmail.com



  thank u very much i managed to use -noserver and it works great
  how the hell can gwt debug the js code running on another web
  server ?!??!?

  On Nov 8, 1:55 pm, ben fenster fenster@gmail.com wrote:
   pls help i cant use hosted mode even after installing apache setting
   the directory to my war
   if i use browser it works fine but not in hosted mode pls help me

   On Nov 4, 6:16 pm, Ian Bambury ianbamb...@gmail.com wrote:

OK.

The way I do it is like this:

In the program arguments you need

-noserver -port 1080

if you don't put the port, it will default to 80

in my launch file for my 1.7 minimum app I have

stringAttribute key=org.eclipse.jdt.launching.PROGRAM_ARGUMENTS
value=-noserver -port 80 -startupUrl index.html
com.roughian.appmin_1_7.Module/

but however you run it, you need those arguments.

You also need a local web server. I use Abyss (since Apache seemed like
overkill) and set it up so that the document root was pointing to the
  /war/
directory of my project and the port it was using was 1080, and it was
  also
set up to deal with PHP, of course.

As far as I can remember, that's all you have to do.

The advantage of setting a port number is that you can then set up
  *another*
project with another port number, and another instance of Abyss which
  is
pointed at the new project's /war/ directory and uses the new port
  number.

What is more, you can run both projects in hosted mode at the same
  time.

In GWT 2.0, you can do exactly the same thing, but if you want to run
  more
than one project in development mode at the same time, you will also
  need to
add

-portHosted 9998

(or some other unique hosted mode port number)

If that doesn't make sense, or doesn't work, or you need help setting
  up
Abyss (if you decide to use it), let me know.

Ian

   http://examples.roughian.com

2009/11/4 ben fenster fenster@gmail.com

 it will help me alot if you could alaberate on the subject :)

 On 4 נובמבר, 16:13, Ian Bambury ianbamb...@gmail.com wrote:
  Have everything in the same place if you can.

  Run with the -noserver option and have a local web server point to
  your
 war
  directory

  If that's too cryptic an answer, just shout and I'll give more
  detail.

  Ian

 http://examples.roughian.com

  2009/11/4 ben fenster fenster@gmail.com

   how can i send a post request to my php page without getting an
   exception about same orign execution restriction
--~--~-~--~~~---~--~~
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: PHP + GWT ????

2009-11-09 Thread ben fenster

thank u very much i managed to use -noserver and it works great
how the hell can gwt debug the js code running on another web
server ?!??!?

On Nov 8, 1:55 pm, ben fenster fenster@gmail.com wrote:
 pls help i cant use hosted mode even after installing apache setting
 the directory to my war
 if i use browser it works fine but not in hosted mode pls help me

 On Nov 4, 6:16 pm, Ian Bambury ianbamb...@gmail.com wrote:

  OK.

  The way I do it is like this:

  In the program arguments you need

  -noserver -port 1080

  if you don't put the port, it will default to 80

  in my launch file for my 1.7 minimum app I have

  stringAttribute key=org.eclipse.jdt.launching.PROGRAM_ARGUMENTS
  value=-noserver -port 80 -startupUrl index.html
  com.roughian.appmin_1_7.Module/

  but however you run it, you need those arguments.

  You also need a local web server. I use Abyss (since Apache seemed like
  overkill) and set it up so that the document root was pointing to the /war/
  directory of my project and the port it was using was 1080, and it was also
  set up to deal with PHP, of course.

  As far as I can remember, that's all you have to do.

  The advantage of setting a port number is that you can then set up *another*
  project with another port number, and another instance of Abyss which is
  pointed at the new project's /war/ directory and uses the new port number.

  What is more, you can run both projects in hosted mode at the same time.

  In GWT 2.0, you can do exactly the same thing, but if you want to run more
  than one project in development mode at the same time, you will also need to
  add

  -portHosted 9998

  (or some other unique hosted mode port number)

  If that doesn't make sense, or doesn't work, or you need help setting up
  Abyss (if you decide to use it), let me know.

  Ian

 http://examples.roughian.com

  2009/11/4 ben fenster fenster@gmail.com

   it will help me alot if you could alaberate on the subject :)

   On 4 נובמבר, 16:13, Ian Bambury ianbamb...@gmail.com wrote:
Have everything in the same place if you can.

Run with the -noserver option and have a local web server point to your
   war
directory

If that's too cryptic an answer, just shout and I'll give more detail.

Ian

   http://examples.roughian.com

2009/11/4 ben fenster fenster@gmail.com

 how can i send a post request to my php page without getting an
 exception about same orign execution restriction
--~--~-~--~~~---~--~~
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: PHP + GWT ????

2009-11-08 Thread ben fenster

pls help i cant use hosted mode even after installing apache setting
the directory to my war
if i use browser it works fine but not in hosted mode pls help me

On Nov 4, 6:16 pm, Ian Bambury ianbamb...@gmail.com wrote:
 OK.

 The way I do it is like this:

 In the program arguments you need

 -noserver -port 1080

 if you don't put the port, it will default to 80

 in my launch file for my 1.7 minimum app I have

 stringAttribute key=org.eclipse.jdt.launching.PROGRAM_ARGUMENTS
 value=-noserver -port 80 -startupUrl index.html
 com.roughian.appmin_1_7.Module/

 but however you run it, you need those arguments.

 You also need a local web server. I use Abyss (since Apache seemed like
 overkill) and set it up so that the document root was pointing to the /war/
 directory of my project and the port it was using was 1080, and it was also
 set up to deal with PHP, of course.

 As far as I can remember, that's all you have to do.

 The advantage of setting a port number is that you can then set up *another*
 project with another port number, and another instance of Abyss which is
 pointed at the new project's /war/ directory and uses the new port number.

 What is more, you can run both projects in hosted mode at the same time.

 In GWT 2.0, you can do exactly the same thing, but if you want to run more
 than one project in development mode at the same time, you will also need to
 add

 -portHosted 9998

 (or some other unique hosted mode port number)

 If that doesn't make sense, or doesn't work, or you need help setting up
 Abyss (if you decide to use it), let me know.

 Ian

 http://examples.roughian.com

 2009/11/4 ben fenster fenster@gmail.com



  it will help me alot if you could alaberate on the subject :)

  On 4 נובמבר, 16:13, Ian Bambury ianbamb...@gmail.com wrote:
   Have everything in the same place if you can.

   Run with the -noserver option and have a local web server point to your
  war
   directory

   If that's too cryptic an answer, just shout and I'll give more detail.

   Ian

  http://examples.roughian.com

   2009/11/4 ben fenster fenster@gmail.com

how can i send a post request to my php page without getting an
exception about same orign execution restriction
--~--~-~--~~~---~--~~
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: PHP + GWT ????

2009-11-08 Thread ben fenster



On Nov 4, 6:16 pm, Ian Bambury ianbamb...@gmail.com wrote:
 OK.

 The way I do it is like this:

 In the program arguments you need

 -noserver -port 1080

 if you don't put the port, it will default to 80

 in my launch file for my 1.7 minimum app I have

 stringAttribute key=org.eclipse.jdt.launching.PROGRAM_ARGUMENTS
 value=-noserver -port 80 -startupUrl index.html
 com.roughian.appmin_1_7.Module/

 but however you run it, you need those arguments.

 You also need a local web server. I use Abyss (since Apache seemed like
 overkill) and set it up so that the document root was pointing to the /war/
 directory of my project and the port it was using was 1080, and it was also
 set up to deal with PHP, of course.

 As far as I can remember, that's all you have to do.

 The advantage of setting a port number is that you can then set up *another*
 project with another port number, and another instance of Abyss which is
 pointed at the new project's /war/ directory and uses the new port number.

 What is more, you can run both projects in hosted mode at the same time.

 In GWT 2.0, you can do exactly the same thing, but if you want to run more
 than one project in development mode at the same time, you will also need to
 add

 -portHosted 9998

 (or some other unique hosted mode port number)

 If that doesn't make sense, or doesn't work, or you need help setting up
 Abyss (if you decide to use it), let me know.

 Ian

 http://examples.roughian.com

 2009/11/4 ben fenster fenster@gmail.com



  it will help me alot if you could alaberate on the subject :)

  On 4 נובמבר, 16:13, Ian Bambury ianbamb...@gmail.com wrote:
   Have everything in the same place if you can.

   Run with the -noserver option and have a local web server point to your
  war
   directory

   If that's too cryptic an answer, just shout and I'll give more detail.

   Ian

  http://examples.roughian.com

   2009/11/4 ben fenster fenster@gmail.com

how can i send a post request to my php page without getting an
exception about same orign execution restriction
--~--~-~--~~~---~--~~
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: PHP + GWT ????

2009-11-07 Thread ben fenster

where do i enter the program arguments and the same orign policy apply
to ports also  so how can it be possible to run 2 diffrent web servers
on 2 diffrent ports without getting the error

On Nov 4, 6:16 pm, Ian Bambury ianbamb...@gmail.com wrote:
 OK.

 The way I do it is like this:

 In the program arguments you need

 -noserver -port 1080

 if you don't put the port, it will default to 80

 in my launch file for my 1.7 minimum app I have

 stringAttribute key=org.eclipse.jdt.launching.PROGRAM_ARGUMENTS
 value=-noserver -port 80 -startupUrl index.html
 com.roughian.appmin_1_7.Module/

 but however you run it, you need those arguments.

 You also need a local web server. I use Abyss (since Apache seemed like
 overkill) and set it up so that the document root was pointing to the /war/
 directory of my project and the port it was using was 1080, and it was also
 set up to deal with PHP, of course.

 As far as I can remember, that's all you have to do.

 The advantage of setting a port number is that you can then set up *another*
 project with another port number, and another instance of Abyss which is
 pointed at the new project's /war/ directory and uses the new port number.

 What is more, you can run both projects in hosted mode at the same time.

 In GWT 2.0, you can do exactly the same thing, but if you want to run more
 than one project in development mode at the same time, you will also need to
 add

 -portHosted 9998

 (or some other unique hosted mode port number)

 If that doesn't make sense, or doesn't work, or you need help setting up
 Abyss (if you decide to use it), let me know.

 Ian

 http://examples.roughian.com

 2009/11/4 ben fenster fenster@gmail.com



  it will help me alot if you could alaberate on the subject :)

  On 4 נובמבר, 16:13, Ian Bambury ianbamb...@gmail.com wrote:
   Have everything in the same place if you can.

   Run with the -noserver option and have a local web server point to your
  war
   directory

   If that's too cryptic an answer, just shout and I'll give more detail.

   Ian

  http://examples.roughian.com

   2009/11/4 ben fenster fenster@gmail.com

how can i send a post request to my php page without getting an
exception about same orign execution restriction
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



PHP + GWT ????

2009-11-04 Thread ben fenster

how can i send a post request to my php page without getting an
exception about same orign execution restriction
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Timers

2009-10-22 Thread ben fenster

i was wondering how many timers can operate together and how would a
collisution between them effect performence

is it better to use one timer with a list of stuff that need to be
updated on timeout or is it better to make a timer for each 

another thing is if i use iframe to display other sites and those
sites has timers do they also run on my main thread and disturb my
timers and my my main gwt app performence???
--~--~-~--~~~---~--~~
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: Timers

2009-10-22 Thread ben fenster

???

On Oct 22, 12:52 pm, ben fenster fenster@gmail.com wrote:
 i was wondering how many timers can operate together and how would a
 collisution between them effect performence

 is it better to use one timer with a list of stuff that need to be
 updated on timeout or is it better to make a timer for each 

 another thing is if i use iframe to display other sites and those
 sites has timers do they also run on my main thread and disturb my
 timers and my my main gwt app performence???
--~--~-~--~~~---~--~~
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: can a url inside a frame widget access the Frame Page DOM elements

2009-10-19 Thread ben fenster

???

On Oct 18, 7:07 pm, ben fenster fenster@gmail.com wrote:
 i need to establish event based comunication between to seperate
 modules
 one module contains a frame widget that its url directed to the html
 hosting the second module the only thing i found accessible to both
 are cookies , can anyone suggest a better way to share data
--~--~-~--~~~---~--~~
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: can a url inside a frame widget access the Frame Page DOM elements

2009-10-19 Thread ben fenster

no thats not the case i am building an app that have extentions from
unknown sources and i want that an html page containig some gwt module
i never saw in my life will be loaded into the main app by Iframe and
could comunicate with the main app page and even triger events

On Oct 19, 11:00 am, Sudeep S sudee...@gmail.com wrote:
 your module 2 is originating from module 1.
 so if u can include the nocache.js of module 2 in html of module 1, then u
 can export js variables from module 2 to 1.

 i.e for an event trigerred in module 1 , you can retrieve the data from
 module2.

 On Mon, Oct 19, 2009 at 1:44 PM, ben fenster fenster@gmail.com wrote:

  ???

  On Oct 18, 7:07 pm, ben fenster fenster@gmail.com wrote:
   i need to establish event based comunication between to seperate
   modules
   one module contains a frame widget that its url directed to the html
   hosting the second module the only thing i found accessible to both
   are cookies , can anyone suggest a better way to share data
--~--~-~--~~~---~--~~
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: can a url inside a frame widget access the Frame Page DOM elements

2009-10-19 Thread ben fenster

when i think about it i can make a connector module but how can one
module access another module  js variables

On Oct 19, 3:15 pm, ben fenster fenster@gmail.com wrote:
 no thats not the case i am building an app that have extentions from
 unknown sources and i want that an html page containig some gwt module
 i never saw in my life will be loaded into the main app by Iframe and
 could comunicate with the main app page and even triger events

 On Oct 19, 11:00 am, Sudeep S sudee...@gmail.com wrote:

  your module 2 is originating from module 1.
  so if u can include the nocache.js of module 2 in html of module 1, then u
  can export js variables from module 2 to 1.

  i.e for an event trigerred in module 1 , you can retrieve the data from
  module2.

  On Mon, Oct 19, 2009 at 1:44 PM, ben fenster fenster@gmail.com wrote:

   ???

   On Oct 18, 7:07 pm, ben fenster fenster@gmail.com wrote:
i need to establish event based comunication between to seperate
modules
one module contains a frame widget that its url directed to the html
hosting the second module the only thing i found accessible to both
are cookies , can anyone suggest a better way to share data
--~--~-~--~~~---~--~~
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: can a url inside a frame widget access the Frame Page DOM elements

2009-10-19 Thread ben fenster

?

On Oct 19, 3:20 pm, ben fenster fenster@gmail.com wrote:
 when i think about it i can make a connector module but how can one
 module access another module  js variables

 On Oct 19, 3:15 pm, ben fenster fenster@gmail.com wrote:

  no thats not the case i am building an app that have extentions from
  unknown sources and i want that an html page containig some gwt module
  i never saw in my life will be loaded into the main app by Iframe and
  could comunicate with the main app page and even triger events

  On Oct 19, 11:00 am, Sudeep S sudee...@gmail.com wrote:

   your module 2 is originating from module 1.
   so if u can include the nocache.js of module 2 in html of module 1, then u
   can export js variables from module 2 to 1.

   i.e for an event trigerred in module 1 , you can retrieve the data from
   module2.

   On Mon, Oct 19, 2009 at 1:44 PM, ben fenster fenster@gmail.com 
   wrote:

???

On Oct 18, 7:07 pm, ben fenster fenster@gmail.com wrote:
 i need to establish event based comunication between to seperate
 modules
 one module contains a frame widget that its url directed to the html
 hosting the second module the only thing i found accessible to both
 are cookies , can anyone suggest a better way to share data
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



can a url inside a frame widget access the Frame Page DOM elements

2009-10-18 Thread ben fenster

i need to establish event based comunication between to seperate
modules
one module contains a frame widget that its url directed to the html
hosting the second module the only thing i found accessible to both
are cookies , can anyone suggest a better way to share data
--~--~-~--~~~---~--~~
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: rpc vs RequestBuilder

2009-09-13 Thread ben fenster

 i know that but i just wanted to know if the  performence margin
considering having efficient serialization algoritem could be big
enough too be worth the invesment in developing such php server side
request handler

i also wanted to know about shear power of request handling per
second ? , i belive that php combined with apache would prove too be
much stronger but i would like too hear from someone that checked it
out
On Sep 13, 4:16 am, Thomas Broyer t.bro...@gmail.com wrote:
 On 13 sep, 07:50, ben fenster fenster@gmail.com wrote:

  have anyone checked what is the better way to comunicate with server
  performence wize rpc or RequestBuilder(using php)

 It would all depend on your serialization algorithm when not using GWT-
 RPC; so there's no real answer to your question.
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



rpc vs RequestBuilder

2009-09-12 Thread ben fenster

have anyone checked what is the better way to comunicate with server
performence wize rpc or RequestBuilder(using php)
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



dubuger does not stop on breakpoints pls help

2009-09-08 Thread ben fenster

im using eclipse galliano 3.5 and althouge im in debug mode the damm
thing wont stop at the breakpoints pls 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
-~--~~~~--~~--~--~---



serialization

2009-09-03 Thread ben fenster

what is  preformence wize the best
Json Serializing lib
--~--~-~--~~~---~--~~
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: Iframe = multithreading ???

2009-09-03 Thread ben fenster

ok  thats sounds right but if thats true can i access static classes
in the entrypoint module from a seperate module loaded in an iframe
(that ofcours exists in the first module) ?

On 3 ספטמבר, 03:00, David Given d...@cowlark.com wrote:
 ben fenster wrote:
  your answear is based on your knolage in js but i need an answear
  based on actual in depth knowlage in how browser work since each
  iframe act as an independed wep page and loaded sepertly

 No, you misunderstand --- if your code can see an iframe, that iframe
 must be part of the same Javascript VM as your code, and therefore must
 be part of the same thread. The spec requires it.

 Iframes aren't as independent as you think.

 --
 ┌─── dg@cowlark.com ─http://www.cowlark.com─
 │
 │ They laughed at Newton. They laughed at Einstein. Of course, they
 │ also laughed at Bozo the Clown. --- Carl Sagan
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



Iframe = multithreading ???

2009-09-02 Thread ben fenster

i was wondering that if by opening another module in an iframe tag the
code of that module runs in another thread ??
more over is the limit of 2 open http request apply on 2 diffrent
modules running in diffrent iframes ??
--~--~-~--~~~---~--~~
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: Iframe = multithreading ???

2009-09-02 Thread ben fenster

another thing about the http request limitation most browsers rejects
more then 2 simultinus requests to a spacific  url and i wondered i
its aplays to 2 diffrent browser windows (diffrent process in new
browsers) and if iframe acts as new web page  maybe the limitation
grows by 2 for each iframe

On Sep 2, 5:05 pm, ben fenster fenster@gmail.com wrote:
 your answear is based on your knolage in js but i need an answear
 based on actual in depth knowlage in how browser work since each
 iframe act as an independed wep page and loaded sepertly then the
 containing page made me wonder about how its being done without a
 diffrent thread ?
 and if another thread is envolved in loading then maybe the new thread
 is also responsible on running the js code contained in the page of
 the iframe ?
 On Sep 2, 5:46 pm, David Given d...@cowlark.com wrote:

  -BEGIN PGP SIGNED MESSAGE-
  Hash: SHA1

  ben fenster wrote:
   i was wondering that if by opening another module in an iframe tag the
   code of that module runs in another thread ??

  Nope. There is no way of getting access to multiple Javascript threads
  from a web browser, unless you use some sort of extension like Google
  Gears or HTML5 web workers. Every part of the Javascript VM that your
  code can see is part of the same event loop.

   more over is the limit of 2 open http request apply on 2 diffrent
   modules running in diffrent iframes ??

  Don't know about this one.

  - --
  ┌─── dg@cowlark.com ─http://www.cowlark.com─
  │
  │ People who think they know everything really annoy those of us who
  │ know we don't. --- Bjarne Stroustrup
  -BEGIN PGP SIGNATURE-
  Version: GnuPG v1.4.9 (GNU/Linux)
  Comment: Using GnuPG with Mozilla -http://enigmail.mozdev.org/

  iD8DBQFKnxH6f9E0noFvlzgRApqiAKC/xF4z1x0t7s+8kAsTVoSxYFRFmQCfaUcx
  7F+QaH0Fdc9baW9Wcgl3swM=
  =ukVk
  -END PGP SIGNATURE-
--~--~-~--~~~---~--~~
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: Iframe = multithreading ???

2009-09-02 Thread ben fenster

your answear is based on your knolage in js but i need an answear
based on actual in depth knowlage in how browser work since each
iframe act as an independed wep page and loaded sepertly then the
containing page made me wonder about how its being done without a
diffrent thread ?
and if another thread is envolved in loading then maybe the new thread
is also responsible on running the js code contained in the page of
the iframe ?
On Sep 2, 5:46 pm, David Given d...@cowlark.com wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1

 ben fenster wrote:
  i was wondering that if by opening another module in an iframe tag the
  code of that module runs in another thread ??

 Nope. There is no way of getting access to multiple Javascript threads
 from a web browser, unless you use some sort of extension like Google
 Gears or HTML5 web workers. Every part of the Javascript VM that your
 code can see is part of the same event loop.

  more over is the limit of 2 open http request apply on 2 diffrent
  modules running in diffrent iframes ??

 Don't know about this one.

 - --
 ┌─── dg@cowlark.com ─http://www.cowlark.com─
 │
 │ People who think they know everything really annoy those of us who
 │ know we don't. --- Bjarne Stroustrup
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v1.4.9 (GNU/Linux)
 Comment: Using GnuPG with Mozilla -http://enigmail.mozdev.org/

 iD8DBQFKnxH6f9E0noFvlzgRApqiAKC/xF4z1x0t7s+8kAsTVoSxYFRFmQCfaUcx
 7F+QaH0Fdc9baW9Wcgl3swM=
 =ukVk
 -END PGP SIGNATURE-
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



cant resize images from imagebundle

2009-08-05 Thread ben fenster

using setSize or  setPixelSize methods doesnt work on images from
imagebundle  is there any way to do such operation on image from
imagebundle ?
 plz 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
-~--~~~~--~~--~--~---