RE: [flexcoders] Tomcat and jdk version for Flex

2006-07-05 Thread Carson Hager





Tomcat 5.5 and Flex 1.5 are a great combination. We use 
Tomcat on nearly all of our Flex 1.5 apps. Just copy the flex.war to 
webapps and Tomcat will automatically deploy the Flex web 
application.


Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of a aSent: 
Wednesday, July 05, 2006 12:50 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Tomcat and jdk 
version for Flex


Hi all! I have just a simple question for starting develop Flex application 
with java.Someone are using Flex with java 1.5 and tomcat 5.5? Can 
this be a good configuration for application developing or maybe it's better 
using JRun with jdk1.4?I hope that you understand my bad english 
:PThanks for the answerbyeRex
Chiacchiera con i tuoi amici in tempo reale! 
http://it.yahoo.com/mail_it/foot/*http://it.messenger.yahoo.com 
__._,_.___





--
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



  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] Tomcat and jdk version for Flex

2006-07-05 Thread hank williams



Well, its almost that easy.For flex 2 at least, you need to also install the JOTM for tomcat to work.Below is a description of how to do it that is better than the one in the manual. 
Hank1. un gzip the file http://debian-sf.objectweb.org/projects/
jotm
2. go to the lib directory in the resulting uncompressed folder3. place all the files in this folder in the $CATALINA_HOME/shared/lib directory except: a. log4j.jar b. commons-cli.jar c. jotm_iiop_stubs.jar
 NOTE: $CATALINA_HOME is just your tomcat folder.4. Create a new file called context.xml in :$CATALINA_HOME/webapps/your app name, in this case samples/META-INF5. Place the following in the file:
 Context path=/samples docBase=samples debug=0 reloadable=true crossContext=true !-- Description of the resource UserTransaction --
Resource name=UserTransaction auth=Container type=javax.transaction.UserTransaction /ResourceParams name=UserTransactionparameter
namefactory/namevalueorg.objectweb.jotm.UserTransactionFactory/value/parameterparameter name 
jotm.timeout/name
 value60/value /parameter/ResourceParams/ContextNOTE: In the first line above, the word samples listed twice, should
be whatever thename of your webapp is. Using samples allows you to
run the samples application that comes with FDS.or if you have Tomcat 5.5 or greater you may just place the following in the file:Context reloadable=true
 Transaction factory=
org.objectweb.jotm.UserTransactionFactory jotm.timeout=60 //Context
On 7/5/06, Carson Hager [EMAIL PROTECTED] wrote:







Tomcat 5.5 and Flex 1.5 are a great combination. We use 
Tomcat on nearly all of our Flex 1.5 apps. Just copy the flex.war to 
webapps and Tomcat will automatically deploy the Flex web 
application.


Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of a aSent: 
Wednesday, July 05, 2006 12:50 AMTo: 
flexcoders@yahoogroups.comSubject: [flexcoders] Tomcat and jdk 
version for Flex


Hi all! I have just a simple question for starting develop Flex application 
with java.Someone are using Flex with java 1.5 and tomcat 5.5? Can 
this be a good configuration for application developing or maybe it's better 
using JRun with jdk1.4?I hope that you understand my bad english 
:PThanks for the answerbyeRex
Chiacchiera con i tuoi amici in tempo reale! 
http://it.yahoo.com/mail_it/foot/*http://it.messenger.yahoo.com 






__._,_.___





--
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] Tomcat and jdk version for Flex

2006-07-05 Thread Carson Hager





Right but he's not asking about Flex 2. That step is not a 
part of a Flex 1.5 installation.


Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:[EMAIL PROTECTED] On Behalf Of hank 
williamsSent: Wednesday, July 05, 2006 10:12 AMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Tomcat and jdk 
version for Flex


Well, its almost that easy.For flex 2 at least, you need to also 
install the JOTM for tomcat to work.Below is a description of how to do 
it that is better than the one in the manual. 
Hank1. un "gzip" the file http://debian-sf.objectweb.org/projects/ jotm 2. go to the lib directory in the resulting 
uncompressed folder3. place all the files in this folder in the 
$CATALINA_HOME/shared/lib directory except: a. 
log4j.jar b. commons-cli.jar c. 
jotm_iiop_stubs.jar  NOTE: $CATALINA_HOME is just your tomcat 
folder.
4. Create a new file called context.xml in 
:$CATALINA_HOME/webapps/your app name, in this case 
"samples"/META-INF5. Place the following in the file: 
Context path="/samples" docBase="samples" debug="0" 
reloadable="true" crossContext="true"!-- Description 
of the resource "UserTransaction -- Resource 
name="UserTransaction" auth="Container" type="javax.transaction.UserTransaction" 
/ResourceParams 
name="UserTransaction"parameter 
namefactory/namevalueorg.objectweb.jotm.UserTransactionFactory/value/parameterparameter 
name jotm.timeout/name 
value60/value 
/parameter/ResourceParams/ContextNOTE: 
In the first line above, the word "samples" listed twice, should be whatever 
thename of your webapp is. Using "samples" allows you to run the 
samples application that comes with FDS.
or if you have Tomcat 5.5 or greater you may just place the following in 
the file:Context reloadable="true" 
 Transaction factory=" org.objectweb.jotm.UserTransactionFactory" jotm.timeout="60" 
