[appfuse-user] Deploying to a Sharted Hosting (Apache2+Tomcar5.5.20)

2007-07-06 Thread Daniel.Rodriguez
Hello everyone, I have a shared hosting server in Lunarpages, where I have Tomcat 5.5.20 and Apache2 (using jk_mod to connect them) . I want to simplify our WAR deployment process : 1. Create the domain via Plesk. 2. Configure Tomcat for the new domain (add a entry in server.xml): my

Re: [appfuse-user] Struts 2 mapping issue

2007-07-06 Thread Michael Horwitz
On 7/6/07, Eric Fitzsimmons <[EMAIL PROTECTED]> wrote: I am currently using Appfuse 2.0-m5 and am having some issues trying to map my actions in a RESTful manner. EX: I would like http://localhost:8080/employee/ to map to a list of employees with links to specific employees EX: I would like

Re: [appfuse-user] Display problems after upgrading to Win SP2

2007-07-06 Thread Dale Newfield
pankaj singla wrote: We are heavily using Javascript and css for our application. Could anyone suggest what might be going wrong More than likely your javascript is bad, and you are only now discovering this. This tool might be able to help you find your problems: http://www.jslint.com/li

[appfuse-user] Display problems after upgrading to Win SP2

2007-07-06 Thread pankaj singla
Hi, I am using Appfuse 1.9.3 for our applications. We are using IE6/IE7. These applications were working fine till some of our Win2003 servers and clients were upgraded with SP2. Now, the application is not working properly. Some of the links doesn't work properly and the display is all messed up

[appfuse-user] Struts 2 mapping issue

2007-07-06 Thread Eric Fitzsimmons
I am currently using Appfuse 2.0-m5 and am having some issues trying to map my actions in a RESTful manner. EX: I would like http://localhost:8080/employee/ to map to a list of employees with links to specific employees EX: I would like http://localhost:8080/employee/0012/ to map to a specific

Re: [appfuse-user] appfuse and SOAP

2007-07-06 Thread Michael Horwitz
I believe XFire has been integrated into 2.0M5. I don't know of a tutorial as yet, but you can use the old tutorial as a starting point: http://raibledesigns.com/wiki/Wiki.jsp?page=AppFuseXFire Also take a look through the user mailing list on nabble. There was quite a bit of traffic a little w

[appfuse-user] appfuse and SOAP

2007-07-06 Thread tibi
hi, is there a default way to implement a SOAP server with appfuse 2.0m5? thanks tibi - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

[appfuse-user] username or password

2007-07-06 Thread ujjala
I have a action myaction where flows come when authenticatication(password checking) fails. But it shows only one message in login.jsp page that username or password is wrong. But i want different messages like if password expired it should show that password is expired. If account is

[appfuse-user] The simple things

2007-07-06 Thread syg6
Greetings to all, I am making my way through Appfuse 2.0, outstanding stuff! I am using Spring / Hibernate / Spring MVC Basic. While going through the tutorials I decided to do the 'extra' work for the Person POJO, creating a Dao and Manager with tests, et al. I noticed that although the PersonD

Re: [appfuse-user] new version of "Seven simple reasons to use AppFuse" ?

2007-07-06 Thread Michael Horwitz
Take a look at the list of presentations here: http://www.appfuse.org/display/APF/Presentations There is one covering AppFuse 2.0. Also useful are the demos + videos hosted here: http://www.appfuse.org/display/APF/Demos+and+Videos I believe these are also AppFuse 2.0 based. Mike. On 7/6/07, ch

[appfuse-user] new version of "Seven simple reasons to use AppFuse" ?

2007-07-06 Thread chino fish
I saw Seven simple reasons to use AppFuse at http://www.ibm.com/developerworks/java/library/j-appfuse/index.html?S_TACT=1 05AGX52 &S_CMP=cn-a-j but the article is mainly based on appfuse1.x,

Re: [appfuse-user] Problem with ManyToMany Mapping

2007-07-06 Thread Michael Horwitz
Hi, Just answered a similar question on another thread which I think may help here too. As long as you are using a version of AppFuse which uses Spring 2.0.x you should be using the Spring form tags to do all the hard work for you (I have adjusted the stuff below to match your JSP). I also notice

Re: [appfuse-user] Drop down list population

2007-07-06 Thread Michael Horwitz
Hmm. In that case you might want to take a look at Spring's form tags to make life a little easier: http://static.springframework.org/spring/docs/2.0.x/reference/spring-form.tld.html So your JSP would look something like: ... A lot simpler and Spring will do all the hard work for you

Re: [appfuse-user] appfuse2 and wtp

2007-07-06 Thread Michael Horwitz
See point 1 in the guide: 1. Use the AppFuse archetypes to create the project. I used the Struts-2 Modular version. If you're not using a modular archetype, you can skip to step #6. It sounds like you created your project from a basic archetype - so no need to copy pom files around :-) M

RE: [appfuse-user] Drop down list population

2007-07-06 Thread Aled Rhys Jones
m4, wanted to finish off some functionality before updating to m5. Cheers Aled _ From: Michael Horwitz [mailto:[EMAIL PROTECTED] Sent: 06 July 2007 08:39 To: users@appfuse.dev.java.net Subject: Re: [appfuse-user] Drop down list population Which version of AppFuse are you usin

Re: [appfuse-user] AW: Error while running test [mvn test -Dtest=PersonListTest]

2007-07-06 Thread Michael Horwitz
Hi Vishal, If you did the persistence tutorial, you should have the following bean definition in your Spring configuration file: in which case you could use Spring is basically complaining that the personDao bean definition is missing from your configuration files.

[appfuse-user] Appfuse Integration with IBM RAD IDE

2007-07-06 Thread sandeepsuku
Iam using Appfuse 1.9.x with Tomcat and DB2 database . I would like to integrate it with IBM RAD IDE , which will speed up the development process . I could integrate the source code with IBM RAD and I could run the ant. Since RAD doesn't recognize the appfuse folder struture, it does not allow

Re: [appfuse-user] Problem with ManyToMany Mapping

2007-07-06 Thread Michael Horwitz
Which version of AppFuse are you using? On 7/6/07, Msarda <[EMAIL PROTECTED]> wrote: I tried populating "webSystemImpacted" in EngagementformFormController in following method ,but i am getting jasper exception. protected Map referenceData(HttpServletRequest request) throws Exception {

Re: [appfuse-user] Drop down list population

2007-07-06 Thread Michael Horwitz
Which version of AppFuse are you using Aled? On 7/5/07, Tsung <[EMAIL PROTECTED]> wrote: Aled - Rather than having setCountryManager method, pass the CountryManager referene in CountryEditor's constructor. -- View this message in context: http://www.nabble.com/Add-ManyToOne-relationship-betw