Re: generate and execute javascript at runtime?

2012-11-03 Thread Sebastian Rothbucher
Hi, is it not possible to make a function like eval() (doing just that) available via JSNI? On Friday, November 2, 2012 3:10:23 PM UTC+1, HamsterofDeath wrote: i'm trying to integrate jqxgrid and write a gwt wrapper around it. (it's some jquery grid) i know i can write native js methods, but

Re: External Server communication with HTTP requests

2012-11-03 Thread Sebastian Rothbucher
Hi, one of the below posts already mentioned the same origin policy which is indeed not to be circumvented (except in apps). What you can do is create an image URL or IFRAME URL and create the respective image or iframe with setUrl(http://someotherserver;) Good luck! On Monday, October 29,

Re: Security considerations for GWT applications

2012-11-03 Thread Sebastian Rothbucher
Hi, no offense - but I'd NEVER NEVER EVER send the MD5-ed PW or store an MD5 hash in the directory. Rather, I regard it paramount to send the password as-is (through an encrypted channel) and have the directory store it WITH A SALT value. Furthermore, you should bind against the directory

Re: Security considerations for GWT applications

2012-11-03 Thread Sebastian Rothbucher
Hi, there is actually one more aspect: avoid correctly logged-in users (as others pointed out before: login on the server with a server session is required) can manipulate more data than you want them to. Using tamper data and consorts, you can see what goes back and forth via GWT-RPC.

Re: RPC call from server to client

2012-11-03 Thread Sebastian Rothbucher
by far and large, you'd have to poll (asynchronously) -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/auWmyRAUf5AJ. To post to this group, send

Re: Roadmap GWT?

2012-11-03 Thread Joseph Lust
Stay tuned to the Steering Committeehttps://groups.google.com/forum/#!forum/gwt-steeringif you want to know where they are steering towards. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on

Re: iOS 6 Bug: Safari caches POST requests

2012-11-03 Thread Joseph Lust
Of course you can just do this for iOS devices. Just parse the UserAgent parameter from the request. Sincerely, Joseph -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To view this discussion on the web visit

GWT-Maven-Plugin for GWT 2.5 GA?

2012-11-03 Thread Joseph Lust
I've finally got my manager ready to let us use the great features in GWT 2.5 after its fermented for 2 RC's. However, I noticed that there is still no maven release of the GWT-Maven-Plugin for this GA. Any guess on when that might be ready Thomas? I see you've got the

Re: GWT-Maven-Plugin for GWT 2.5 GA?

2012-11-03 Thread Thomas Broyer
On Saturday, November 3, 2012 5:51:51 PM UTC+1, Joseph Lust wrote: I've finally got my manager ready to let us use the great features in GWT 2.5 after its fermented for 2 RC's. However, I noticed that there is still no maven release of the GWT-Maven-Plugin for this GA. Any guess on when

Re: rpc serialization without the rpc

2012-11-03 Thread Peter Warren
Thanks for the responses! @Jens The payload is already on the server. I send it up as an xml file that gets parsed and converted to a Java object. The upload and conversion happens as a backend process independent of any client interaction. This payload object then gets serialized and sent to

RPC fails

2012-11-03 Thread Sevak Asadorian
This is the error I get: Nov 03, 2012 8:51:23 PM com.google.appengine.tools.development.LocalResourceFileServlet doGet WARNING: No file found for: /mate/MySQLConnection *gwt.xml* ?xml version=1.0 encoding=UTF-8 standalone=no?module rename-to=mate !-- Inherit the core Web Toolkit stuff.

Widget does not display

2012-11-03 Thread CiprianR
I am having problems with the widget display. This is my code: public void onModuleLoad() { HorizontalPanel hpanel = new HorizontalPanel(); final Button button = new Button(Click); button.addClickHandler(new ClickHandler(){ @Override

Re: rpc serialization without the rpc

2012-11-03 Thread Jens
You can switch out the default RpcRequestBuilder of any GWT-RPC service. Your custom RpcRequestBuilder would overwrite doCreate() to create a RequestBuilder that uses GET instead of POST. Everything else should continue to work without any further modifications. To change the default

Re: RPC fails

2012-11-03 Thread Sevak Asadorian
Server side: package main.server; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import main.client.GreetingService; import main.client.User; import main.shared.FieldVerifier; import

Re: RPC fails

2012-11-03 Thread Sevak Asadorian
Server side: package main.server; import java.sql.Connection; import java.sql.DriverManager; import java.sql.PreparedStatement; import java.sql.ResultSet; import java.sql.SQLException; import main.client.GreetingService; import main.client.User; import main.shared.FieldVerifier; import