[appfuse-user] Strange Struts2 error

2007-06-07 Thread sarat.pediredla
I am trying run an action called /search.html but I keep getting the following error in Jetty. ERROR [btpool0-3] Dispatcher.serviceAction(515) | Could not find action or result No result defined for action com.hedgehoglab.fixx.webapp.action.SearchAction and result success My struts.xml config fi

[appfuse-user] future upgrade from current 2.0

2007-06-07 Thread thinkboy
hi, I have be using 1.x since a year ago. I am very happy with it. anyway, I am a fan of maven2 too, currently, feeling excited to give a try on 2.0M5 for my new project. but i have a bit of worry on the future upgrade from m5 to final release. my question: can I use 2.0m5 for my current new

Re: [appfuse-user] Struts2 taglibs

2007-06-07 Thread Fan
Any online tutorial for writing a customised tag ? mraible wrote: > > On 6/7/07, Martin Ravell <[EMAIL PROTECTED]> wrote: >> Thanks Matt. Will check this out. >> >> Another issue: If I have an old taglib which is expecting an object to be >> passed into it is there some syntax I can use in the

[appfuse-user] Weird Exception when running appfuse:gen in web

2007-06-07 Thread dusty
I have a modular struts application using M5. I have ported over my model classes and everything was working well in core. I added my my classes to hibernate.cfg.xml and the hibernate plugin happiliy generates my tables. There are quite a few relationships between the POJOs. I can run mvn app

[appfuse-user] what's the difference Archetype basic n module

2007-06-07 Thread muhammad ridho
hi all, i'm newbie for appfuse framework n pls help me about what's the difference Archetype basic n Archetype module and what Archetype core means? .. and then what's the difference svn repository with the DremoteRepositories ?can i set url the DremoteRepositories local to create project whe

[appfuse-user] Security with LDAP and WSDL

2007-06-07 Thread Nigel in NZ
I have put some code together for a client of mine and thought I would share my experience with the Appfuse community, so here goes. My client uses WSDL to get the fully qualified user 'CN' (LDAP speak). We then use LDAP to check that we can bind and finally use another WSDL to check that the

[appfuse-user] Appfuse Issues - running mvn integration-test with Oracle? Runs ok on Mysql

2007-06-07 Thread Sandhu
I am running appfuse 2.0 M5 with Spring Modular. I ran it using MYSQL, it was working ok if I run mvn integration-test. However, I switched to oracle 9i, if I run mvn integration-test, then I am getting the following errors 1) Canoo Webtest Fails if I run mvn integration-test Only thing I cha

Re: [appfuse-user] CheatSheet-Five-Step-Setup-oracle10g-Spring-Appfuse 2.0 M5

