Re: Java Deserialization Vulnerability

2015-11-23 Thread Gerry Smith
Yeah I'd agree with that! On Mon, Nov 23, 2015 at 8:29 PM, Lars wrote: > @Thomas: Thanks for this information, but I guess the correct property is > rpc.enhancedClasses :-) > @Jakob: Keep in mind, that commons-collections is not the only library > "under attack" ...

Re: Java Deserialization Vulnerability

2015-11-22 Thread gerry
Interesting, many thanks Thomas and Jens, So looks like you're in the clear as long as you're not using enhanced classes, - Gerry On Saturday, November 21, 2015 at 7:38:42 PM UTC, Jens wrote: > > > I am not very well versed into that kind of things, but how is it possible >&

Java Deserialization Vulnerability

2015-11-20 Thread gerry
Is GWT RPC affected by the Java deserialization vulnerability? If so is there a way to mitigate it? -- You received this message because you are subscribed to the Google Groups "GWT Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: RPC call fails on remote server

2012-02-16 Thread gerry
similar problem before. Nothing to do with GWT in this. Contact the remote server people where you deployed your application. Probably they are using Apache server only. Tell them to integrate Tomcat with Apache. On Feb 15, 2:23 pm, gerry gtzoga...@gmail.com wrote: Hi all, I have a very

Re: RPC call fails on remote server

2012-02-16 Thread gerry
problem before. Nothing to do with GWT in this. Contact the remote server people where you deployed your application. Probably they are using Apache server only. Tell them to integrate Tomcat with Apache. On Feb 15, 2:23 pm, gerry gtzoga...@gmail.com wrote: Hi all, I have a very strange

RPC call fails on remote server

2012-02-15 Thread gerry
Hi all, I have a very strange problem I have not been able to debug the last 3 days. I am using GWT 2.4, and the problem happens only on the remote server. Not in development mode, nor on a Tomcat I have installed on my PC. My application needs to contact a web service that runs on an external

Create an Image object from a url that requires authentication

2011-12-30 Thread gerry
Hello all, I have some images stored in urls that are password protected, for example I have the url imageUrl = https://user:p...@mydomain.com. The problem is that I cannot use this url in the constructor of Image, because then everyone can view the source and know these credentials. Is there a

IFrame to https url not working in Firefox

2011-11-17 Thread gerry
Hi all, I have an application that is secured with an unsigned ssl certificate. I have a second application, which is a TabPanel, and on one tab I need to include the first application, as an iFrame, using a Frame object. In development mode, in chrome, it returns a 501

Re: IFrame to https url not working in Firefox

2011-11-17 Thread gerry
: Why not sign the certificate yourself? The result won't be trusted, and will generate a browser warning, but it will more faithfully represent what happens in production. Google for something like self signed ssl certificate to work out how to do it. HTH Paul On 17/11/11 10:08, gerry

Re: Display first web page in GWT

2011-11-14 Thread gerry
Hi, You have to put your images and other static files inside the war directory. And mind the fullstop (.) before the css rule: .appbackground { background-image: url (images/background.jpg); // provided that you have an the forlder images under war folder width: 80%; height: 80%; border: 10px

Style individual cells on a VerticalPanel

2011-11-01 Thread gerry
Hi all, I have laid some images vertically, using a VerticalPanel. I would like to use a rollover effect, changing the background of a cell whenever the user hovers it. Is this possible by using a VerticalPanel? I didn't find something similar to this in its documentation Thanks a lot -- You

Re: LayoutPanel - how to set background image?

2011-10-28 Thread gerry
Hi, Try myLayoutPanel.setStyleName(my-layout-style). And then in the css add the rule .my-layout-style { background-image:...}.It will repeat by default, unless you set background-repeat:no-repeat. I think this would work. On 28 Οκτ, 20:02, Ed post2edb...@gmail.com wrote: Use @sprite to set

Re: select language or country from a drop down list

2011-10-14 Thread gerry
What I did eventually for the languages is take a document like this: http://www.loc.gov/standards/iso639-2/ISO-639-2_utf-8.txt, store it in the war folder, and parse it line by line to get all languages and their codes and put them in my drop down list. For countries, I used the class that

Re: select language or country from a drop down list

2011-10-13 Thread gerry
it into your drop down list. This will save you a lot of tedious typing. On 10/12/2011 7:39 AM, gerry wrote: Hi Thad, Thanks for your reply. In your suggestion I will have to type all the countries and their codes myself, while I was hoping I could do it in a more automated way, like I

Re: select language or country from a drop down list

2011-10-13 Thread gerry
Yes! This is what I need about countries. Do you know if there is a similar class for languages (mapping languages to codes)? Thanks On 13 Οκτ, 13:53, Prakash prakash.masilam...@gmail.com wrote: Gerry, See whether this class meets your requirements. http://google-web-toolkit.googlecode.com

Re: The method format(String, Integer) is undefined for type String

2011-10-13 Thread gerry
GWT does not emulate all of core java's methods. Take a look at these: http://groups.google.com/group/google-web-toolkit/browse_thread/thread/d18118d7fd4e8c26 http://groups.google.com/group/google-web-toolkit/browse_thread/thread/fad619b8d8789cb2 On 13 Οκτ, 19:51, Marc Graham

select language or country from a drop down list

2011-10-12 Thread gerry
Hi all, I am building an application where the user needs to specify the name of a work of art, like a poem or song, and I need him to specify its language. I want to make it possible that he can choose the language from a drop-down list, and I also want to know the three character code of the

Re: select language or country from a drop down list

2011-10-12 Thread gerry
). The item is what the user sees (the language) while value contains what you're interested in (the country code). On Oct 12, 9:44 am, gerry gtzoga...@gmail.com wrote: Hi all, I am building an application where the user needs to specify the name of a work of art, like a poem or song

Re: problem with rpc calls

2009-08-14 Thread gerry
Thanks for your response. Could you please tell me how exactly to do this?There is no class option under the main tab in the launch configuration options as in a usual java project... On 4 Αύγ, 01:47, Sumit Chandel sumitchan...@google.com wrote: Hi gerry, The most likely cause for this problem

problem with rpc calls

2009-07-31 Thread gerry
Hello all, I can't workaround this problem for days, and I have read the documentation and the getting started example and searched this forum but I still can't find a solution. When I try to run my application in hosted mode i get this: Cannot find resource 'something' in the public path of

Handling servre side exceptions and displaying precise error messages on the client

2009-07-28 Thread gerry
I am trying to create an application using jena API and gwt. How can I get an exception from the server log displayed on the client? To be more specific: Right now I get on the client the standard message of unexpected exceptions com.google.gwt.user.client.rpc.StatusCodeException: The call failed

FileUpload widget isn't working inside DialogBox widget

2008-11-24 Thread Gerry
I've successfully used FormPanel+FileUpload before in a GWT page, but when the FormPanel and enclosed FileUpload is moved to a DialogBox, the upload suddenly doesn't work. The form.submit() is successfully being triggered, but the form itself contains no data. Here's a sample of a