Re: [appfuse-user] Opinion

2008-09-08 Thread Vincenzo Caselli
Philip,let us know if you switch the issue to another forum. Just to share points of view. Thanks Vincenzo Caselli On Mon, Sep 8, 2008 at 9:02 PM, Philip Barlow <[EMAIL PROTECTED]> wrote: > Thank You Vincenzo for your input. I would agree that XML serialization is > not the fastest and i have y

Re: [appfuse-user] Advice please.

2008-09-08 Thread Richard G. Reyes
Yes on the wildcard. Try reading documentations for struts menu its config file is web/WEB- INF/menu-config.xml Richard On Sep 8, 2008, at 11:21 PM, Ding, Qin wrote: Richard, I'll try that. Thank you. The wildcard like signup.html*, does it mean any parameters after html or any character

[appfuse-user] Spring MVC Modular with JPA and possible error with beans defined in applicationContext.xml

2008-09-08 Thread Pablo Alcaraz
Hello! I am using the archetype Spring MVC Modular with JPA. I have a problem when I am following the instructions to generate the personManager class. In http://appfuse.org/display/APF/Using+JPA the instructions says I have to register in core/src/main/resources/applicationContext.xml the b

Re: [appfuse-user] Opinion

2008-09-08 Thread Philip Barlow
Thank You Vincenzo for your input. I would agree that XML serialization is not the fastest and i have yet to finish my research on Matt's suggested approach but i will share any useful information I find. We did show a performance boost in a recent application by trying out stored procedures b

Re: [appfuse-user] good jsp editor

2008-09-08 Thread Philip Barlow
Yes that's the one, i'm sure there is documentation on the site. sam wun wrote: Do you know how to use it? My Eclipse 3.4 is already have the WTP plugins downloaded. When I double clicks on the jsp script in my project, it is opened in the jsp editor. Is this the tool you meant? Thanks

RE: [appfuse-user] Advice please.

2008-09-08 Thread Ding, Qin
Richard, I'll try that. Thank you. The wildcard like signup.html*, does it mean any parameters after html or any character after html like htmlabc? I tried to modify the index.jsp to redirect to my general page with a link to the mainMenu.jsp. My general page, however, contains the existing menu

Re: [appfuse-user] Re[appfuse-user] moving passwordhint,address and phone number from user table

2008-09-08 Thread Matt Raible
I can't think of any reason why you wouldn't be able to login anymore. Is there any sort of errors in your logs? Matt On Mon, Sep 8, 2008 at 3:55 AM, jithesh <[EMAIL PROTECTED]> wrote: > > Hello Guys, > >I am using appfuse 1.9.4 for bulding my web app. But my recent > modification compell

Re: [appfuse-user] writing servlet to access the manager in appfuse2.0

2008-09-08 Thread Matt Raible
You should be able to get access to Spring's ApplicationContext (and all your beans) using the following: ServletContext servletContext =this.getServletContext(); WebApplicationContext wac = WebApplicationContextUtils.getRequiredWebApplicationContext(servletContext); UserManager userManager = (Use

Re: [appfuse-user] one problem about appfuse2

2008-09-08 Thread Matt Raible
Try running mvn test with a "-Dsurefile.useFile=false" argument to see what the error messages are. Matt On Mon, Sep 8, 2008 at 2:27 AM, qifeng.deng <[EMAIL PROTECTED]> wrote: > HI! > I have a problem about appfuse2! > I create a project with command > "mvn archetype:create -DarchetypeGroupId=org

Re: [appfuse-user] Deploy Appfuse 2.0 in websphere 7.0

2008-09-08 Thread Matt Raible
Looking at these messages, I don't know what the problem could be. I'd suggest contacting the MyFaces mailing list and see if anyone has tried WAS 7 over there. Matt On Mon, Sep 8, 2008 at 4:41 AM, Narsis <[EMAIL PROTECTED]> wrote: > > Yes, i have tried. > > When i start it in default mode, this

[appfuse-user] one problem about appfuse2

2008-09-08 Thread qifeng.deng
HI! I have a problem about appfuse2! I create a project with command "mvn archetype:create -DarchetypeGroupId=org.appfuse.archetypes -DarchetypeArtifactId=appfuse-basic-spring -DremoteRepositories=http://static.appfuse.org/releases -DarchetypeVersion=2.0.2 -DgroupId=com.mycompany.app -DartifactI

Re: [appfuse-user] Advice please.

2008-09-08 Thread Richard G. Reyes
Hi Qin, In your web/WEB-INF/security.xml, there might be a lines like this... class="org.acegisecurity.intercept.web.FilterSecurityInterceptor"> ref="authenticationManager"/> ref="accessDecisionManager"/> PATTERN_TYPE_APACHE_ANT

[appfuse-user] Advice please.

2008-09-08 Thread Ding, Qin
My website has two parts, general information and membership-only information. Membership-only part is built using Appfuse 1.9.4/MySql/Spring MVC, which requires longin. The general information part should not require login. How should I make changes so that user can browse the general informatio

Re: [appfuse-user] Deploy Appfuse 2.0 in websphere 7.0

2008-09-08 Thread Narsis
Yes, i have tried. When i start it in default mode, this is the error : [9/8/08 14:56:56:046 IRDT] 006f AbstractFaces E org.apache.myfaces.webapp.AbstractFacesInitializer initFaces An error occured while initializing MyFaces: Class org.ajax4jsf.framework.ajax.AjaxStateManager is no javax.fa

[appfuse-user] Re[appfuse-user] moving passwordhint,address and phone number from user table

2008-09-08 Thread jithesh
Hello Guys, I am using appfuse 1.9.4 for bulding my web app. But my recent modification compelled to remove the password hint, address and phone number from the user object. When i did and recompiled and deployed, I am not able to login to the application. what i did is I commentout the o

[appfuse-user] writing servlet to access the manager in appfuse2.0

2008-09-08 Thread Andrew Sky
Hi all, I am trying to write a simple servlet to access all the service manager layer that i created with Appfuse 2.0. Is there any tutorial on this ? Reason being that i need to create a midlet that need to consume services from the service layer. I guess the most straightforward and time effici

Re: [appfuse-user] Opinion

2008-09-08 Thread Vincenzo Caselli
Hi Philip,I completely agree with you with being against the stored procedure approach, it should be considered a very old, ugly and not portable way of doing things. The way suggested by Matt is very interesting indeed. An alternative could be exploiting the Appfuse feature of quickly turning a Ma