Re: [appfuse-user] CXF and AppFuse 2.0.1

2009-09-26 Thread -=j=-
Ah, thanks, I'll put that back in. Also, I'm getting compile errors relating to asm and cglib, so I suspect that the exclusions or dependencies are in the wrong place. Are they in the right place? -=j=- On Sat, 2009-09-26 at 14:50 -0600, Matt Raible wrote: > You still ne

Re: [appfuse-user] request for upcoming release

2009-09-25 Thread -=j=-
Hi Matt, Does this have to be done before you can use mule? (which includes CXF) Thanks... -=j=- On Fri, 2009-09-25 at 15:56 -0600, Matt Raible wrote: > Here's a thread regarding upgrading XFire to CXF: > > http://www.nabble.com/CXF-and-AppFuse-2.0.1-td14282383s2369.html >

Re: [appfuse-user] How to add resource to maven repository

2009-09-04 Thread Diane J
} provided and this in properties: 1.0 No issue at compile time, but at runtime it can't find the classes. mraible wrote: > > Try adding -DgeneratePom=true to your installation command. > > On Thu, Sep 3, 2009 at 2:31 PM, Diane J wrote: >

[appfuse-user] How to add resource to maven repository

2009-09-03 Thread Diane J
I added the following resource to my local repository: mvn install:install-file -DgroupId=org.w3c.tidy -DartifactId=tidy -Dversion=1.0 -Dpackaging=jar -Dfile=C:\tools\tidy\Tidy.jar I see it in my repository. But it keeps giving the following error on startup and throws an exception when I try to

[appfuse-user] Dynamically changing the theme ?

2009-01-20 Thread J. Matthew Pryor
A search of the archives turned up little, but I was wondering if anyone has tried to enable theme selection as a user preference? ATM the theme is read from a web.xml deployment parameter, but it seems like this should be able to be read from a user property/ preference/cookie or something?

Re: [appfuse-user] CommunicationsException

2008-07-22 Thread J. David Mendoza
Try using the latest and see if that fixes the problem... you can change the version in the pom later (if it works) 2008/7/22 java_user_ <[EMAIL PROTECTED]>: > > I am using the JARs that came with appfuse 2.0.1 > > mysql-connector-java-5.0.5.jar > > > > J. David Men

Re: [appfuse-user] CommunicationsException

2008-07-21 Thread J. David Mendoza
Are you using the latest mysql jdbc jar? 2008/7/21 java_user_ <[EMAIL PROTECTED]>: > > Has anyone figured out what is causing the CommunicationsException after 8+ > hours on idle time? > It is a stale connection and adding "autoReconnect=true" in the JDBC URL > has > not fixed the issue. > > Ther

Re: [appfuse-user] SQL does not store FK when implementing OneToMany relationship.

2008-07-21 Thread J. David Mendoza
Remove the *updatable = false, insertable = false* from the item's category JoinColumn tag (and leave the mappedBy='category')... David M. 2008/7/20 Alc4man <[EMAIL PROTECTED]>: > > Thanks for the quick reply. I tried to add mappedBy="category" as you said > but it did not help. > > Now it looks

Re: [appfuse-user] SQL does not store FK when implementing OneToMany relationship.

2008-07-20 Thread J. David Mendoza
Try telling hibernate of the bidirection in the Category source you have to add mappedBy="category", like this: @OneToMany( cascade = {CascadeType.ALL}, fetch = FetchType.EAGER, *mappedBy="category"* ) @JoinColumn(name="category_id" > > ) > public List items = new ArrayList(); David M. 2008/

Re: [appfuse-user] Struts 2 datepicker not working

2008-07-17 Thread J. David Mendoza
y, thank you very much for the hlp. > > > > > J. David Mendoza R. wrote: > > > > Found out why... > > > > In the StaticFilter there's an include to send the request to the > > struts.jar > > components, for some reason this doesn't work,

Re: [appfuse-user] Struts 2 datepicker not working

2008-07-01 Thread J. David Mendoza
if you want to use some of struts's html components. David M. 2008/7/1 Tuncay A. <[EMAIL PROTECTED]>: > > Thanks a lot. It works now with jscalendar > > I'm still wondering why the didn't work ?? > > > > J. David Mendoza

