[flexcoders] Re: Cairngorm 0.99

2005-05-19 Thread reubenbrown13
While that is nice and all, I have these errors now:

5 Errors found.
 
Error
H:\Inetpub\wwwroot\flex\cairngormlogin\org\nevis\cairngorm\samples\login\business\Services.mxml:28
Invalid value for 'named' - does not match any object name from the
configuration file.


Error H:\Inetpub\wwwroot\flex\cairngormlogin\Index.mxml:43
Don't know how to parse element
org.nevis.cairngorm.samples.login.business.*:Services. It is not a
known type or a property of mx.core.Application.


Error H:\Inetpub\wwwroot\flex\cairngormlogin\Index.mxml:46
Don't know how to parse element
org.nevis.cairngorm.samples.login.control.*:DemoControl. It is not a
known type or a property of mx.core.Application.


Error H:\Inetpub\wwwroot\flex\cairngormlogin\Index.mxml:50
Don't know how to parse element
org.nevis.cairngorm.samples.login.view.*:IndexViewHelper. It is not
a known type or a property of mx.core.Application.


Error H:\Inetpub\wwwroot\flex\cairngormlogin\Index.mxml:53
Don't know how to parse element
http://www.macromedia.com/2003/mxml:ViewStack;. It is not a known
type or a property of mx.core.Application.


--- In flexcoders@yahoogroups.com, dave buhler [EMAIL PROTECTED] wrote:
 I think the quotes needed to be added.
 
 From:
 
  namespace uri=http://www.iterationtwo.com/cairngorm
 manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest
 /namespace
 
 be:
 
  namespace
uri=http://www.iterationtwo.com/cairngormhttp://www.iterationtwo.com/cairngorm
 
 manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest
 /namespace
 
  
 
 On 5/17/05, Dimitrios Gianninas [EMAIL PROTECTED] 
 wrote:
  
  Hi,
   You must add the appropriate entry for the cairngorm-manifest.xml
in the 
  flex-config.xml (portion in red below):
namespace uri=http://www.macromedia.com/2003/mxml;
  manifest/WEB-INF/flex/mxml-manifest.xml/manifest
  /namespace
   namespace uri=http://www.iterationtwo.com/cairngorm
  manifest/WEB-INF/flex/cairngorm-manifest.xml/manifest
  /namespace
   This probably explains the error meesage.
   *Dimitrios Jimmy Gianninas*
  *RIA Developer*
  *Optimal Payments Inc.*
   
   --
  *From:* Sean McKibben [mailto:[EMAIL PROTECTED] 
  *Sent:* Tuesday, May 17, 2005 6:25 PM
  *To:* flexcoders@yahoogroups.com
  *Subject:* Re: [flexcoders] Cairngorm 0.99
  
  I'm having some trouble getting my Services.mxml to work with .99. 
  I keep getting errors like:
  Error */com/cadpo/shared/business/Services.mxml:4*
  Namespace http://www.iterationtwo.com/cairngorm has not been
associated 
  with component manifest.
  
  
  Error */com/cadpo/shared/business/Services.mxml:4*
  No type for element
http://www.iterationtwo.com/cairngorm:ServiceLocator;
  
  
  Error */com/cadpo/shared/business/Services.mxml:4*
  Unexpected root element 
  http://www.iterationtwo.com/cairngorm:ServiceLocator; does not extend 
  MovieClip
  
  I put the cairngorm-manifest.xml into the WEB-INF/flex directory,
but it 
  still doesn't want to eat it.
  Here is the first part of my Services.mxml:
  ?xml version=1.0 encoding=utf-8?
  cairngorm:ServiceLocator
xmlns:mx=http://www.macromedia.com/2003/mxml; 
   xmlns:cairngorm=http://www.iterationtwo.com/cairngorm;
   mx:WebService id=myWS
  ...
  
  Is the xmlns:cairngorm=http://www.iterationtwo.com/cairngorm;
attribute 
  correct? I copied it out of one of the sample apps included in .99.
  
  Any ideas?
  
  Thanks,
  Sean McKibben
  
  --
  *Yahoo! Groups Links*
  
 - To visit your group on the web, go to:
 http://groups.yahoo.com/group/flexcoders/
 - To unsubscribe from this group, send an email to:

[EMAIL PROTECTED][EMAIL PROTECTED]
 - Your use of Yahoo! Groups is subject to the Yahoo! Terms of 
 Service http://docs.yahoo.com/info/terms/. 
  
 




 
Yahoo! Groups Links

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

* 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] Re: Cairngorm 0.99