2007-06-07 Thread Sandhu
I am getting Unique constraint errors if I run on oracle. Same thing works on MySQL Signup: [INFO] [talledLocalContainer] [eitms30] WARN [http-9081-Processor22] JDBCExcepti onReporter.logExceptions(77) | SQL Error: 1, SQLState: 23000 [INFO] [talledLocalContainer] [eitms30] ERROR [http-9081-Proce

Re: [appfuse-user] CheatSheet-Five-Step-Setup-oracle10g-Spring-Appfuse 2.0 M5

2007-06-07 Thread peppix
Hi, my configuration is Spring Basic + Hibernate, the same configuration with the pom.xml works without problems when I setup the pom.xml for connecting to MySlq local, but when I change to connect to a remote Oracle 10g it is able to create the tables but these are empty after I run the commands

Re: [appfuse-user] Good Humor

2007-06-07 Thread Jason Thrasher
That was great! It just shows that the community does give some love. Not that mine's any better, but here: http://www.glamourshots.com/ mraible wrote: > > http://www.kimchy.org/javaland-needs-some-fakesteves/ > > ;-) > > -

Re: [appfuse-user] forms validating before submit

2007-06-07 Thread Jason Thrasher
I haven't solved this issue, but found some clues: it appears that the Struts2 validator is enabled in two locations: 1) the struts.xml, and 2) somewhere else. The "somewhere else" validator doesn't honor the "excludeMethods" parameter, and therfore runs on my SignupAction for the "execute" metho

Re: [appfuse-user] BindingResult

2007-06-07 Thread Aled Rhys Jones
Thank you Matt, that fixed it. Cheers Aled Matt Raible wrote: If you're using Spring's ControllerClassNameHandlerMapping, the "F" in Form should be lowercase. Matt On 6/7/07, Aled Rhys Jones <[EMAIL PROTECTED]> wrote: http://localhost:8080/companyForm.html?id=1 If I manually type it in I ge

Re: [appfuse-user] Problem with checkbox - struts basic 2M5

2007-06-07 Thread Matt Raible
On 6/7/07, arvinder <[EMAIL PROTECTED]> wrote: Thanks Matt, Do I need to run war:inplace if I have already run appfuse full source? No, absolutely not. However, you may need to adjust your IDE and settings to compile/watch the correct files. Here is the code in plain text:

Re: [appfuse-user] Problem with checkbox - struts basic 2M5

2007-06-07 Thread arvinder
Thanks Matt, Do I need to run war:inplace if I have already run appfuse full source? Here is the code in plain text: but if I use instead of formatting is correct mra

Re: [appfuse-user] Problem with checkbox - struts basic 2M5

2007-06-07 Thread Matt Raible
This message didn't come through properly formatted. Can you send it in plain text or post your code to http://rafb.net/paste? As for Jetty hot-deploy, that works when you use "jetty:run", but not so much with "jetty:run-war". If you're using "jetty:run-war", you should run "war:inplace" first, f

[appfuse-user] Problem with checkbox - struts basic 2M5

2007-06-07 Thread arvinder
I have a customer form which is very similar to appfuse user Form (the top part!). I am trying to add a checkbox along with the customer name for customer status (width 80:20), but I am not able to get it right even with regular 50:50 width as in user Form. Here is my code:

[appfuse-user] Good Humor

2007-06-07 Thread Matt Raible
http://www.kimchy.org/javaland-needs-some-fakesteves/ ;-) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [appfuse-user] Struts2 taglibs

2007-06-07 Thread Matt Raible
On 6/7/07, Martin Ravell <[EMAIL PROTECTED]> wrote: Thanks Matt. Will check this out. Another issue: If I have an old taglib which is expecting an object to be passed into it is there some syntax I can use in the jsp to get this from my Action's ValueStack? (I have a getter in my Action which re

Re: [appfuse-user] Struts2 taglibs

2007-06-07 Thread Martin Ravell
Thanks Matt. Will check this out. Another issue: If I have an old taglib which is expecting an object to be passed into it is there some syntax I can use in the jsp to get this from my Action's ValueStack? (I have a getter in my Action which returns the expected object). Marty > You might try l

Re: [appfuse-user] maven central repository

2007-06-07 Thread nmall
Thanks, Mike. Unfortunately, there are no logs which show any errors. The only log available is maven.velocity.log and it has no errors. Michael Horwitz wrote: > > You should only need to deploy the artifacts to your new repository that > are > not available in the public repositories your ar

Re: [appfuse-user] Struts2 taglibs

2007-06-07 Thread Matt Raible
You might try looking at existing classes in org.apache.struts2.views.jsp (http://struts.apache.org/2.0.6/struts2-core/apidocs/org/apache/struts2/views/jsp/package-summary.html). You also might consider extending SimpleTag, which is part of JSP 2.0. http://java.sun.com/j2ee/1.4/docs/tutorial/doc/

Re: [appfuse-user] Browser error on jsp

2007-06-07 Thread Matt Raible
We need more information about your issue to help you. What page are you experiencing this on? Is it one you created, or one that ships with AppFuse? What's the error? Does it happen in Firefox? Matt On 6/7/07, jithesh <[EMAIL PROTECTED]> wrote: hai, i am using appfuse 1.9x . In some of

Re: [appfuse-user] BindingResult

2007-06-07 Thread Matt Raible
If you're using Spring's ControllerClassNameHandlerMapping, the "F" in Form should be lowercase. Matt On 6/7/07, Aled Rhys Jones <[EMAIL PROTECTED]> wrote: http://localhost:8080/companyForm.html?id=1 If I manually type it in I get the same error. -Original Message- From: [EMAIL PROTEC

Re: [appfuse-user] Test fails when looking for newly method added in Appfuse User class

2007-06-07 Thread Matt Raible
If you remove the appfuse-data-common from the warpath dependency, does it still work? Also, you shouldn't need to exclude appfuse-hibernate from the second dependency. If you're using JPA or iBATIS, it may be different. Matt On 6/7/07, fadhli <[EMAIL PROTECTED]> wrote: It seems that I had to a

Re: [appfuse-user] Appfuse websites

2007-06-07 Thread Bryan Noll
I'm not a front end expert... but off the top of my head I'm thinking you'd have to manually handle that page forwarding stuff yourself with a good old fashioned servlet, and some magic in the web.xml. Good luck when you get there. alam chard wrote: No. Not yet. Our app is just two pages rig

Re: [appfuse-user] Appfuse websites

2007-06-07 Thread alam chard
No. Not yet. Our app is just two pages right now (login and conference). We'll probably run into this when we start adding user registrations and scheduling conferences. This did not cross my mind. Hopefully there is an easy way to do this. We can probably just use Icefaces and use Spring MVC

Re: [appfuse-user] svn: PROPFIND request failed

2007-06-07 Thread SornET
Check your SVN proxy configuration: Edit 'servers' file in ~.subversion directory (or %APPDATA%/Subversion in Windows system) and look for 'http-proxy-host' and 'http-proxy-port' properties under [global] section. It worked fine for me. Azarias Tomás wrote: > > Yes, I am going though a proxy

[appfuse-user] Struts2 taglibs

2007-06-07 Thread Martin Ravell
I'm going to have a crack at building a taglib for my 2m5 application and was wondering about maing this understand the Struts2 object graph (OGNL?) Has anyone on the list done anything like this before? If so I'd appreciate it if you could share any resource URLs, tutorials etc that you may have

Re: [appfuse-user] maven central repository

2007-06-07 Thread Michael Horwitz
You should only need to deploy the artifacts to your new repository that are not available in the public repositories your are proxying. Most of the time these will be the artifacts you have developed internally, and any 3rd party jar files that have non-public licences (this can include some of t

Re: [appfuse-user] LazyInitializationExceptions using Hibernate/Spring/Oracle

2007-06-07 Thread Michael Horwitz
Is the OpenSessionInViewFilter uncommented in your web.xml? It should solve the problem you see below. Mike. On 6/7/07, keithstevens <[EMAIL PROTECTED]> wrote: Hi all; This seems to be a common issue, but all my searching and reading has not found the particular solution that works for us.

[appfuse-user] Browser error on jsp

2007-06-07 Thread jithesh
hai, i am using appfuse 1.9x . In some of my jsp pages i am getting browser detected syntax errors i am using IE7 for viewing the page Could anyone helps me on this issue. what setting i need to perform to resolve this. regards, jithesh -- View this message in context: http://www.

RE: [appfuse-user] BindingResult

2007-06-07 Thread Aled Rhys Jones
http://localhost:8080/companyForm.html?id=1 If I manually type it in I get the same error. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Matt Raible Sent: 06 June 2007 22:49 To: users@appfuse.dev.java.net Subject: Re: [appfuse-user] BindingResult What'

[appfuse-user] Browser error on jsp

2007-06-07 Thread jithesh
hai, i am using appfuse 1.9x . In some of my jsp pages i am getting browser detected syntax errors i am using IE7 for viewing the page Could anyone helps me on this issue. what setting i need to perform to resolve this. regards, jithesh -- View this message in context: http://www.