Re: how to get the file path from client side code

2009-04-20 Thread olivier nouguier
hi, GWT client won't access to file out of the public (webapp) www files. If you want to access file out of webapp, you will have to proxify it (servlet) with some well known security issues. On Mon, Apr 20, 2009 at 4:55 PM, Neo deepak.krv2...@gmail.com wrote: In my server side code, I

Re: how to get the file path from client side code

2009-04-20 Thread Neo
In my GWT project, I have three standard directories : - client - server - public So do u mean that any code inside the client directory wont have access to anything outside the public directory ? On Apr 20, 7:55 pm, Neo deepak.krv2...@gmail.com wrote: In my server side code, I create a

Re: how to get the file path from client side code

2009-04-20 Thread olivier nouguier
In your deployed application: WEBAPP/WEB-INF/classes/your.pakage/server/. --- server classes WEBAPP/WEB-INF/classes/your.pakage/client/. -- client classes WEBAPP/your.package/ -- public resources And yes client (GWT) has only access to public