Re: [SOLVED]Rép : Re: checking device or platform

2013-05-22 Thread Paul Hoadley
On 22/05/2013, at 11:51 PM, Raymond NANEON wrote: > Thanks to all, problem resolved. What was the issue? -- Paul Hoadley http://logicsquad.net/ ___ Do not post admin requests to the list. They will be ignored. Webobjects-dev mailing list (Web

Re: checking device or platform

2013-05-22 Thread Paul Hoadley
Hi Raymond, On 22/05/2013, at 9:35 PM, Raymond NANEON wrote: > Thanks for your advice but it doesn't resolve my issue. As Johann notes, it certainly _should_ work. We use ERXBrowser for browser sniffing in several production apps, and it works as designed. Post any debugging output you can

Re: The infamous "WOServletAdaptor is not available" error on Tomcat

2013-05-22 Thread Dov Rosenberg
We regularly run multiple wo based web apps on a single tomcat instance without any problems. One thing that we do though is to make sure that each app is self contained - ie all of the jars are available in the WEB-INF/lib folder. We also run our wo Apps as expanded directories instead of direc

Re: The infamous "WOServletAdaptor is not available" error on Tomcat

2013-05-22 Thread Filippo Laurìa
I solved. I tried to deploy two WO Application on the same servlet container, probably I had not properly configured Tomcat servlet container to do that. So, for the moment, I installed another instance of servlet container, and i'm letting go a WO application on the first and the other one on th

Re: Jenkins ant error?

2013-05-22 Thread Ramsey Gurley
Not sure. Watch this. Do what Dave says. Works for me. http://www.wocommunity.org/podcasts/wowodc/east09/WOWODC09E-MultipleVersionsWO.mov Ramsey On May 22, 2013, at 8:46 AM, James Cicenia wrote: > Trying hard to finally get Jenkins nailed... so close. > > Here is my perplexing error at the con

Jenkins ant error?

2013-05-22 Thread James Cicenia
Trying hard to finally get Jenkins nailed... so close. Here is my perplexing error at the console: init.properties: [antlib:org.apache.tools.ant] Could not load definitions from resource org/apache/tools/ant/antlib.xml. It could not be found. [property] Loading /var/lib/jenkins/workspace/My_We

Re: Still Undecided about coming to WOWODC 2013?

2013-05-22 Thread David Holt
On 2013-05-21, at 5:16 PM, Dan Beatty wrote: > Hi Chuck, > There may be stupidity preventing me from coming, but it may not be my own > stupidity. Unfortunately, stupidity is like rain in the fact it pours on > the deserving and not typically with prejudice. None the less, I could enjoy >

[SOLVED]Rép : Re: checking device or platform

2013-05-22 Thread Raymond NANEON
Thanks to all, problem resolved.Envoyé depuis iCloudLe 22 mai 2013 à 05:19, Johann Werner a écrit : Am 22.05.2013 um 14:05 schrieb Raymond NANEON : > Hi Johann, > > Thanks for your advice but it doesn't resolve my issue. Uhm, yeah, that happens when the phone rings while writing

Re: EOKeyValueQualifier.evaluateWithObject on EOQualifier.QualifierContains selector?

2013-05-22 Thread Alexis Tual
Hi list, 2012/2/7 Kieran Kelleher > So, I had an interesting problem that I had not come across before. In my > REST controllers I have a baseQualifier() which restricts objects to those > that the user has access to. This base qualifier is used for the FetchSpec > in the indexAction and used f

Re: checking device or platform

2013-05-22 Thread Johann Werner
Am 22.05.2013 um 14:05 schrieb Raymond NANEON : > Hi Johann, > > Thanks for your advice but it doesn't resolve my issue. Uhm, yeah, that happens when the phone rings while writing an email ;-) So browser().isIPhone() returns false? You should check the values in ERXBrowserFactory.parsePlatfor

Rép : Re: checking device or platform

2013-05-22 Thread Raymond NANEON
Hi Johann,Thanks for your advice but it doesn't resolve my issue.Envoyé depuis iCloudLe 22 mai 2013 à 04:40, Johann Werner a écrit :Instead of mySession().browser() you should preferably use browser() that ERXComponent provides. That's a little bit shorter and works also for sessionless pages. jw

Re: checking device or platform

2013-05-22 Thread Johann Werner
Instead of mySession().browser() you should preferably use browser() that ERXComponent provides. That's a little bit shorter and works also for sessionless pages. jw Am 22.05.2013 um 12:35 schrieb Raymond NANEON : > Hi List, > > I want to check the device or platform on which my app running,

checking device or platform

2013-05-22 Thread Raymond NANEON
Hi List,I want to check the device or platform on which my app running, to activate or not some options. Does it exist a component which does it well?I try WOConditional and test this example : in Html      mobileOption  in woDplatform : WOConditional {    condition = platform;}in Java