Re: [appfuse-user] AppFuse: script.aculo.us Sortable Lists Question

2007-08-30 Thread JBlythe
Mike, Matt and all: Thanks for all the grand advice. I'm going to play around and get something working and report back. I'm in the middle of a bigger project, so I may not report back for a few days. (Right now, I think all I need to do is stick that poststring into the HTTP POST -- or a hidden

[appfuse-user] Mapping to Blob (DB2)

2007-08-30 Thread Ding, Qin
Appfuse 1.9.4/DB2/JSF I try to map a java property to db type blob /** * @return Returns the content. * uploaded file's content: * word, excel, pdf, image, txt and html file content * @hibernate.property column="content" type="binary" not-null="true" */ public byte[] getContent() { ret

RE: [appfuse-user] Re: Struts test failure

2007-08-30 Thread Ding, Qin
Appfuse 1.9.4/DB2/JSF I try to map a java property to db type blob /** * @return Returns the content. * uploaded file's content: * word, excel, pdf, image, txt and html file content * @hibernate.property column="content" type="binary" not-null="true" */ public byte[] getContent() { ret

Re: [appfuse-user] Possible Information leak

2007-08-30 Thread Matt Raible
The easiest way to change this is to modify the login.passwordSent.hint key from the default: login.passwordHint.sent=The password hint for {0} has been sent to {1}. to: login.passwordHint.sent=Your password hint has been sent to your e-mail address. The reason "it is what it is" is because I u

[appfuse-user] Possible Information leak

2007-08-30 Thread Dale Newfield
I recognize that not all web applications have the same requirements, but I would bet that a good portion of non-intranet sites want to protect user email addresses. If your application has this requirement, consider changing the feedback from the password hint tool so that the address to whic

Re: [appfuse-user] Jasperreports compilation error!

2007-08-30 Thread Michael Horwitz
I would suggest running maven with the -X switch and piping the output to a log file. The plugin should print its classpath to the log. e.g. on Windows: mvn -X compile > mvn.log You can then check the classpath used by the maven plugin. Another thing to check is that the plugin uses the same ver

Re: [appfuse-user] Jasperreports compilation error!

2007-08-30 Thread Jesfre
But tha packages are in the .m2 repository, however, maven tells that the packages doesn't exist. Is so weird. :S mraible wrote: > > I'd suggest asking this on the JasperReports forum. Does it work in > your IDE? If so, then it's probably a Maven problem. Maybe the package > names changed? > >

Re: [appfuse-user] Jasperreports compilation error!

2007-08-30 Thread Matt Raible
I'd suggest asking this on the JasperReports forum. Does it work in your IDE? If so, then it's probably a Maven problem. Maybe the package names changed? Matt On 8/30/07, Jesfre <[EMAIL PROTECTED]> wrote: > > Sorry, maybe I have to paste them separately... > > Plugin: > >

Re: [appfuse-user] Jasperreports compilation error!

2007-08-30 Thread Jesfre
Sorry, maybe I have to paste them separately... Plugin: org.codehaus.mojo jasperreports-maven-plugin 1.0-SNAPSHOT

Re: [appfuse-user] General AppFuse Questions

2007-08-30 Thread Matt Raible
On 8/30/07, opsdev <[EMAIL PROTECTED]> wrote: > > Hello,I've been briefly looking at the AppFuse web site and I am very > impressed so far. However, I have the following questions that need to be > answered before I would pitch the use of this project to my team lead and > project manager:- In my

Re: [appfuse-user] Jasperreports compilation error!

2007-08-30 Thread Matt Raible
>From what I can tell, there's still a missing dependency. Maybe you need to add the dependency to your regular section and not just the plugin? Matt On 8/30/07, Jesfre <[EMAIL PROTECTED]> wrote: > > Sorry... Yes I have. > > . > . > . > >

[appfuse-user] General AppFuse Questions

2007-08-30 Thread opsdev
Hello,I've been briefly looking at the AppFuse web site and I am very impressed so far. However, I have the following questions that need to be answered before I would pitch the use of this project to my team lead and project manager:- In my organization we have an in-house built utility that tak

Re: [appfuse-user] Missing artifiacts

2007-08-30 Thread jar77
Cool thanks for the tip its working now. Mike Horwitz wrote: > > It seems there is currently a problem with the Archetype plugin due to a > few > botched releases: http://tinyurl.com/2elcwt > > Only two real solutions: > > 1) Wait for them to fix it > 2) Specify the version of the archetype p

Re: [appfuse-user] Missing artifiacts

2007-08-30 Thread jar77
Thanks! mraible wrote: > > You might try running "mvn -U". > > Matt > > On 8/29/07, jar77 <[EMAIL PROTECTED]> wrote: >> >> New to maven and appfuse. Recieve the following error when following the >> quickstart. Any ideas? Worked fine the other day.. >> >> Thanks for help >> >> mvn archetyp

Re: [appfuse-user] Jasperreports compilation error!

2007-08-30 Thread Jesfre
Sorry... Yes I have. . . . org.codehaus.mojo jasperreports-maven-plugin 1.0-SNAPSHOT

Re: [appfuse-user] Missing artifiacts

2007-08-30 Thread Michael Horwitz
It seems there is currently a problem with the Archetype plugin due to a few botched releases: http://tinyurl.com/2elcwt Only two real solutions: 1) Wait for them to fix it 2) Specify the version of the archetype plugin to use on your command line to force the use of an earlier version: mvn org

[appfuse-user] Intergrating TUDU lits with Appfuse framworked application

2007-08-30 Thread Kanchana Welagedara
HI All I'm working on an application which is planed developed using appfuse framework.I found the TUDU list (http://tudu.sourceforge.net)product which is really cool and I want to integrate the TUDU (may be to use it with Appfuse ,or use as a third party plug in )in my application.I want to know

Re: [appfuse-user] AppFuse: script.aculo.us Sortable Lists Question

2007-08-30 Thread Michael Horwitz
There is a reasonably good demo on the Scriptaculous site: http://demo.script.aculo.us/ajax/sortable_elements The view source shows an example of view/controller. It's in Ruby, but the same should hold for Java. The idea seems to be that you use request.getParameterValues(key) which returns an arr