Re: Returning Nested ArrayLists from RPC

2009-03-18 Thread erincarikan
Ok solved my own problem, with GWT 1.5, you don't need to use annotations. I realized that annotations were creating the warnings. Don't use annotations. On Mar 17, 5:15 pm, erincarikan wrote: > Hi; > > Here's the situation: > > My Rpc prepares ArrayList. &

Returning Nested ArrayLists from RPC

2009-03-17 Thread erincarikan
Hi; Here's the situation: My Rpc prepares ArrayList. A implements Isserializable interface and it contains some fields and an arraylist field. B implements Isserializable interface and it contains some fields and an arraylist field. C implements Isserializable interface and has primitive type

Re: Inheriting an external java project which has references to external jar files

2009-03-17 Thread erincarikan
you added xstream > for that you can definitely just drop it. > > JRE Emulation > Reference:http://code.google.com/docreader/#p=google-web-toolkit-doc-1-5&s=goog... > > On Mar 17, 2:37 pm, erincarikan wrote: > > > > > Excuse my illiteracy as a newbie if

Inheriting an external java project which has references to external jar files

2009-03-17 Thread erincarikan
Excuse my illiteracy as a newbie if my question is too trivial. I am trying to build a gwt application, my application is going to be an extension to an existing big project. In the existing project there's a package which contains objects with serialization and deserialization capabilities. Xstr

Need GWT Security Help(Can't decide what to use)

2009-03-09 Thread erincarikan
Hi; I am developing a GWT application which I try to make more secure with database based authentication. I read a lot of articles but I am still not so sure about which practice is better for me. I don't know much about spring and I never used it. But I read in the articles Spring Security is go

Re: GWT RPC Security Concern

2009-03-06 Thread erincarikan
y and ugly.  You would have to > deploy an unauthenticated jsp or jsf to do pretty authentication that > would forward you once authenticated.  You might also consider LDAP, > CAS or Open SSO as other forms of authentication that have a lot of > infrastructure provided. > > On Mar 6,

Re: GWT RPC Security Concern

2009-03-06 Thread erincarikan
 Also, I know > RPC has a lot of built in security and error checking that would make > it difficult for the person trying to access the servlets directly > without intemate knowledge of the RPC package structure because I know > every once in a while I get traces in my logs that

GWT RPC Security Concern

2009-03-06 Thread erincarikan
Excuse my illiteracy about gwt, I just started working on GWT last week. Yesterday I implemented my first rpc application and one thing makes me worried a little bit. I will compile and all the content will work on client and it will rpc server code without any authentication if I am not mistaken