Re: [appfuse-user] Struts 2 datepicker not working

2008-07-01 Thread J. David Mendoza
Ajax dojo is working or not, > and > how. > > It will be nice, if you could instruct me on how to integrate the > "jscalendar". > > > > > J. David Mendoza R. wrote: > > > > Hello Tuncay... > > > > What I did to

Re: [appfuse-user] Struts 2 datepicker not working

2008-06-30 Thread J. David Mendoza
Hello Tuncay... What I did to get the datetimepicker working was modify the staticFilter in web.xml staticFilter org.appfuse.webapp.filter.StaticFilter includes /scripts/dojo/*,/dwr/index.html,/struts/* Notice the param-value tag. But I d

Re: [appfuse-user] how To develop project AppFuse with Netbeans ?

2008-06-26 Thread J. David Mendoza
It works, doesn't it? ;) 2008/6/25 Mauri Ferreyra <[EMAIL PROTECTED]>: > Jaja! good solution!! > > > On Wed, Jun 25, 2008 at 1:57 PM, J. David Mendoza <[EMAIL PROTECTED]> > wrote: > >> I did it a bit differently... >> 1. Create the archetype >&g

Re: [appfuse-user] Rich Text Editor Error

2008-06-25 Thread J. David Mendoza
Have you tried changing the staticFilter web.xml parameters? staticFilter org.appfuse.webapp.filter.StaticFilter includes /scripts/dojo/*,/dwr/index.html,/struts/* The line you have to change is the one, so it looks like this... David M.

Re: [appfuse-user] how To develop project AppFuse with Netbeans ?

2008-06-25 Thread J. David Mendoza
I did it a bit differently... 1. Create the archetype 2. mvn eclipse:eclipse 3. Open Netbeans 6.1 and used the eclipse importer plugin ;) David M. 2008/6/19 Mauri Ferreyra <[EMAIL PROTECTED]>: > Hi, I ran appfuse 2.0 with netbeans 6.1 > you follow this steps: > 1-mvn archetype:create -Darchetyp

Re: [appfuse-user] Looking for a DWR example?

2008-06-25 Thread J. David Mendoza
Hello, Carlos... All you have to do to use it in a 2.x project is 1. Edit the web.xml. Look for the staticFilter, and in the params you will have to change it to this (the second line is the one you change): includes /scripts/dojo/*,/dwr/index.html,/struts/* 2. Add you're manager to t

Re: [appfuse-user] Problem with the Quickstart archetype Struts 2 Basic

2008-05-01 Thread -=j=-
Hey there, Not sure if this is what your problem is but I ran into semi-similar issues trying to quick start a project using maven 2.0.9. When I backed off to maven 2.0.8 it worked without issue. If you're using maven 2.0.9 you might try backing off to 2.0.8 HTH, -=j=- On Fri, 2008-04-

Re: [appfuse-user] Appfuse 2.01 + Struts + modified core classes -> password confusion

2008-02-12 Thread J. David Mendoza
Rob... What I did was: 1. Extend the UserAction 2. In the saveUser, i check if the password is less then 40 chars and if it is I change the user's version to null (make Appfuse think this is a new user) Doesn't work for every encryption method but it does for the sha... On Feb 12, 2008, a

Re: [appfuse-user] SOLUTION: Re: Debugging in Netbeans 6.0 / Appfuse 2.0.1?

2008-01-09 Thread J. David Mendoza
Are you using Struts? Did you get the warpath to work? or are you working with the errors on the actions? David M. On Jan 7, 2008, at 4:22 PM, John Vance wrote: What I was looking for was how to start up a local debugging session. I'm probably not using the right terms.I wanted to la

[appfuse-user] Tests not working after change of table name...

2008-01-01 Thread J. David Mendoza R.
Hello everyone... I've download the core clases of appfuse into my project and changed the table names... Everything works except the tests :) I'm using Struts 2 in AppFuse 2.0.1 I've started the app without the tests and checked if everything was working, and it is... but when I test it the Bas

[appfuse-user] Tests not working after change of table name...

2007-12-31 Thread J. David Mendoza R.
Hello everyone... I've download the core clases of appfuse into my project and changed the table names... Everything works except the tests :) I'm using Struts 2 in AppFuse 2.0.1 I've started the app without the tests and checked if everything was working, and it is... but when I test it the Bas

Re: [appfuse-user] appfuse 2.0.1 and tomcat 6 don't work

2007-12-18 Thread J. David Mendoza
My bad :( Made it work... thanks... On Dec 18, 2007, at 9:31 AM, Matt Raible wrote: Does "mvn install" work? The reason I ask is because all the integration tests run in Tomcat 6. You can use "mvn cargo:start -Dcargo.wait=true" to view your app in Tomcat. Matt On 12/18/

[appfuse-user] appfuse 2.0.1 and tomcat 6 don't work

2007-12-18 Thread J. David Mendoza
I have a struts base app that works well in jetty but doesn't work on tomcat (or glassfish)... The login button doesn't show up and it doesn't throw any errors, so I'm lost... Has anyone else experienced this? David M. - To

Re: [appfuse-user] How to secure a manager's method?

2007-12-10 Thread J. David Mendoza
s... David M. On Dec 10, 2007, at 12:50 PM, Michael Horwitz wrote: So you need to secure against a specific role or does your security need to more complicated, e.g. check the parameters being passed in against the current user? It would also help to know which version of AppFuse you are u

[appfuse-user] How to secure a manager's method?

2007-12-10 Thread J . David Mendoza
I need to secure a manager's methods, what do I need to do? Thanks... David M. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [appfuse-user] Appfuse and svn externals

2007-11-30 Thread J. David Mendoza
Thanks, Dean! Dean Hallman wrote: I'm just getting started with AppFuse, so this might be old news... But I wanted to suggest a technique for structuring your AppFuse-based projects (for those using subversion anyway). IMO, ideally you may want to work in an appfuse:full-source (or war:inpl

Re: [appfuse-user] issue with dwr and struts

2007-11-28 Thread J. David Mendoza
oject with 2.0.1 and was able to successfully view /dwr/index.html. Are you not able to do this? If you are, what is the problem you're seeing? Thanks, Matt On Nov 28, 2007, at 10:47 AM, J. David Mendoza wrote: basic and embedded. Matt Raible wrote: Modular or basic? Embedded or ful

Re: [appfuse-user] issue with dwr and struts

2007-11-28 Thread J. David Mendoza
basic and embedded. Matt Raible wrote: Modular or basic? Embedded or full-source? Matt On Nov 28, 2007, at 10:12 AM, J. David Mendoza wrote: I have an account... but it keeps kicking me out whenever i try to add the issue The problem is with struts (That uses the static filter), i&#

Re: [appfuse-user] issue with dwr and struts

2007-11-28 Thread J. David Mendoza
you, but I need more details (JDK, OS, frameworks used, AppFuse version). Thanks, Matt On Nov 28, 2007, at 7:26 AM, J. David Mendoza wrote: DWR doesn't work out of the box. You have to change the static filters parameter from /dwr/* to /dwr/index.html (Tried creating an issue, but it just

[appfuse-user] issue with dwr and struts

2007-11-28 Thread J. David Mendoza
DWR doesn't work out of the box. You have to change the static filters parameter from /dwr/* to /dwr/index.html (Tried creating an issue, but it just doesn't let me, it keeps telling me I'm not logged in) - To unsubscribe, e-

Re: [appfuse-user] appfuse:gen doesn't know how to handle @Version

2007-11-27 Thread J. David Mendoza
ov 27, 2007, at 8:57 AM, J. David Mendoza wrote: In previous versions of appfuse, the generator knew what to do with @Version. It made it a hidden field in the form and it didn't show it on the list... and it knew what to do with the Integer in the sample data... now it doesn't is there

[appfuse-user] appfuse:gen doesn't know how to handle @Version

2007-11-27 Thread J. David Mendoza
In previous versions of appfuse, the generator knew what to do with @Version. It made it a hidden field in the form and it didn't show it on the list... and it knew what to do with the Integer in the sample data... now it doesn't is there a reason I don't know of? David M. P.S. Great release

[appfuse-user] problem with appfuse:gen in windows

2007-11-27 Thread J. David Mendoza
There's a bug with the ant plugin http://www.mail-archive.com/[EMAIL PROTECTED]/msg64744.html and is triggered in windows default m2 repositories, cause there on the "Documents and Settings" folder that contains spaces. :( - T

[appfuse-user] cas sso...

2007-11-22 Thread J. David Mendoza
Has anyone configured an appfuse 2.0 app as a CAS Client? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [appfuse-user] Ajax Table

2007-11-15 Thread J. David Mendoza
, I will looked on JMesa. David, Can you pl. give some more information on how to use DWR with DisplayTag lib? On Nov 15, 2007 9:41 AM, J. David Mendoza < [EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: You can use dwr to build a simple one... dwr is alread

Re: [appfuse-user] Ajax Table

2007-11-15 Thread J. David Mendoza
You can use dwr to build a simple one... dwr is already configured in appfuse... ;) Michael Horwitz wrote: We use eXtremeComponents which adds both column filters and ajax paging. I see from their site that a new library has been created called JMesa which claims to offer a better API along wi

Re: [appfuse-user] DWR help

2007-10-09 Thread J. David Mendoza
Have you tried function update() { var name = dwr.util.getValue("demoName"); Demo.sayHello(name, function(data) { dwr.util.setValue("demoReply", data); }); } Matt Raible wrote: No, unfortunately, I don't know what the problem could be. You might try debugging with Firebug in F

Re: [appfuse-user] Problems in 2.0 with dwr

2007-09-24 Thread J. David Mendoza R.
I'm using it with the struts 2 framework... as a workaround to dojo, I'll give dojo another try, cause I couldn't make it work with dwr... I'm using a 2.0m5 release for now... Thanks... David M.

Re: [appfuse-user] Problems in 2.0 with dwr

2007-09-22 Thread J. David Mendoza R.
Yeap! staticFilter org.appfuse.webapp.filter.StaticFilter includes /scripts/dojo/*,/dwr/* it's there... David M

[appfuse-user] Problems in 2.0 with dwr

2007-09-22 Thread J. David Mendoza R.
Hello everyone... Has anyone worked in the new 2.0 version with dwr/ajax? I had an application with 2.0m5 working, which I've migrated to this version (2.0) and it works, but with a new app it just doesn't work... I'm getting a "contentType has no properties" and the div that should get filled it

Re: [appfuse-user] FilesystemDao or FilesystemManager

2007-08-13 Thread J. David Mendoza
The Dao... this is the place where you persist... The service (or manager) is for the business logic (if you need to transform the data) David M. Marcelo Alcantara wrote: Hi, I have to make a module in my application that should be writes xmls. Maybe I will have to have the option of being a

Re: [appfuse-user] ...xwork2.ObjectFactory with the name xwork has already been loaded by bean...struts2-core-2.0.6.jar

2007-07-18 Thread -=j=-
On Tue, 2007-07-17 at 21:24 -0700, Matt Raible wrote: > It looks like you still have a struts-2.0.6 JAR in your classpath. > Maybe you need to run "mvn clean package"? > Matt - Well, it's something like that but I submitted that error stack tr

[appfuse-user] ...xwork2.ObjectFactory with the name xwork has already been loaded by bean...struts2-core-2.0.6.jar

2007-07-17 Thread -=j=-
Hi, I'm getting the same error as this guy while trying to deploy to weblogic [but using struts2-core-2.0.8.jar], I suspect it's from (mis)use of some struts 2 configuration, has anybody seen this?: Bean type class com.opensymphony.xwork2.ObjectFactory with the name xwork has already been loaded

Re: [appfuse-user] JasperException: /index.jsp(1,1) File "/WEB-INF/.tld" not found

2007-06-25 Thread -=j=-
I'm not sure what happened but I let my kids play some games on my laptop which may have been a mistake :( Is the file created when you create a new project or what is it's lifecycle and how does it get created/recreated/etc.? Thanks Matt!! -=j=- > If so, > you might try deleting

Re: [appfuse-user] ajax and datepicker on 2m4

2007-05-31 Thread J. David Mendoza
Answered down below... Matt Raible wrote: On 5/31/07, J. David Mendoza <[EMAIL PROTECTED]> wrote: I've just tried the autocompleter after seen the datetimepicker and optiontransferselect tags work... the autocompleter tag uses struts 2 js that don't come in the dojo distribu

Re: [appfuse-user] ajax and datepicker on 2m4

2007-05-31 Thread J. David Mendoza
Couldn't make the ajax theme tags work... so there's no autocompleter with this solution :( David M. J. David Mendoza wrote: I've just tried the autocompleter after seen the datetimepicker and optiontransferselect tags work... the autocompleter tag uses struts 2 js that do

[appfuse-user] @OneToMany with @JoinTable

2007-05-31 Thread J. David Mendoza
Has anyone tried this? The thing is I need to make a relation from some object to many User objects, but I don't want to touch the User object source (I don't want to download the full source into my project). So reading the hibernate annotations documentation I found the unidirectional @OneToM

Re: [appfuse-user] ajax and datepicker on 2m4

2007-05-31 Thread J. David Mendoza
s lots on http://struts.apache.org/2.0.6/docs/ajax-tags.html, but I'd prefer to try something that you've tried and doesn't work. Matt On 5/31/07, J. David Mendoza <[EMAIL PROTECTED]> wrote: Does the autocompleter tag work with this solution? David M. Matt Raible wrote: &

Re: [appfuse-user] ajax and datepicker on 2m4

2007-05-31 Thread J. David Mendoza
Does the autocompleter tag work with this solution? David M. Matt Raible wrote: I took the debugging part out and used what the Struts folks were outputting instead. // Dojo configuration djConfig = { baseRelativePath: "

Re: [appfuse-user] appfuse 2.0m5/Struts2

2007-05-29 Thread J. David Mendoza
(named "input") for your "saveOrganization" in struts.xml. Matt On 5/29/07, *J. David Mendoza* <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote: Couldn't reproduce in the demo, but here's the stack trace, I'm using the PersonAction a

Re: [appfuse-user] appfuse 2.0m5/Struts2

2007-05-29 Thread J. David Mendoza
undedThreadPool$PoolThread.run(BoundedThreadPool.java:442) Matt Raible wrote: Can you provide more information or steps to reproduce on the demo site? A screenshot or stacktrace would be ideal. Matt On 5/29/07, *J. David Mendoza * <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>> wrote:

[appfuse-user] appfuse 2.0m5/Struts2

2007-05-29 Thread J. David Mendoza
Has anyone tried to do a cancel after a validation error... everything gets screwed up! Isn't there a workaround for this scenario (besides not doing it) ? David M. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional co

Re: [appfuse-user] ajax and datepicker on 2m4

2007-05-25 Thread J. David Mendoza
what browser are you trying it on? I've had problems with ie, with firefox it works fine... David M. Will Berger wrote: Fyi...in 2m4 and probably 2m5, there seems to be a problem where the datepicker and the ajax head tag can't coexist on a page and function properly. On 2m4 I was doing the d

Re: [appfuse-user] appfuse 1.9.4 app in jboss cluster

2007-05-24 Thread J. David Mendoza
ctory, you might try copying it to JBoss's server/lib directory (or whereever it's located). Matt On 5/24/07, J. David Mendoza <[EMAIL PROTECTED]> wrote: I'm trying to deploy an appfuse 1.9.4 app into a jboss cluster, but I get into trouble as soon as I try to log in, if I

[appfuse-user] appfuse 1.9.4 app in jboss cluster

2007-05-24 Thread J. David Mendoza
I'm trying to deploy an appfuse 1.9.4 app into a jboss cluster, but I get into trouble as soon as I try to log in, if I use a bad login it does what is supposed to do (show the warning), but when a use a good login it just shows me the login page again with the username in it and a blank passwo

Re: [appfuse-user] Dojo-Struts2 ... datetimepicker, doubleselect...wont work for us.

2007-05-24 Thread J. David Mendoza
The "problem" is the StaticFilter, I've tried using Dojo outside of the struts.jar, but haven't got it working "yet"... What I've been doing is to change the *.html mapping of the hole project and then just disable the StaticFilter... David M. Matt Raible wrote: I believe some folks on this

Re: [appfuse-user] JasperException: /index.jsp(1,1) File "/WEB-INF/.tld" not found

2007-05-21 Thread -=j=-
2007-05-21 at 19:08 -0600, -=j=- wrote: > Hi gang, > > I'm all of a sudden getting a weird error that says that the tld file > bearing the name of my project can't be found and I now can't access my > app... this is quite strange as I hadn't been working on t

[appfuse-user] JasperException: /index.jsp(1,1) File "/WEB-INF/.tld" not found

2007-05-21 Thread -=j=-
Hi gang, I'm all of a sudden getting a weird error that says that the tld file bearing the name of my project can't be found and I now can't access my app... this is quite strange as I hadn't been working on the app for a while and it looks like I fouled something but I'm having trouble figuring o

Re: [appfuse-user] open / close hibernate session in appfuse

2007-05-21 Thread -=j=-
ere's no need for that pattern and hence no need for the filter... Thanks again my friend... -=j=- On Mon, 2007-05-14 at 09:10 +0100, Michael Horwitz wrote: > Hi, > > Judging by the lack of responses, not a stupid question at all! I'm > assuming you are using 2.0x of AppF

[appfuse-user] open / close hibernate session in appfuse

2007-05-11 Thread -=j=-
iew') but I couldn't find the code. can anybody point me towards that? Similarly, I can't find where the hibernate session is opened either... can anyone help? Sorry for such a dumb question, much obliged for your help in advance. -=j=-

Re: [appfuse-user] Recomended Pratice (Struts2 Dojo)

2007-05-04 Thread J. David Mendoza
encode='false'/>", </tt><pre style="margin: 0em;"> isDebug: ${parameters.debug?default(false)}, bindEncoding: "${parameters.encoding}", </pre><tt> debugAtAllCosts: true // not needed, but allows the Venkman </tt>

Re: [appfuse-user] Recomended Pratice (Struts2 Dojo)

2007-05-04 Thread J. David Mendoza
gets rendered by Is there a way to override this? Thanks in advance, Thomas J. David Mendoza wrote: Thomas, once you rename the action mappings you don't have to extract the struts content... just get rid of the StaticFilter in the web.xml and it should work with the standard struts2 ajax t

Re: [appfuse-user] Recomended Pratice (Struts2 Dojo)

2007-05-03 Thread J. David Mendoza
Thomas, once you rename the action mappings you don't have to extract the struts content... just get rid of the StaticFilter in the web.xml and it should work with the standard struts2 ajax tags...Cheers...David M.On 3/05/07 02:27 AM, Matt Raible <[EMAIL PROTECTED]> wrote:Here's an issue for the da

Re: [appfuse-user] datepicker problems in appfuse 2m4

2007-05-02 Thread J. David Mendoza
7;ve added the to my .jsp - included the latest sitemesh.xml and decorators.xml - updated web.xml Are there any other differences between 2.0-M5-SNAPSHOT and 2.0-M4 that should make a difference in this? Thanks, Nathan - Original Message - From: "J. David Mendoza" <[E

Re: [appfuse-user] finding appfuse tutorial classes in netbeans

2007-04-30 Thread J. David Mendoza
Ahh... but you can use it... just add these lines under the warpath dependency and it should work (but you will have to comment it each time you wish to do a mvn clean, 'cause the jar isn't there yet :) org.appfuse appfuse-${web.framework} ${appfuse.vers

Re: [appfuse-user] Dojo Problem

2007-04-26 Thread J. David Mendoza
his way you can do things as in the doco :) for the tag or just for the /> tag... Hope this helps... David M. Aridany Ramirez wrote: No, i´m sorry. I´m still stuck with that problem. 2007/4/26, J. David Mendoza <[EMAIL PROTECTED] <mailto:[EMAIL PROTECTED]>>: Aridany,

Re: [appfuse-user] datepicker problems in appfuse 2m4

2007-04-26 Thread J. David Mendoza
extraction for you, so Dojo is already there. Matt On 4/25/07, J. David Mendoza <[EMAIL PROTECTED]> wrote: Another way to get the struts2 ajax features working (dojo), is to add some lines to the decorators.xml, change the parser in the sitemesh.xml and change the .html struts mappi

Re: [appfuse-user] Dojo Problem

2007-04-25 Thread J. David Mendoza
p.> > > >> From> > > > > > > > http://struts.apache.org/2.x/docs/performance-tuning.html:> > > > > > > > > > > Copy the static content from the Struts 2 jar when using the> > > > > > > > > Ajaxtheme (Dojo) or the Cale

Re: [appfuse-user] datepicker problems in appfuse 2m4

2007-04-25 Thread J. David Mendoza
Another way to get the struts2 ajax features working (dojo), is to add some lines to the decorators.xml, change the parser in the sitemesh.xml and change the .html struts mapping so you can remove the staticFilter. Decorator's lines: /styles/* /scripts/* /images/*

Re: [appfuse-user] datepicker problems in appfuse 2m4

2007-04-19 Thread J. David Mendoza
Aridany, I think it would be great if you could write a HOWTO in AppFuse's website on how to setup dojo... Aridany Ramirez wrote: You need to copy the files inside "org/apache/struts2/static" folder, from struts2-core-2.0.6.jar to /scripts/dojo. Then make an include with dojo.js in the body of

Re: [appfuse-user] Dojo Problem

2007-04-12 Thread J. David Mendoza
This is what I did... - I downloaded the dojo-widget.tar.gz from http://dojotoolkit.org/. - Added the dojo.js to the src/main/webapp/scripts folder - Added the src directory to src/main/webapp/src folder - Then I added the dojo.js script link to the page I'm using it... (Without removing anythin

Re: [appfuse-user] struts2 select

2007-04-11 Thread J. David Mendoza
Without LabelValue by the way :) (Using a POJO) J. David Mendoza wrote: Thanks Matt, but it turned out to be jetty :( I just put the war in Tomcat and it worked! So I'm working with the Tomcat plug in for this project, not as good as Jetty's, but it works ;) David M. Matt Raible w

Re: [appfuse-user] struts2 select

2007-04-11 Thread J. David Mendoza
I believe I read something about how it didn't support Object types in one of the recent releases. Matt On 4/10/07, J. David Mendoza <[EMAIL PROTECTED]> wrote: I just can't seem to make the s:select work, can someone give some pointers... I keep getting NullPointerExcepti

[appfuse-user] struts2 select

2007-04-10 Thread J. David Mendoza
I just can't seem to make the s:select work, can someone give some pointers... I keep getting NullPointerExceptions... Thanks... David M. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROT

Re: [appfuse-user] get rid off error in idea

2007-04-09 Thread J. David Mendoza
I'm talking about a POJO, by the way :) and the mapping @Table(name="people") David M. J. David Mendoza wrote: Hello everyone... I'm trying to get rid off an error in IDEA when I use a table name, it tells me it can't resolve the symbol, and it points to the table n

[appfuse-user] get rid off error in idea

2007-04-09 Thread J. David Mendoza
Hello everyone... I'm trying to get rid off an error in IDEA when I use a table name, it tells me it can't resolve the symbol, and it points to the table name... Thanks... David M. - To unsubscribe, e-mail: [EMAIL PROTECTED]

Re: [appfuse-user] database table names

2007-03-14 Thread J. David Mendoza
You can do this in your projects... Just go to the User and Role objects and change the table name in hibernate ;) David M. tibi wrote: >IMHO, most companies don't want traces of AppFuse in their if that is the case you are right. i did not come acros those company's you could also start with

Re: [appfuse-user] Build.xml source - Newbie Question

2007-03-11 Thread -j-
What version of appfuse are you using? The 2.x stuff is based on maven rather than ant... j Sent via BlackBerry from T-Mobile -Original Message- From: paulie <[EMAIL PROTECTED]> Date: Sat, 10 Mar 2007 22:47:08 To:users@appfuse.dev.java.net Subject: [appfuse-user] Bui

[appfuse-user] howto enable postgresql in appfuse2?

2007-03-07 Thread J. David Mendoza R.
How do I set postgresql as the default database in an archetype generated app? David M. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [appfuse-user] JfreeChart - Struts2 - Appfuse detailed problem report -- I am a fool

2007-03-06 Thread J. David Mendoza R.
Any news on this? David M. VJ22 wrote: Sure thing.will sit down over the weekend and get it done J. David Mendoza R. wrote: Of course we would love a Struts2 - JFreeChart tutorial!!! Please do... David M. VJ22 wrote: Thanks Dusty I finally get this working and how

[appfuse-user] how do I add a library in AppFuse 2.0?

2007-03-06 Thread J. David Mendoza R.
Hello everyone!!! How do I add a library in AppFuse 2.0? Thanx... David M. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: [appfuse-user] Time Handling in Spring

2007-03-01 Thread J. David Mendoza
Save the hole date and just display the hh:MM in the JSP with a formatter (java.util.SimpleDateFormat) David M. hquinn wrote: Greetings everyone! I have a very simple question... how does hibernate & spring handle a time property?? In my pojo I have a time property called "hour" which is type

Re: [appfuse-user] JfreeChart - Struts2 - Appfuse detailed problem report -- I am a fool

2007-02-26 Thread J. David Mendoza R.
Tks...Vijay J. David Mendoza R. wrote: Hello Vijay... I'm using appfuse 1.9.4, spring and jfreechart, and what I did is, I made a servlet that uses jfreechart's tools to generate the chart as a PNG image and just present it within the JSP... This should work with an

Re: [appfuse-user] JfreeChart - Struts2 - Appfuse detailed problem report

2007-02-23 Thread J. David Mendoza
Hello Vijay... I'm using appfuse 1.9.4, spring and jfreechart, and what I did is, I made a servlet that uses jfreechart's tools to generate the chart as a PNG image and just present it within the JSP... This should work with any web framework... David M. VJ22 wrote: Hello All, The proble

RE: [appfuse-user] Appfuse 2 + Intellij IDEA

2007-01-12 Thread Philip J Brown
Matt, Just out of curiosity, what environment do you personally use? IntelliJ and Jetty? Philip J. Brown President, TechC3 Inc. 2931 S. Buchanan St, Suite 400 Arlington, VA 22206-1503 (703) 236-3503 (Work) (703) 989-5561 (Cell) [EMAIL PROTECTED] -Original Message- From: Matt

RE: [appfuse-user] detect if javascript is enable

2007-01-08 Thread Philip J Brown
I would vote for simply using the Plain HTML tag See: http://www.w3.org/TR/html4/interact/scripts.html#h-18.3.1 This is a simple way to render the HTML within the tags When scripting is disabled, or when the browser agent doesn't support the specified script. Philip J. Brown Pres

[appfuse-user] RE: BUILD FAILED - Canoo Webtest: R_1393

2006-12-12 Thread J Lawrence
Hi I was running Tomcat 5.5.17, now upgraded to Tomcat 5.5.20 and still get the same error... The error is caused by the following line in "web-tests.xml". Any clues anyone? Many thanks Jimmy Smiley, Stuart A. wrote: > > I couldn't get test-canoo to pass with tomcat 4.1.31, but when I upg

Re: [appfuse-user] Tapestry 1.9.4 Error creating pojo

2006-12-08 Thread J Lawrence
sionBinding[mainMenu requestCycle.getPage ('personForm').listner.edit] Thanks for your help. Jim Matt Raible-3 wrote: > > You might just try running "ant" instead of running it with those > parameters. It should prompt you for values. > > Matt > > On 12/7/06, J Lawre

[appfuse-user] Tapestry 1.9.4 Error creating pojo

2006-12-07 Thread J Lawrence
I am a newbie to JAVA and have downloaded the Tapestry version of appFuse 1.9.4. I run "ant new" and create my project. Run the test which all pass. Then go through the tutotial Part1 and Part 2 OK. Part 3, I run "ant -Dobject.name=Person -Dappgen.type=pojo" and I get "BUILD FAILED" ".extr

[appfuse-user] missing cargo-maven2-plugin

2006-12-06 Thread J. David Mendoza
Just downloaded the appfuse in the svn repos... tried mvn eclipse:eclipse -DdownloadSources=true and got [INFO] [INFO] Building AppFuse JSF Module [INFO]task-segment: [eclipse:eclipse] [INFO] ---