Armindo Cachada

Greenhorn
+ Follow
since Jun 14, 2009
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Armindo Cachada

Have you added the compiler arguments like services-config and context-root to your ant script? Even though you don't use Flex Builder, you are still required to provide that.
14 years ago
Hi,

I think it is ok to use BlazeDS for many things but not for login since you need to create a session object to store information about the user.
Why don't you just use HttpService for that? It should be straightforward.
Some info that you might find helpful:

http://simplyolaf.blogspot.com/2009/07/adobe-flex-with-struts-2-using.html
In my blog you can find an example on how to integrate adobe flex with struts 2.
Source is included: http://simplyolaf.blogspot.com/2009/07/adobe-flex-with-struts-2-using.html
14 years ago
Go with Flex. I developed an application using Flex 3 and Struts 2: http://www.visualmandarin.com
You also can find a tutorial I wrote recently about integrating Struts 2 and Flex 3 for file upload: http://simplyolaf.blogspot.com/2009/07/uploading-file-with-struts-2.html
More tutorials about struts 2+flex are on the way
14 years ago
The problem with the REST plugin is that if you use it, then you have to use it for all actions. That is not feasible for those who already have applications running on struts 2. It also doesn't solve all your problems.... like how to have a folder like structure for the urls?

With the convention plugin in struts 2.1 you can create seo friendly urls without the annoying .action suffix. The only problem is that you can't create hierarchical urls. But there's a way around it. If you look at http://www.visualmandarin.com you can see that we have hierarchical urls and we are using struts 2.1 and convention plugin. I explain in my blog how to do it: http://simplyolaf.blogspot.com/2009/06/creating-hierarchical-actions-in-struts.html
14 years ago