AOSI's Official Statement about IIPA - help to distributed.

2010-03-18 Thread Frans Thamura
hi all AOSI (asosiasi opensource indonesia) is our local association of opensource in Indonesia, where is our umbrella for anyone related to services, support, product and entities related to opensource, smiliar with OSFA in USA. and we know that IIPA submit a letter to USTR about Indonesia and

RE: Can a collection property have its changes saved back to the ActionForm?

2010-03-18 Thread adam pinder
you want to save the options in the select not a selected option... if you make the select a multiple select and in javascript you select all options are all the option values sent to the server against the same parameter name (turn on parameter interceptor logging to check)... if

SQL Injection

2010-03-18 Thread abhishek jain
Hi, Do we have any special technique in Struts for preventing sql injection, i know we can prevent it via parameterized query , but my application design do not permit so, So can anyone here help me on this, i need a function whom if i pass a value, it becomes sql injection safe., Pl. help --

RE: [S2] Error running under Weblogic 10.3.2.0

2010-03-18 Thread Gustavo Felisberto
I have very little experience with Weblogic. Do you know where do I need to copy the unpacked WAR? -Mensagem original- De: Lukasz Lenart [mailto:lukasz.len...@googlemail.com] Enviada: quarta-feira, 17 de Março de 2010 10:40 Para: Struts Users Mailing List Assunto: Re: [S2] Error running

RE: SQL Injection

2010-03-18 Thread Gustavo Felisberto
Hello, As far as I know there is nothing in struts to prevent SQL injection. And that should be done at the database level, so it is not related to Struts. Also there is no simple way of making parameters sql injection safe. You can take a look at

Re: [S2] Error running under Weblogic 10.3.2.0

2010-03-18 Thread Lukasz Lenart
2010/3/18 Gustavo Felisberto gustavo.felisbe...@wit-software.com: I have very little experience with Weblogic. Do you know where do I need to copy the unpacked WAR? I don't know, I'm using IntelliJ IDEA to deploy unpack version and it works perfectly! Regards -- Łukasz

Re: Cannot find bean: sendJsp in any scope

2010-03-18 Thread tesla
alright i deleted the request.setattiribute line. i will look at the tutorial.really thank you for helping to me Andrew Sharpe-2 wrote: I found a full example for you here: http://www.java2s.com/Code/Java/J2EE/StrutsFrameworkASampleStrutsApplication.htm You'll notice that the name

RE: [S2] Error running under Weblogic 10.3.2.0

2010-03-18 Thread Gustavo Felisberto
Hello again, I have very little experience with Weblogic and maybe you can give me a hand with IntelliJ Idea. I'm using version 9.0.2 EAP. I installed Weblogic 10.3.2 and created a domain. Under Idea I added the Application server but I'm having issues with redeploy. How is your setup? What I

Re: Struts2 + Sitemesh + Freemarker doesn't work

2010-03-18 Thread jonathan doklovic
I almost have this working, however, it seems that struts-core-2.2.0-SNAPSHOT depends on xwork-2.2.0-SNAPSHOT which doesn't seem to be available anywhere. Also, the struts-convention-2.2.0-SNAPSHOT tries to call a method in xwork that doesn't exist:

Re: Struts2 + Sitemesh + Freemarker doesn't work

2010-03-18 Thread Wes Wannemacher
On Thu, Mar 18, 2010 at 12:02 PM, jonathan doklovic list-rea...@sysbliss.com wrote: I almost have this working, however, it seems that struts-core-2.2.0-SNAPSHOT depends on xwork-2.2.0-SNAPSHOT which doesn't seem to be available anywhere. It's here -

Tabbing key not work on the Combobox on the IE7 and IE8

2010-03-18 Thread on2
Hello Struts Users, We have an application using Struts2.1.6 to generate the autocompleter as below. sx:autocompleter key=category list=categories autoComplete=true valueNotifyTopics=/categoryChanged resultsLimit=-1

RE: SQL Injection

2010-03-18 Thread adam pinder
use hibernate its definitely worth trying. the SQL queries can be parameterised and the parameter names can refer to fields in an object, it handles the escaping of values to be sql safe. From: gustavo.felisbe...@wit-software.com To:

Re: Parameter in If tag

2010-03-18 Thread Kusuma Haranath Atmakuri
s:if test=%{#parameters['paramName'][0] =='paramValue'} Thanks a lot! This worked! parameters['paramName'] returns an array? -- K From: Wes Wannemacher w...@wantii.com To: Struts Users Mailing List user@struts.apache.org Sent: Mon, March 15, 2010 4:16:14 PM

Re: Parameter in If tag

2010-03-18 Thread Wes Wannemacher
On Thu, Mar 18, 2010 at 11:07 PM, Kusuma Haranath Atmakuri haranat...@yahoo.com wrote: s:if test=%{#parameters['paramName'][0] =='paramValue'} Thanks a lot! This worked! parameters['paramName'] returns an array? Yeah, it's a bit of a pain sometimes, but there is nothing that stops someone