[flexcoders] Flex/Struts/Caringorm

2008-01-01 Thread yourName
i am facing trobule about selcting framework to be used in flex application 

shuold i use Flex/Struts or shuold i go for flex with caringorm framework or 
any third can any tell me about spray framework what is its relationship with 
flex.

plz post ur comments about these two combination Thanks in advance 


Re: [flexcoders] Flex + Struts

2007-01-06 Thread Oliver Lietz
Am Donnerstag, 4. Januar 2007 19:28 schrieb Dimitrios Gianninas:
 Note: I am no struts expert.

 1) Download FDS express and install on your PC. Extract the flex.war and
 then take everything in the web.xml and it to your own. Then take
 everything in WEB-INF/lib and WEB-INF/flex and add it your app. Create a
 simple helloworld.mxml and try to see if it work via your browser. If it
 does then everything is working.

You don't need everything when compiling SWFs local. Here are my settings for 
FDS/Remoting with already compiled SWFs (no AS and MXML files on the server):

webx.xml:
[...]
context-param
param-nameflex.class.path/param-name
param-value/WEB-INF/lib/param-value
/context-param

listener
listener-classflex.messaging.HttpFlexSession/listener-class
/listener

servlet
servlet-nameMessageBrokerServlet/servlet-name
servlet-classflex.messaging.MessageBrokerServlet/servlet-class
init-param
param-nameservices.configuration.file/param-name
param-value/WEB-INF/flex/services-config.xml/param-value
   /init-param
init-param
param-nameflex.write.path/param-name
param-value/WEB-INF/flex/param-value
/init-param
load-on-startup1/load-on-startup
/servlet

