We're having the same problem - did you ever figure this out?
Type: Posts; User: Ryan Gardner; Keyword(s):
We're having the same problem - did you ever figure this out?
I am working on a really simple app - but because of a bug with gwt and enums ( https://jira.springsource.org/browse/ROO-2090 ) I'm trying to instead store my granted authorities in a set of strings....
To use Spring ACL I think I'll have to write my own GAE AclService - since Spring ACL uses JDBC extensively.
I'll look into doing that.
I was wondering if anyone had come up with a simpler way...
So to get my feet wet with Roo I decided to try to make a GAE / GWT project that is very simple - an online tracker of battery charge history for rechargable batteries (for use with people who who...
This appears to be broken for me as well.
[ERROR] Failed to execute goal org.apache.maven.plugins:maven-assembly-plugin:2.2-beta-5:assembly (default-cli) on project...
the inclusion of it twice in the config is a bug in flex-mojos... although I did submit the patch to flex-mojos so it's technically my bug.
In any case, having it include the file twice has no...
I'm reading in a CSV file that is a big denormalized file.
It has fields like:
First name, phone number 1, phone number 2, ..., mailing address line 1, mailing address line 2, ... business...
What's the scope of the roo-flex addon?
Is it intended to only create the java-side config and tie into blazeDS or will it also move into generating actionscript code? (such as generating...
I haven't written it up yet... I should. If I get a chance to soon I'll post the details here.
If you are doing straight voicexml it word great once you tweak a few things. If you are doing...
While you are tinkering with maven issues - I wrote a maven mojo to handle the generation of the compiler config that works like a charm http://forum.springsource.org/showthread.php?t=84621
If...
Currently, you'll have to download the zip file and then open the directory it is contained in and run "mvn install" on the mojo to get it into your local repository (since nobody is hosting the mojo...
Oh, I see I can attach .zip files. Here's a .zip of it. The mojo is written to fall into the spring-actionscript groupID and such to make it easy to include if you want to.
I wrote a simple maven mojo that will take a list of spring-actionscript context files and generate a flex-config file to a specified output location.
It currently just uses XSL internally so it...
Any word on the MVCS framework you mentioned in this post?
I'm pretty fed up with the existing solutions and might be doing a major refactoring of an existing application and would be interested...
This is a strange one.
There is the ability to set the credentials in your concrete extension of AbstractPreAuthenticatedProcessingFilter - but the credentials set there don't ever seem to be...
Not that this will help fix your problem - but you can safely remove the <context:annotation-config /> form the context file since the <context:component-scan> will automatically put in the...
So in situations where you are pulling from files out of the resource path - you can make those assumptions.
Why not expose a parameter on the UrlBasedViewResolver that is something like:
...
The easiest way to know would be to check the code :P
If you want to be sure that it gets purged - you could do something like this:
<evaluate...
I hacked together a modified HibernateFlowExecutionListener that will share the persistence contexts to subflows and get it back when the subflow ends.
Now, for my case, I'm using webflow more as...
Nope. I get this error:
Mapping Results = [[TargetAccessError@69665ade mapping = callerID -> requestParameters['session.callerid'], code = 'evaluationException', error = true, errorCause =...
One last thing I'm working on before I think I've got a pretty full setup to work with webflow and voicexml is how to map incoming parameters that have dots in them.
When an inbound call is...
This is just a shot in the dark, but my guess is you can just throw an annotation on it like so:
package com.foo.actions;
...
@Component("customAction") // naming it is optional
public...
Since the browser isn't accepting cookies, I need to have the jsessionID in the URL.
After dusting off my brain, and with a little bit of searching I remembered that c:url will encode a URL and...
Using the voice browser of Voxeo, I am having an issue where the redirect to the second page is never working properly.
my execution keys and flow keys are remapped.
The request /...
Let me first state that I'm not a huge fan of the DTO pattern (lets face it, a dumb object that exists soley for passing data around and not doing anything on that data is hard to justify in an a...