//Context
On 7/5/06, Carson 
Hager [EMAIL PROTECTED] 
wrote:

  
  
  Tomcat 5.5 
  and Flex 1.5 are a great combination. We use Tomcat on nearly all of our Flex 
  1.5 apps. Just copy the flex.war to webapps and Tomcat will 
  automatically deploy the Flex web application.
  
  
  Carson
  
  Carson 
  HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: [EMAIL PROTECTED]Office: 
  866-CYNERGYMobile: 1.703.489.6466
  
  
  
  From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of a 
  aSent: Wednesday, July 05, 2006 12:50 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] 
  Tomcat and jdk version for Flex
  
  
  
  Hi all! I have just a simple question for starting develop Flex application 
  with java.Someone are using Flex with java 1.5 and tomcat 5.5? Can 
  this be a good configuration for application developing or maybe it's better 
  using JRun with jdk1.4?I hope that you understand my bad english 
  :PThanks for the answerbyeRex
  Chiacchiera con i tuoi amici in tempo reale! http://it.yahoo.com/mail_it/foot/*http://it.messenger.yahoo.com 
  
  
  

__._,_.___





--
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] Tomcat and jdk version for Flex

2006-07-05 Thread hank williams



I think you misread him. He did not mention flex 1.5 he mentioned java 1.5.RegardsHankOn 7/5/06, Carson Hager 
[EMAIL PROTECTED] wrote:






Right but he's not asking about Flex 2. That step is not a 
part of a Flex 1.5 installation.


Carson

Carson 
HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
866-CYNERGYMobile: 1.703.489.6466



From: flexcoders@yahoogroups.com 
[mailto:flexcoders@yahoogroups.com] On Behalf Of hank 
williamsSent: Wednesday, July 05, 2006 10:12 AMTo: 
flexcoders@yahoogroups.comSubject: Re: [flexcoders] Tomcat and jdk 
version for Flex


Well, its almost that easy.For flex 2 at least, you need to also 
install the JOTM for tomcat to work.Below is a description of how to do 
it that is better than the one in the manual. 
Hank1. un gzip the file http://debian-sf.objectweb.org/projects/
 jotm 2. go to the lib directory in the resulting 
uncompressed folder3. place all the files in this folder in the 
$CATALINA_HOME/shared/lib directory except: a. 
log4j.jar b. commons-cli.jar c. 
jotm_iiop_stubs.jar  NOTE: $CATALINA_HOME is just your tomcat 
folder.
4. Create a new file called context.xml in 
:$CATALINA_HOME/webapps/your app name, in this case 
samples/META-INF5. Place the following in the file: 
Context path=/samples docBase=samples debug=0 
reloadable=true crossContext=true!-- Description 
of the resource UserTransaction -- Resource 
name=UserTransaction auth=Container type=javax.transaction.UserTransaction 
/ResourceParams 
name=UserTransactionparameter 
namefactory/namevalueorg.objectweb.jotm.UserTransactionFactory/value/parameterparameter 
name jotm.timeout/name 
value60/value 
/parameter/ResourceParams/ContextNOTE: 
In the first line above, the word samples listed twice, should be whatever 
thename of your webapp is. Using samples allows you to run the 
samples application that comes with FDS.
or if you have Tomcat 5.5 or greater you may just place the following in 
the file:Context reloadable=true 
 Transaction factory= org.objectweb.jotm.UserTransactionFactory jotm.timeout=60 
//Context
On 7/5/06, Carson 
Hager [EMAIL PROTECTED] 
wrote:

  
  
  Tomcat 5.5 
  and Flex 1.5 are a great combination. We use Tomcat on nearly all of our Flex 
  1.5 apps. Just copy the flex.war to webapps and Tomcat will 
  automatically deploy the Flex web application.
  
  
  Carson
  
  Carson 
  HagerCynergy Systems, Inc.http://www.cynergysystems.comEmail: 
[EMAIL PROTECTED]Office: 
  866-CYNERGYMobile: 1.703.489.6466
  
  
  
  From: flexcoders@yahoogroups.com [mailto:
flexcoders@yahoogroups.com] On Behalf Of a 
  aSent: Wednesday, July 05, 2006 12:50 AMTo: flexcoders@yahoogroups.com
Subject: [flexcoders] 
  Tomcat and jdk version for Flex
  
  
  
  Hi all! I have just a simple question for starting develop Flex application 
  with java.Someone are using Flex with java 1.5 and tomcat 5.5? Can 
  this be a good configuration for application developing or maybe it's better 
  using JRun with jdk1.4?I hope that you understand my bad english 
  :PThanks for the answerbyeRex
  Chiacchiera con i tuoi amici in tempo reale! http://it.yahoo.com/mail_it/foot/*http://it.messenger.yahoo.com
 
  
  
  






__._,_.___





--
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] Tomcat and jdk version for Flex

2006-07-05 Thread Kelly @ Dekayd Media Inc.












Flex 1.5 runs great on Tomcat.



We used it for a project for Mazda and
Honda and as far as I know it is in production now.







--Kelly

















From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of a a
Sent: Wednesday, July 05, 2006
12:50 AM
To: flexcoders@yahoogroups.com
Subject: [flexcoders] Tomcat and
jdk version for Flex











Hi all! I
have just a simple question for starting develop Flex application with java.

Someone are using Flex with java 1.5 and tomcat 5.5? 
Can this be a good configuration for application developing or maybe it's
better using JRun with jdk1.4?

I hope that you understand my bad english :P

Thanks for the answer

bye
Rex

Chiacchiera
con i tuoi amici in tempo reale! 
http://it.yahoo.com/mail_it/foot/*http://it.messenger.yahoo.com 






__._,_.___





--
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.



  






__,_._,___