Re: [appfuse-user] Hello friends -- Please help me to jump out from this problem

2009-03-19 Thread NavKum1179
No problem Matt, Anyway thanks for listening me .I will do some more googling over it, on other sites... it looks like a commons-logging vs. slfj logging issue. Sorry, I don't have a solution for solving this - haven't worked with JBoss 5. Matt -- View this message in context: http://w

Re: [appfuse-user] struts taglib select with foreach example

2009-03-19 Thread tibi
mraible wrote: > > Have you tried using OGNL syntax? I believe it's something like > %{price.name}. > > Matt > i tried this: but then the id and name are empty... is there a OGNL expert in the house ;) i have a work arround: ${option}

Re: [appfuse-user] struts taglib select with foreach example

2009-03-19 Thread Matt Raible
You cannot mix and match JSTL with Struts 2 tags. If you use a Struts 2 iterator tag with the , it should work. Matt On Thu, Mar 19, 2009 at 12:52 PM, tibi wrote: > > > > mraible wrote: >> >> Have you tried using OGNL syntax? I believe it's something like >> %{price.name}. >> >> Matt >> > i trie

Re: [appfuse-user] dojo tutorial extension

2009-03-19 Thread Matt Raible
Copy \web\target\work\webapp\decorators\default.jsp to web/src/main/webapp/decorators/default.jsp and you should be good to go - this will override all others. Matt On Thu, Mar 19, 2009 at 7:15 AM, jackalista wrote: > > Hi AppFuse people, > > I'm trying to follow the Ajax tutorial [at: > http://

Re: [appfuse-user] struts taglib select with foreach example

2009-03-19 Thread Matt Raible
Have you tried using OGNL syntax? I believe it's something like %{price.name}. Matt On Thu, Mar 19, 2009 at 9:10 AM, tibi wrote: > > when i look at my code from a year ago i did something like this: >   > > but this gives me this error: > "According to TLD or attribute directive in tag file, at

Re: [appfuse-user] struts taglib select with foreach example

2009-03-19 Thread tibi
when i look at my code from a year ago i did something like this: but this gives me this error: "According to TLD or attribute directive in tag file, attribute name does not accept any expressions" with google i found that there is a security 'fix'. and now it is not possible to inject code

Re: [appfuse-user] Re: Xfire

2009-03-19 Thread Matt Raible
I would recommend using some external security mechanism like Spring Security or Apache and ip filtering. If that doesn't work, you might be able to use Spring's RequestContextListener to put the request in a ThreadLocal. Matt On Thu, Mar 19, 2009 at 4:09 AM, Marian wrote: >>I don't know if it's

[appfuse-user] Hello friends -- Please help me to jump out from this problem

2009-03-19 Thread naveen . kumar4258
Hi All , I am a newbie into the appfuse2.0 and jboss-5.0.0.GA. I have created a war (Modular Struts 2) and deployed over the Jboss-4.3.2.GA and this runs perfactly (after removing hibernate jars from /server/default/deploy/lib folder). But when I am trying to deploy same war over (After comment

[appfuse-user] struts taglib select with foreach example

2009-03-19 Thread tibi
hi list, maybe i'm a bit rusty or there is some upgrade or something. i hope some of you can fix this example. i have a list of prices and each price has a name.(standerd vip child etc). [${price.name}] the ${price.name} works fine. it prints out the name. but the select is not working

[appfuse-user] Plugging quartz to appfuse project

2009-03-19 Thread pgaurav
Sample and ready to use code to integrate quartz scheduler to appfuse project. Let me know if you face any issue. Cheers, Prashant http://www.nabble.com/file/p22600549/quartz_appfuse.zip quartz_appfuse.zip -- View this message in context: http://www.nabble.com/Plugging-quartz-to-appfuse-proj

Re: [appfuse-user] dojo tutorial extension

2009-03-19 Thread jackalista
Hi AppFuse people, I'm trying to follow the Ajax tutorial [at: http://appfuse.org/display/APF/Ajax] using a *modular* struts2 project and am trying to figure out which version of several files I need to make the recommended changes in. The tutorial step I'm having trouble with is: 1b) make sure

[appfuse-user] Re: Xfire

2009-03-19 Thread Marian
>I don't know if it's possible, but I don't think it's a good idea. >Your web services shouldn't be talking to the Servlet API IMO. Suppose I want to prevent a user coming from a certain IP to use a certain method - how could I know his IP? In servlets it's easy - request.getRemoteAddr() gives tha