2005-05-19 Thread reubenbrown13
That fixed it.  Thanks.  It might be good to have some manual
installation instructions in the documentation for putting cairngorm
into an existing flex server.

--- In flexcoders@yahoogroups.com, Steven Webster [EMAIL PROTECTED] wrote:
 
  -Original Message-
  From: flexcoders@yahoogroups.com 
  [mailto:[EMAIL PROTECTED] On Behalf Of reubenbrown13
  Sent: 19 May 2005 16:47
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Re: Cairngorm 0.99
  
  While that is nice and all, I have these errors now:
  
  5 Errors found.
   
  Error
  H:\Inetpub\wwwroot\flex\cairngormlogin\org\nevis\cairngorm\sam
 ples\login\business\Services.mxml:28
  Invalid value for 'named' - does not match any object name 
  from the configuration file.
 
 
 OK, so in Services.mxml line 28 there will be reference to a 
 named service.  That's what the error message is trying to
 tell you.
 
 That named service has to be declared in flex-config.xml.  
 I'm suspecting that when you are building the application, 
 you're not putting out the flex-confix.xml that we shipped 
 for you, that has the named service definition in it.
 
 If you're using our ant build scripts, then we copy that
 flex-config.xml out on your behalf.  If you're not using
 ant, you're going to have to do all the work yourself, for
 putting all the files out that need to be there, or adding
 the manifest defintions and named service definitions that
 the Cairngorm store necessarily required.
 
 I'm afraid it's the trade-off of putting out a sample that
 is a full 3-tier application; the configuration of the
 database, and of the J2EE named services, needs to be done,
 as well as just deploying MXML and ActionScript.
 
 All your other errors, I suspect are just fall-out from the
 above.
 
 best,
 
 Steven
 
 --
 Steven Webster
 Technical Director
 iteration::two
  
 This e-mail and any associated attachments transmitted with it may
contain
 confidential information and must not be copied, or disclosed, or
used by
 anyone other than the intended recipient(s). If you are not the intended
 recipient(s) please destroy this e-mail, and any copies of it,
immediately.
  
 Please also note that while software systems have been used to try
to ensure
 that this e-mail has been swept for viruses, iteration::two do not
accept
 responsibility for any damage or loss caused in respect of any viruses
 transmitted by the e-mail. Please ensure your own checks are carried out
 before any attachments are opened.




 
Yahoo! Groups Links

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

* 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] Re: Tomcat

2005-04-22 Thread reubenbrown13


Are you trying to access Tomcat through the default port as a
standalone (8080) or are you trying to use IIS/Apache to hit it?  Does
the samples/index.jsp file display correctly?  Which sample app are
you trying to hit?

Also, what version of Tomcat and Java VM are you using.  I have
successfully deployed Flex as described below in Tomcat 5.0.30 and Sun
JSDK 1.4.2.08.  I used the Jakarta Isapi Redirector version 1.2.10
(the windows .exe version) to connect through IIS 5.

--- In flexcoders@yahoogroups.com, Michel Jansen [EMAIL PROTECTED]
wrote:
 Steven Webster wrote:
 
 Any users running Flex on Tomcat? I am looking for a 
 Flex-Tomcat HOWTO...
 
 
 
 1. copy samples.war {TOMCAT_HOME}\webapps\ 
 2. start tomcat
 3. Browse to http://localhost:{port}/samples/
   
 
 After doing this i get the message below...
 
 
 This XML file does not appear to have any style information 
 associated with it. The document tree is shown below.
 
 
 Since i am not familiar with java i need some more hints here...
 
 Thanx in advance...
 
 MJ





 