servlet-mapping
servlet-nameMessageBrokerServlet/servlet-name
url-pattern/messagebroker/*/url-pattern
/servlet-mapping
[...]

pom.xml:
[...]
!-- flex --
dependency
groupIdflex/groupId
artifactIdflex-messaging/artifactId
version2.0/version
/dependency
dependency
groupIdflex/groupId
artifactIdflex-messaging-common/artifactId
version2.0/version
/dependency
dependency
groupIdflex/groupId
artifactIdflex-messaging-opt/artifactId
version2.0/version
/dependency
dependency
groupIdflex/groupId
artifactIdflex-messaging-req/artifactId
version2.0/version
/dependency

!-- flex commons --
dependency
groupIdcommons-codec/groupId
artifactIdcommons-codec/artifactId
version1.3/version
/dependency
dependency
groupIdcommons-httpclient/groupId
artifactIdcommons-httpclient/artifactId
version3.0.1/version
/dependency
dependency
groupIdcommons-logging/groupId
artifactIdcommons-logging/artifactId
version1.0.4/version
/dependency

!-- flex concurrent --
dependency
groupIdbackport-util-concurrent/groupId
artifactIdbackport-util-concurrent/artifactId
version2.2/version
/dependency
dependency
groupIdconcurrent/groupId
artifactIdconcurrent/artifactId
version1.3.4/version
/dependency

!-- flex jta --
dependency
groupIdjotm/groupId
artifactIdjotm/artifactId
version2.0.10/version
/dependency
[...]

Put the Flex jars in your local Maven2 repository. If you don't use m2 copy 
the jars to WEB-INF/lib. JOTM is for use with Tomcat (servers without 
build-in transaction support).

O.






--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


[flexcoders] Flex + Struts

2007-01-04 Thread raul7s
All,

I'm trying to incorporate FLEX front end into an already existing 
Struts/Hibernate/JSP application. However, there are COUPLE OF THINGS 
that I can't seem to figure out.

1) Are there any FLEX jar files that I'd need to add under WEB-INF 
folder or do I need to modify web.xml?
2) I don't want to re-write any struts action classes, and action forms.
   Having said that, how do i use session/request attributes being 
passed to my JSPs for my FLEX pages.

The following article doesnt seem to explain configuring/installing 
FLEX with already existing web application.
http://www.adobe.com/devnet/flex/articles/struts.html

Any Comments/Suggestions,

Much appreciated,

--RS




Re: [flexcoders] Flex + Struts

2007-01-04 Thread Paul Andrews
- Original Message - 
From: raul7s [EMAIL PROTECTED]
To: flexcoders@yahoogroups.com
Sent: Thursday, January 04, 2007 3:52 PM
Subject: [flexcoders] Flex + Struts


 All,

 I'm trying to incorporate FLEX front end into an already existing
 Struts/Hibernate/JSP application. However, there are COUPLE OF THINGS
 that I can't seem to figure out.

 1) Are there any FLEX jar files that I'd need to add under WEB-INF
 folder or do I need to modify web.xml?

If you're deploying Flex 2 without Flex Data Services, there aren't any jar
files to worry about.

 2) I don't want to re-write any struts action classes, and action forms.
Having said that, how do i use session/request attributes being
 passed to my JSPs for my FLEX pages.

You'll need some Javascript, but really just how do you propose to interact
with the web page?

When deployed, Flex is just like incorporating flash on a page. I think you
should explain exactly what you're planning to do and how you'd like it to
work.

Paul

 The following article doesnt seem to explain configuring/installing
 FLEX with already existing web application.
 http://www.adobe.com/devnet/flex/articles/struts.html

 Any Comments/Suggestions,

 Much appreciated,

 --RS




 --
 Flexcoders Mailing List
 FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
 Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
 Yahoo! Groups Links








RE: [flexcoders] Flex + Struts

2007-01-04 Thread Dimitrios Gianninas
Note: I am no struts expert.
 
1) Download FDS express and install on your PC. Extract the flex.war and then 
take everything in the web.xml and it to your own. Then take everything in 
WEB-INF/lib and WEB-INF/flex and add it your app.
Create a simple helloworld.mxml and try to see if it work via your browser. If 
it does then everything is working.
 
2) If you are just starting, then maybe you should do some sample simple Flex 
apps just to get the feel for who things work and how they are different, if 
you haven't already. Perhaps the best question is how do u plan to use flex? 
you want to incorporate in every page? maybe talk about your app.
 
Dimitrios Gianninas
RIA Developer
Optimal Payments Inc.
 



From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of raul7s
Sent: Thursday, January 04, 2007 10:53 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Flex + Struts



All,

I'm trying to incorporate FLEX front end into an already existing 
Struts/Hibernate/JSP application. However, there are COUPLE OF THINGS 
that I can't seem to figure out.

1) Are there any FLEX jar files that I'd need to add under WEB-INF 
folder or do I need to modify web.xml?
2) I don't want to re-write any struts action classes, and action forms.
Having said that, how do i use session/request attributes being 
passed to my JSPs for my FLEX pages.

The following article doesnt seem to explain configuring/installing 
FLEX with already existing web application.
http://www.adobe.com/devnet/flex/articles/struts.html 
http://www.adobe.com/devnet/flex/articles/struts.html 

Any Comments/Suggestions,

Much appreciated,

--RS



 

-- 
WARNING
---
This electronic message and its attachments may contain confidential, 
proprietary or legally privileged information, which is solely for the use of 
the intended recipient.  No privilege or other rights are waived by any 
unintended transmission or unauthorized retransmission of this message.  If you 
are not the intended recipient of this message, or if you have received it in 
error, you should immediately stop reading this message and delete it and all 
attachments from your system.  The reading, distribution, copying or other use 
of this message or its attachments by unintended recipients is unauthorized and 
may be unlawful.  If you have received this e-mail in error, please notify the 
sender.

AVIS IMPORTANT
--
Ce message électronique et ses pièces jointes peuvent contenir des 
renseignements confidentiels, exclusifs ou légalement privilégiés destinés au 
seul usage du destinataire visé.  L'expéditeur original ne renonce à aucun 
privilège ou à aucun autre droit si le présent message a été transmis 
involontairement ou s'il est retransmis sans son autorisation.  Si vous n'êtes 
pas le destinataire visé du présent message ou si vous l'avez reçu par erreur, 
veuillez cesser immédiatement de le lire et le supprimer, ainsi que toutes ses 
pièces jointes, de votre système.  La lecture, la distribution, la copie ou 
tout autre usage du présent message ou de ses pièces jointes par des personnes 
autres que le destinataire visé ne sont pas autorisés et pourraient être 
illégaux.  Si vous avez reçu ce courrier électronique par erreur, veuillez en 
aviser l'expéditeur.



Re: [flexcoders] Flex + Struts

2007-01-04 Thread greg h

Raul,

This reply provides no direct solution to your concerns.

Just as an fyi ... the article by Christophe Coenraets that you provided the
link to was published pre Flex 2.  Meaning during the Flex 1.x era.  Quite a
bit has chnaged.  Hopefully someone will be able to assist in directly
answering your concerns in Flex 2 / Struts integration.

g


On 1/4/07, raul7s [EMAIL PROTECTED] wrote:


All,

I'm trying to incorporate FLEX front end into an already existing
Struts/Hibernate/JSP application. However, there are COUPLE OF THINGS
that I can't seem to figure out.

1) Are there any FLEX jar files that I'd need to add under WEB-INF
folder or do I need to modify web.xml?
2) I don't want to re-write any struts action classes, and action forms.
   Having said that, how do i use session/request attributes being
passed to my JSPs for my FLEX pages.

The following article doesnt seem to explain configuring/installing
FLEX with already existing web application.
http://www.adobe.com/devnet/flex/articles/struts.html

Any Comments/Suggestions,

Much appreciated,

--RS

--
Flexcoders Mailing List
http://groups.yahoo.com/group/flexcoders/



RE: [flexcoders] Flex-Struts configration

2006-02-12 Thread Matt Chotin
Title: RE: [flexcoders] Flex-Struts configration










Kinda hard to help without more
information. Turn on debugging in flex-config.xml, check your server logs, put
printlns in your java code to see whats happening, etc. Time to sit
down and debug J











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Srikanth
Sent: Saturday, February 11, 2006
5:53 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration





Hi,



My browser is always the running state(no
out put/hanging), I think the problem is in the flex configuration file.
Could you please help me?



Thanks in Advance,

Regards,

Srikanth



-Original Message-
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of Matt Chotin
Sent: Thursday, February 09, 2006
12:24 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration



This was there right??xml version=1.0 encoding=iso-8859-1?mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml height=600 mx:HTTPService id=registrationRequest url=""> result=alert(registrationRequest.result.registration.status) mx:request firstName{firstName.text}/firstName lastName{lastName.text}/lastName phone{phone.text}/phone email{email.text}/email /mx:request /mx:HTTPService mx:Form mx:FormItem label=First Name required=true mx:TextInput id=firstName width=200/ /mx:FormItem mx:FormItem label=Last Name required=true mx:TextInput id=lastName width=200/ /mx:FormItem mx:FormItem label=Phone required=true mx:TextInput id=phone width=200/ /mx:FormItem mx:FormItem label=Email required=true mx:TextInput id=email width=200/ /mx:FormItem mx:FormItem mx:Button label=Register click=registrationRequest.send()/ /mx:FormItem /mx:Form mx:Repeater id=errorList dataProvider={registrationRequest.result.registration.error} mx:Label{errorList.currentItem}/mx:Label /mx:Repeater/mx:Application

















From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Srikanth, R
Sent: Wednesday, February 08, 2006
3:43 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration





I have not outpur. I
think HTTP Service tag is not Parsed in that application, where I had seen the
view sourse in the browser the entire code has same. Please advice me how to
proceed?



Thanks in Advance,

Srikanth







-Original Message-
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of Matt Chotin
Sent: Wednesday, February 08, 2006
1:36 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration



Theres
nothing to download from that tutorial, its all embedded in the
pages. In example 1 the HTTPService tag is used to make a request against
the servlet that then executes the Struts action. In example 2 the
WebService tag is what was used to hook up the connection to the extracted
business logic, the same logic that a modified Struts action would have called.



Matt



















From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Srikanth, R
Sent: Tuesday, February 07, 2006
11:17 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration





Hi David,

I had gone through the http://www.macromedia.com/devnet/flex/articles/struts.html.


I have some doubt. Please clarify the following
doubts.

1. In that link they have given a Flex client
application. May I know what the extention of the file. Is?

2. How it process?

Thanks in Advance,

With regards,

Srikanth



-Original Message-

From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
On Behalf Of Srikanth, R

Sent: Monday, February 06,
2006 2:59 PM

To: flexcoders@yahoogroups.com

Subject: RE: [flexcoders]
Flex-Struts configration

Hi,

I have seen in your
mentioned link. I have some doubt in that link. Where I have to save the Flex
client file and how it calls?

Could you please
explain?

Thanks,

Kind regards,

Srikanth

-Original Message-

From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
On Behalf Of David Mendels

Sent: Saturday, February 04,
2006 9:18 PM

To: flexcoders@yahoogroups.com

Subject: RE: [flexcoders]
Flex-Struts configration

Hope this helps: http://www.macromedia.com/devnet/flex/articles/struts.html



-David

Adobe



From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
On Behalf Of Husain Kitabi

Sent: Saturday, February 04,
2006 9:38 AM

To: flexcoders@yahoogroups.com

Subject: Re: [flexcoders]
Flex-Struts configration

I am just wondering why
would you require struts and flex.

anyway, look into web.xml
file





Srikanth
[EMAIL PROTECTED] wrote:

Hello,

Could you please explain the
confiration and Integration of the Flex 

and Struts? Please send a
sample code/link for that.

Thanks in advance,

with Regards,

Srikanth






YAHOO! GROUPS LINKS 

 Visit your
group flexcoders on the web.

 

 To unsubscribe
from this group, send an emai

RE: [flexcoders] Flex-Struts configration

2006-02-11 Thread Srikanth
Title: RE: [flexcoders] Flex-Struts configration










Hi,



My browser is always the running state(no out put/hanging), I think the problem is in the flex configuration file. Could you please help me?



Thanks in Advance,

Regards,

Srikanth



-Original Message-
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of Matt Chotin
Sent: Thursday, February 09, 2006
12:24 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration



This was there right??xml version=1.0 encoding=iso-8859-1?mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml height=600 mx:HTTPService id=registrationRequest url=""> result=alert(registrationRequest.result.registration.status) mx:request firstName{firstName.text}/firstName lastName{lastName.text}/lastName phone{phone.text}/phone email{email.text}/email /mx:request /mx:HTTPService mx:Form mx:FormItem label=First Name required=true mx:TextInput id=firstName width=200/ /mx:FormItem mx:FormItem label=Last Name required=true mx:TextInput id=lastName width=200/ /mx:FormItem mx:FormItem label=Phone required=true mx:TextInput id=phone width=200/ /mx:FormItem mx:FormItem label=Email required=true mx:TextInput id=email width=200/ /mx:FormItem mx:FormItem mx:Button label=Register click=registrationRequest.send()/ /mx:FormItem /mx:Form mx:Repeater id=errorList dataProvider={registrationRequest.result.registration.error} mx:Label{errorList.currentItem}/mx:Label /mx:Repeater/mx:Application













From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Srikanth, R
Sent: Wednesday, February 08, 2006
3:43 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration





I have not outpur. I
think HTTP Service tag is not Parsed in that application, where I had seen the
view sourse in the browser the entire code has same. Please advice me how to
proceed?



Thanks in Advance,

Srikanth







-Original Message-
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of Matt Chotin
Sent: Wednesday, February 08, 2006
1:36 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration



Theres
nothing to download from that tutorial, its all embedded in the
pages. In example 1 the HTTPService tag is used to make a request against
the servlet that then executes the Struts action. In example 2 the
WebService tag is what was used to hook up the connection to the extracted
business logic, the same logic that a modified Struts action would have called.



Matt















From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Srikanth, R
Sent: Tuesday, February 07, 2006
11:17 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration





Hi David,

I had gone through the http://www.macromedia.com/devnet/flex/articles/struts.html.


I have some doubt. Please clarify the following
doubts.

1. In that link they have given a Flex client
application. May I know what the extention of the file. Is?

2. How it process?

Thanks in Advance,

With regards,

Srikanth



-Original Message-

From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
On Behalf Of Srikanth, R

Sent: Monday, February 06,
2006 2:59 PM

To: flexcoders@yahoogroups.com

Subject: RE: [flexcoders]
Flex-Struts configration

Hi,

I have seen in your
mentioned link. I have some doubt in that link. Where I have to save the Flex
client file and how it calls?

Could you please
explain?

Thanks,

Kind regards,

Srikanth

-Original Message-

From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
On Behalf Of David Mendels

Sent: Saturday, February 04,
2006 9:18 PM

To: flexcoders@yahoogroups.com

Subject: RE: [flexcoders]
Flex-Struts configration

Hope this helps: http://www.macromedia.com/devnet/flex/articles/struts.html



-David

Adobe



From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
On Behalf Of Husain Kitabi

Sent: Saturday, February 04,
2006 9:38 AM

To: flexcoders@yahoogroups.com

Subject: Re: [flexcoders]
Flex-Struts configration

I am just wondering why
would you require struts and flex.

anyway, look into web.xml
file





Srikanth
[EMAIL PROTECTED] wrote:

Hello,

Could you please explain the
confiration and Integration of the Flex 

and Struts? Please send a
sample code/link for that.

Thanks in advance,

with Regards,

Srikanth






YAHOO! GROUPS LINKS 

 Visit your
group flexcoders on the web.

 

 To unsubscribe
from this group, send an email to:

[EMAIL PROTECTED]

 

 Your use of Yahoo!
Groups is subject to the Yahoo! Terms of Service. 






hussain 

Yahoo! Mail - Helps protect
you from nasty viruses. 



--

Flexcoders Mailing List

FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




SPONSORED LINKS 

Web site design development
Computer software development So

RE: [flexcoders] Flex-Struts configration

2006-02-08 Thread Matt Chotin
Title: RE: [flexcoders] Flex-Struts configration










Theres nothing to download from
that tutorial, its all embedded in the pages. In example 1 the
HTTPService tag is used to make a request against the servlet that then
executes the Struts action. In example 2 the WebService tag is what was used
to hook up the connection to the extracted business logic, the same logic that
a modified Struts action would have called.



Matt











From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Srikanth, R
Sent: Tuesday, February 07, 2006
11:17 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration





Hi
David,

I
had gone through the http://www.macromedia.com/devnet/flex/articles/struts.html.


I
have some doubt. Please clarify the following doubts.

1.
In that link they have given a Flex client application. May I know what
the
extention of the file. Is?

2.
How it
process?

Thanks
in Advance,

With
regards,

Srikanth



-Original Message-

From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Srikanth, R

Sent: Monday, February 06, 2006 2:59 PM

To: flexcoders@yahoogroups.com

Subject: RE: [flexcoders] Flex-Struts configration

Hi,

I have seen in your mentioned link. I have some doubt in
that link. Where I have to save the Flex client file and how it calls?

Could you please explain?

Thanks,

Kind regards,

Srikanth

-Original Message-

From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of David Mendels

Sent: Saturday, February 04, 2006 9:18 PM

To: flexcoders@yahoogroups.com

Subject: RE: [flexcoders] Flex-Struts configration

Hope this helps: http://www.macromedia.com/devnet/flex/articles/struts.html



-David

Adobe



From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Husain Kitabi

Sent: Saturday, February 04, 2006 9:38 AM

To: flexcoders@yahoogroups.com

Subject: Re: [flexcoders] Flex-Struts configration

I am just wondering why would you require struts and flex.

anyway, look into web.xml file





Srikanth [EMAIL PROTECTED] wrote:

Hello,

Could you please explain the confiration and Integration of the
Flex 

and Struts? Please send a sample code/link for that.

Thanks in advance,

with Regards,

Srikanth








YAHOO! GROUPS LINKS 

 Visit your group flexcoders on the
web.

 

 To unsubscribe from this group, send an email to:

[EMAIL PROTECTED]

 

 Your use of Yahoo! Groups is subject to the Yahoo!
Terms of Service. 








hussain 

Yahoo! Mail - Helps protect you from nasty viruses. 



--

Flexcoders Mailing List

FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




SPONSORED LINKS 

Web site design development Computer software development
Software design and development Macromedia flex Software development best
practice 

YAHOO! GROUPS LINKS 

 Visit your group flexcoders on the
web.

 

 To unsubscribe from this group, send an email to:

[EMAIL PROTECTED]

 

 Your use of Yahoo! Groups is subject to the Yahoo!
Terms of Service. 










--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Flex-Struts configration

2006-02-08 Thread Srikanth, R
Title: RE: [flexcoders] Flex-Struts configration










I have not outpur.
I think HTTP Service tag is not Parsed in that application, where I had seen
the view sourse in the browser the entire code has
same. Please advice me how to proceed?



Thanks in Advance,

Srikanth







-Original Message-
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of Matt Chotin
Sent: Wednesday, February 08, 2006 1:36 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration



Theres nothing to
download from that tutorial, its all embedded in the pages. In
example 1 the HTTPService tag is used to make a request against the servlet
that then executes the Struts action. In example 2 the WebService tag is
what was used to hook up the connection to the extracted business logic, the
same logic that a modified Struts action would have called.



Matt











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Srikanth, R
Sent: Tuesday, February 07, 2006
11:17 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration





Hi David,

I had gone through the http://www.macromedia.com/devnet/flex/articles/struts.html.


I have some doubt. Please clarify the following
doubts.

1. In that link they have given a Flex client
application. May I know what the extention of the file. Is?

2. How it process?

Thanks in Advance,

With regards,

Srikanth



-Original Message-

From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
On Behalf Of Srikanth, R

Sent: Monday, February 06,
2006 2:59 PM

To: flexcoders@yahoogroups.com

Subject: RE: [flexcoders]
Flex-Struts configration

Hi,

I have seen in your
mentioned link. I have some doubt in that link. Where I have to save the Flex
client file and how it calls?

Could you please
explain?

Thanks,

Kind regards,

Srikanth

-Original Message-

From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
On Behalf Of David Mendels

Sent: Saturday, February 04,
2006 9:18 PM

To: flexcoders@yahoogroups.com

Subject: RE: [flexcoders]
Flex-Struts configration

Hope this helps: http://www.macromedia.com/devnet/flex/articles/struts.html



-David

Adobe



From:
flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com]
On Behalf Of Husain Kitabi

Sent: Saturday, February 04,
2006 9:38 AM

To: flexcoders@yahoogroups.com

Subject: Re: [flexcoders]
Flex-Struts configration

I am just wondering why
would you require struts and flex.

anyway, look into web.xml
file





Srikanth
[EMAIL PROTECTED] wrote:

Hello,

Could you please explain the
confiration and Integration of the Flex 

and Struts? Please send a
sample code/link for that.

Thanks in advance,

with Regards,

Srikanth







YAHOO! GROUPS LINKS 

 Visit your
group flexcoders on the web.

 

 To unsubscribe
from this group, send an email to:

[EMAIL PROTECTED]

 

 Your use of
Yahoo! Groups is subject to the Yahoo! Terms of Service. 







hussain 

Yahoo! Mail - Helps protect
you from nasty viruses. 



--

Flexcoders Mailing List

FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




SPONSORED LINKS 

Web site design development
Computer software development Software design and development Macromedia flex
Software development best practice 

YAHOO! GROUPS LINKS 

 Visit your
group flexcoders on the web.

 

 To unsubscribe
from this group, send an email to:

[EMAIL PROTECTED]

 

 Your use of
Yahoo! Groups is subject to the Yahoo! Terms of Service. 











--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











RE: [flexcoders] Flex-Struts configration

2006-02-08 Thread Matt Chotin
Title: RE: [flexcoders] Flex-Struts configration








This was there right??xml version=1.0 encoding=iso-8859-1?mx:Application xmlns:mx=http://www.macromedia.com/2003/mxml height=600 mx:HTTPService id=registrationRequest url=""> result=alert(registrationRequest.result.registration.status) mx:request firstName{firstName.text}/firstName lastName{lastName.text}/lastName phone{phone.text}/phone email{email.text}/email /mx:request /mx:HTTPService mx:Form mx:FormItem label=First Name required=true mx:TextInput id=firstName width=200/ /mx:FormItem mx:FormItem label=Last Name required=true mx:TextInput id=lastName width=200/ /mx:FormItem mx:FormItem label=Phone required=true mx:TextInput id=phone width=200/ /mx:FormItem mx:FormItem label=Email required=true mx:TextInput id=email width=200/ /mx:FormItem mx:FormItem mx:Button label=Register click=registrationRequest.send()/ /mx:FormItem /mx:Form mx:Repeater id=errorList dataProvider={registrationRequest.result.registration.error} mx:Label{errorList.currentItem}/mx:Label /mx:Repeater/mx:Application













From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Srikanth, R
Sent: Wednesday, February 08, 2006
3:43 AM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration





I have not outpur. I think HTTP Service
tag is not Parsed in that application, where I had seen the view sourse in the
browser the entire code has same. Please advice me how to proceed?



Thanks in Advance,

Srikanth







-Original Message-
From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com] On Behalf Of Matt Chotin
Sent: Wednesday, February 08, 2006 1:36 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration



Theres nothing to
download from that tutorial, its all embedded in the pages. In
example 1 the HTTPService tag is used to make a request against the servlet
that then executes the Struts action. In example 2 the WebService tag is
what was used to hook up the connection to the extracted business logic, the
same logic that a modified Struts action would have called.



Matt















From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Srikanth, R
Sent: Tuesday, February 07, 2006
11:17 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration





Hi David,

I had gone through the http://www.macromedia.com/devnet/flex/articles/struts.html.


I have some doubt. Please clarify the following
doubts.

1. In that link they have given a Flex client
application. May I know what the extention of the file. Is?

2. How it process?

Thanks in Advance,

With regards,

Srikanth



-Original Message-

From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Srikanth, R

Sent: Monday, February 06,
2006 2:59 PM

To: flexcoders@yahoogroups.com

Subject: RE: [flexcoders]
Flex-Struts configration

Hi,

I have seen in your
mentioned link. I have some doubt in that link. Where I have to save the Flex
client file and how it calls?

Could you please
explain?

Thanks,

Kind regards,

Srikanth

-Original Message-

From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of David Mendels

Sent: Saturday, February 04,
2006 9:18 PM

To: flexcoders@yahoogroups.com

Subject: RE: [flexcoders]
Flex-Struts configration

Hope this helps: http://www.macromedia.com/devnet/flex/articles/struts.html



-David

Adobe



From: flexcoders@yahoogroups.com
[mailto:flexcoders@yahoogroups.com]
On Behalf Of Husain Kitabi

Sent: Saturday, February 04,
2006 9:38 AM

To: flexcoders@yahoogroups.com

Subject: Re: [flexcoders]
Flex-Struts configration

I am just wondering why
would you require struts and flex.

anyway, look into web.xml
file





Srikanth [EMAIL PROTECTED]
wrote:

Hello,

Could you please explain the
confiration and Integration of the Flex 

and Struts? Please send a
sample code/link for that.

Thanks in advance,

with Regards,

Srikanth







YAHOO! GROUPS LINKS 

 Visit your
group flexcoders on the web.

 

 To unsubscribe
from this group, send an email to:

[EMAIL PROTECTED]

 

 Your use of
Yahoo! Groups is subject to the Yahoo! Terms of Service. 







hussain 

Yahoo! Mail - Helps protect
you from nasty viruses. 



--

Flexcoders Mailing List

FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com




SPONSORED LINKS 

Web site design development
Computer software development Software design and development Macromedia flex
Software development best practice 

YAHOO! GROUPS LINKS 

 Visit your
group flexcoders on the web.

 

 To unsubscribe
from this group, send an email to:

[EMAIL PROTECTED]

 

 Your use of
Yahoo! Groups is subject to the Yahoo! Terms of Service. 












--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Se

RE: [flexcoders] Flex-Struts configration

2006-02-07 Thread Srikanth, R
Title: RE: [flexcoders] Flex-Struts configration








Hi David,

I had gone through the http://www.macromedia.com/devnet/flex/articles/struts.html. 

I have some doubt. Please clarify the following doubts.

1. In that link they have given a Flex client application. May I know what the extention of the file. Is?

2. How it process?

Thanks in Advance,

With regards,

Srikanth



-Original Message-

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Srikanth, R

Sent: Monday, February 06, 2006 2:59 PM

To: flexcoders@yahoogroups.com

Subject: RE: [flexcoders] Flex-Struts configration

Hi,

I have seen in your mentioned link. I have some doubt in that link. Where I have to save the Flex client file and how it calls?

Could you please explain?

Thanks,

Kind regards,

Srikanth

-Original Message-

From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of David Mendels

Sent: Saturday, February 04, 2006 9:18 PM

To: flexcoders@yahoogroups.com

Subject: RE: [flexcoders] Flex-Struts configration

Hope this helps: http://www.macromedia.com/devnet/flex/articles/struts.html



-David

Adobe


From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Husain Kitabi

Sent: Saturday, February 04, 2006 9:38 AM

To: flexcoders@yahoogroups.com

Subject: Re: [flexcoders] Flex-Struts configration

I am just wondering why would you require struts and flex.

anyway, look into web.xml file




Srikanth [EMAIL PROTECTED] wrote:

Hello,

Could you please explain the confiration and Integration of the Flex 

and Struts? Please send a sample code/link for that.

Thanks in advance,

with Regards,

Srikanth







YAHOO! GROUPS LINKS 

 Visit your group flexcoders on the web.

 

 To unsubscribe from this group, send an email to:

[EMAIL PROTECTED]

 

 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 







hussain 

Yahoo! Mail - Helps protect you from nasty viruses. 


--

Flexcoders Mailing List

FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt

Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 


SPONSORED LINKS 

Web site design development Computer software development Software design and development Macromedia flex Software development best practice 

YAHOO! GROUPS LINKS 

 Visit your group flexcoders on the web.

 

 To unsubscribe from this group, send an email to:

[EMAIL PROTECTED]

 

 Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 








--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Flex-Struts configration

2006-02-06 Thread Srikanth











Hi,



I have seen in your mentioned link. I
have some doubt in that link. Where I have to save the Flex client file and how
it calls?



Could you please explain?



Thanks,



Kind regards,

Srikanth



-Original Message-
From: flexcoders@yahoogroups.com
[mailto:[EMAIL PROTECTED] On Behalf
Of David Mendels
Sent: Saturday, February 04, 2006
9:18 PM
To: flexcoders@yahoogroups.com
Subject: RE: [flexcoders]
Flex-Struts configration



Hope this helps: http://www.macromedia.com/devnet/flex/articles/struts.html



-David

Adobe











From:
flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Husain Kitabi
Sent: Saturday, February 04, 2006
9:38 AM
To: flexcoders@yahoogroups.com
Subject: Re: [flexcoders]
Flex-Struts configration



I am just wondering why would you require struts and
flex.





anyway, look into web.xml file













Srikanth [EMAIL PROTECTED]
wrote:





Hello,

Could you please explain the confiration and
Integration of the Flex 
and Struts? Please send a sample code/link for
that.

Thanks in advance,
with Regards,
Srikanth
















YAHOO! GROUPS LINKS 




Visit
your group flexcoders
on the web.
 


To
unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
 


Your use of Yahoo!
Groups is subject to the Yahoo!
Terms of Service. 




















hussain 







Yahoo!
Mail - Helps protect you from nasty viruses. 







--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  











Re: [flexcoders] Flex-Struts configration

2006-02-04 Thread Husain Kitabi



I am just wondering why would you require struts and flex.  anyway, look into web.xml fileSrikanth [EMAIL PROTECTED] wrote:  Hello,Could you please explain the confiration and Integration of the Flex and Struts? Please send a sample code/link for that.Thanks in advance,with Regards,Srikanth  YAHOO! GROUPS LINKS Visit your group "flexcoders" on the web.   To unsubscribe from this group, send an email to:[EMAIL PROTECTED]   Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.   hussain
	
		 Yahoo! Mail - Helps protect you from nasty viruses.





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.



  









RE: [flexcoders] Flex-Struts configration

2006-02-04 Thread David Mendels





Hope this helps: http://www.macromedia.com/devnet/flex/articles/struts.html

-David
Adobe

  
  
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of Husain 
  KitabiSent: Saturday, February 04, 2006 9:38 AMTo: 
  flexcoders@yahoogroups.comSubject: Re: [flexcoders] Flex-Struts 
  configration
  
  I am just wondering why would you require struts and flex.
  anyway, look into web.xml file
  
  Srikanth [EMAIL PROTECTED] wrote:
  Hello,Could 
you please explain the confiration and Integration of the Flex and 
Struts? Please send a sample code/link for that.Thanks in 
advance,with Regards,Srikanth


YAHOO! GROUPS LINKS 

  Visit your group "flexcoders" on the 
  web. 
  To unsubscribe from this group, send an email 
  to:[EMAIL PROTECTED] 
  
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service. 
  


hussain
  
  
  Yahoo! 
  Mail - Helps protect you from nasty viruses. 





--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com








  
  
SPONSORED LINKS
  
  
  

Web site design development
  
  
Computer software development
  
  
Software design and development
  
  


Macromedia flex
  
  
Software development best practice
  

   
  







  
  
  YAHOO! GROUPS LINKS



  Visit your group "flexcoders" on the web.
  To unsubscribe from this group, send an email to:[EMAIL PROTECTED]
  Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.