Yahoo! Groups Links

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

* 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] Re: Tomcat

2005-04-22 Thread reubenbrown13


Are you trying to access Tomcat through the default port as a
standalone (8080) or are you trying to use IIS/Apache to hit it?  Does
the samples/index.jsp file display correctly?  Which sample app are
you trying to hit?

Also, what version of Tomcat and Java VM are you using.  I have
successfully deployed Flex as described below in Tomcat 5.0.30 and Sun
JSDK 1.4.2.08.  I used the Jakarta Isapi Redirector version 1.2.10
(the windows .exe version) to connect through IIS 5.

--- In flexcoders@yahoogroups.com, Michel Jansen [EMAIL PROTECTED]
wrote:
 Steven Webster wrote:
 
 Any users running Flex on Tomcat? I am looking for a 
 Flex-Tomcat HOWTO...
 
 
 
 1. copy samples.war {TOMCAT_HOME}\webapps\ 
 2. start tomcat
 3. Browse to http://localhost:{port}/samples/
   
 
 After doing this i get the message below...
 
 
 This XML file does not appear to have any style information 
 associated with it. The document tree is shown below.
 
 
 Since i am not familiar with java i need some more hints here...
 
 Thanx in advance...
 
 MJ





 
Yahoo! Groups Links

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

* 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] Re: Running FLEX standalone as a service?

2005-04-22 Thread reubenbrown13


You can run the integrated JRun as a service, you just need a few
files from either the Jrun full demo or a CF Server.  The files
required are: 

$jrun_root\lib\wsconfig\*.*
$jrun_root\bin\jrunsvc*.* (there are 2 files)

From a coldfusion server it is:
$cf_root\runtime\lib\wsconfig\*.*
$cf_root\runtime\bin\jrunsvc*.* (there are 2 files)

The command lines are:
cd $flex_root\jrun4\bin\
jrunsvc -install default Name of Service (ex Flex) Name Displayed
in Service Window (ex Macromedia Flex)

To remove the service:
jrunsvc -remove Name of Service (ex Flex)

That is all there is too it.

--- In flexcoders@yahoogroups.com, Abdul Qabiz [EMAIL PROTECTED] wrote:
 Hi Scott,
 
 You can't run the integrated version of JRUN as service, though full
version
 of JRUN can be run as service, you need to buy it. You can download the
 trail version from macromedia.com
 
 This has been discussed in past. I am attaching some threads with this
 mail
 
 Hope that helps..
 
 -abdul
 
 -Original Message-
 From: Scott Barnes [mailto:[EMAIL PROTECTED] 
 Sent: Thursday, April 14, 2005 10:07 AM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Running FLEX standalone as a service?
 
 
 Anyone know the cmd line to put FLEX standalone server as a service? I
 didn't do the instance j2ee approach yet i'm finding it annoying to
 have the dos prompt window open
 
 
 -- 
 Regards,
 Scott Barnes
 http://www.mossyblog.com
 http://www.flexcoder.com (Coming Soon)
 
 
  
 Yahoo! Groups Links
 
 
 
  
 
 
 
 
 
 No
 
 
   _  
 
 From: Speer, Dustin [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, January 18, 2005 2:48 PM
 To: flexcoders@yahoogroups.com
 Subject: RE: [flexcoders] Install Flex service Windows?
 
 
 
 Is the full version of JRun included with the Flex license? 
 
  
 
 
   _  
 
 
 From: Cathy Murphy [mailto:[EMAIL PROTECTED] 
 Sent: Tuesday, January 18, 2005 1:52 PM
 To: flexcoders@yahoogroups.com
 Subject: RE: [flexcoders] Install Flex service Windows?
 
  
 
 The embedded version of JRun which ships with Flex does not allow
 installation as a Windows Service.  If you require this functionality,
 install the full version of JRun available at
 http://www.macromedia.com/products/jrun
 http://www.macromedia.com/products/jrun  (during install, choose the
 option
 to run as a windows service) and then deploy your Flex applications
to that
 new server.
 
 - Cathy 
 
  -Original Message-
  From: Douglas Brito de Medeiros [mailto:[EMAIL PROTECTED] 
  Sent: Tuesday, January 18, 2005 2:26 PM
  To: flexcoders@yahoogroups.com
  Subject: [flexcoders] Install Flex service Windows?
  
  
  How to install the Flex in the services of windows 2000 Pro?
  
  -- 
  Douglas Brito de Medeiros
  MSN: [EMAIL PROTECTED]
  
  
   
  Yahoo! Groups Links
  
  
  
   
  
  
  
 
 
 
 
   _  
 
 Yahoo! Groups Links
 
 
 * To visit your group on the web, go to:
 http://groups.yahoo.com/group/flexcoders/
 http://groups.yahoo.com/group/flexcoders/ 
   
 
 * To unsubscribe from this group, send an email to:
 [EMAIL PROTECTED]
 mailto:[EMAIL PROTECTED] 
   
 
 * Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service
 http://docs.yahoo.com/info/terms/ . 
 
 
 
 Thanks.  I will play with this as I have been wanting to try running
 ColdFusion development on JRun as well.
 
 -- Jeff
 
 
   _  
 
 From: Cathy Murphy [EMAIL PROTECTED]
 Sent: Monday, February 28, 2005 12:28 PM
 To: flexcoders@yahoogroups.com
 Subject: RE: [flexcoders] Flex Trial Edition - Setting up JRun as
Windows
 Service?
 
 
 The Flex Trial version may not be run as a Windows Service.  You may
however
 download the Trial Version of JRun (
http://www.macromedia.com/products/jrun
 http://www.macromedia.com/products/jrun ) which runs as a Windows
Service
 and then deploy flex.war and samples.war on that version of JRun.
  
 - Cathy
 
 
   _  
 
 From: GroupOne Dev. [mailto:[EMAIL PROTECTED] 
 Sent: Monday, February 28, 2005 1:20 PM
 To: flexcoders@yahoogroups.com
 Subject: [flexcoders] Flex Trial Edition - Setting up JRun as Windows
 Service?
 
 
 A little off topic, but hopefully somebody knows a bit more about
this than
 I do.  I downloaded and installed the trial version of Flex about a week
 ago.  Out of the box, it appears I have to go find the jrun.exe file and
 start it manually every time.  Has anybody se! t this u p as a Windows
 service that can start automatically?
 
 Thanks
 -- Jeff
 
 
 
 
 
 
 Yahoo! Groups Sponsor  
 
 ADVERTISEMENT
  

http://us.ard.yahoo.com/SIG=129jccltq/M=298184.6018725.7038619.3001176/D=gr

oups/S=1705007207:HM/EXP=1109702323/A=2593423/R=0/SIG=11el9gslf/*http://www.
 netflix.com/Default?mqso=60190075 click here 
  

http://us.adserver.yahoo.com/l?M=298184.6018725.7038619.3001176/D=groups/S=
 :HM/A=2593423/rand=604419695 
 
   _  
 
 Yahoo! Groups Links
 
 
 * To visit your group on the web, go to:
 http://groups.yahoo.com/group/flexcoders/
 http://groups.yahoo.com/group/flexcoders/ 
   
 

[flexcoders] Re: Flex Project Metrics ?

2005-04-22 Thread reubenbrown13


Macromedia has an article about metrics in Flex: 
http://www.macromedia.com/devnet/flex/articles/analytic_app.html

I have not tried any of the suggestions yet, but it might help.


--- In flexcoders@yahoogroups.com, r0main [EMAIL PROTECTED] wrote:
 
 Hello,
 has anyone an idea on how I can get metrics an MXML and AS2 files on a
 given flex project ?
 Yet all I can do is count my files (43 mxml views, 351 AS files w/o
 FlexUnit tests), but I'd like to have codelines per files, total
 codelines, average by package etc...
 
 Idea ?
 
 Thanks, romain





 
Yahoo! Groups Links

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

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