<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	>
<channel>
	<title>Comments for webmages</title>
	<atom:link href="http://blog.webmages.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.webmages.com</link>
	<description>Mark, Bonnie, and Isaac Andrachek</description>
	<pubDate>Thu, 21 Aug 2008 10:15:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
		<item>
		<title>Comment on CFMX on Intel Macs - The Definitive Guide by scwilder</title>
		<link>http://blog.webmages.com/geek/cfmx-on-intel-macs/#comment-223</link>
		<dc:creator>scwilder</dc:creator>
		<pubDate>Mon, 17 Dec 2007 18:05:36 +0000</pubDate>
		<guid isPermaLink="false">http://webmages.wordpress.com/cfmx-on-intel-macs-the-definitive-guide/#comment-223</guid>
		<description>I forgot to post but I got everything running. I didn't follow your directions to the T I found out. I wasn't clear on a few items and assumed you were suppose to do it one way and not really want you recommended. So everything is working after I tried going through the instructions again one more time. Thanks!!!</description>
		<content:encoded><![CDATA[<p>I forgot to post but I got everything running. I didn&#8217;t follow your directions to the T I found out. I wasn&#8217;t clear on a few items and assumed you were suppose to do it one way and not really want you recommended. So everything is working after I tried going through the instructions again one more time. Thanks!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CFMX on Intel Macs - The Definitive Guide by champsolutions</title>
		<link>http://blog.webmages.com/geek/cfmx-on-intel-macs/#comment-143</link>
		<dc:creator>champsolutions</dc:creator>
		<pubDate>Thu, 13 Sep 2007 17:50:22 +0000</pubDate>
		<guid isPermaLink="false">http://webmages.wordpress.com/cfmx-on-intel-macs-the-definitive-guide/#comment-143</guid>
		<description>I used these steps when I first bought my MBP a few months ago.  Do I need to reverse everything to install CF 8?</description>
		<content:encoded><![CDATA[<p>I used these steps when I first bought my MBP a few months ago.  Do I need to reverse everything to install CF 8?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CF List Performance by Mark Andrachek</title>
		<link>http://blog.webmages.com/2007/09/03/cf-list-performance/#comment-142</link>
		<dc:creator>Mark Andrachek</dc:creator>
		<pubDate>Thu, 06 Sep 2007 19:59:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.webmages.com/2007/09/03/cf-list-performance/#comment-142</guid>
		<description>The last element is fairly easy. It just makes it two steps instead of one.

if (javacast(’string’,list).endsWith(javacast('string',delimiter))) {
    variable.vectorizedList.add(javacast('null','');
}

You could also trim the list to remove any whitespace from the ends, if that floats your boat:
if (javacast(’string’,list).trim().endsWith(javacast('string',delimiter))) {
    variable.vectorizedList.add(javacast('null','');
}

If you want to remove nulls:
variable.vectorizedList.remove(javacast('null',''));

Removing whitespace entries is harder. That would require looping over the vector, and doing a regex against each item, since the Vector could contain non-string entities.  If all you're worried about are spaces, those could be removed using the remove() method as well:

variable.vectorizedList.remove(javacast('string',' '));

Rupesh's method is not so great - it adds an extraneous element to the end of your list,  and the looping strikes me as inefficient.

Don't be scared of the java.  Pop it in a UDF, then never worry about it again.</description>
		<content:encoded><![CDATA[<p>The last element is fairly easy. It just makes it two steps instead of one.</p>
<p>if (javacast(’string’,list).endsWith(javacast(&#8217;string&#8217;,delimiter))) {<br />
    variable.vectorizedList.add(javacast(&#8217;null&#8217;,&#8221;);<br />
}</p>
<p>You could also trim the list to remove any whitespace from the ends, if that floats your boat:<br />
if (javacast(’string’,list).trim().endsWith(javacast(&#8217;string&#8217;,delimiter))) {<br />
    variable.vectorizedList.add(javacast(&#8217;null&#8217;,&#8221;);<br />
}</p>
<p>If you want to remove nulls:<br />
variable.vectorizedList.remove(javacast(&#8217;null&#8217;,&#8221;));</p>
<p>Removing whitespace entries is harder. That would require looping over the vector, and doing a regex against each item, since the Vector could contain non-string entities.  If all you&#8217;re worried about are spaces, those could be removed using the remove() method as well:</p>
<p>variable.vectorizedList.remove(javacast(&#8217;string&#8217;,&#8217; &#8216;));</p>
<p>Rupesh&#8217;s method is not so great - it adds an extraneous element to the end of your list,  and the looping strikes me as inefficient.</p>
<p>Don&#8217;t be scared of the java.  Pop it in a UDF, then never worry about it again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CF List Performance by charliegriefer</title>
		<link>http://blog.webmages.com/2007/09/03/cf-list-performance/#comment-141</link>
		<dc:creator>charliegriefer</dc:creator>
		<pubDate>Thu, 06 Sep 2007 17:33:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.webmages.com/2007/09/03/cf-list-performance/#comment-141</guid>
		<description>hi mark:

very cool.  thanks for bringing this to my attention.

my first (somewhat knee-jerk?) reaction was "too much java".  but then i thought, well... if i'm ok with using the split() method (which is itself a java method), why do i have issues with using java vectors versus coldfusion arrays?  as you point out... they're the same thing ("CF arrays, coldfusion.runtime.Array in java speak, extends the java.util.Vector class").  

i guess that's just something i need to get over :) 

incidentally, the split() method still won't consider empty list elements if they're at the end of a list (e.g. "1,2,3,4,"... which should technically be a 5 element list with the element at position 5 being empty).  rupesh kumar has a fix for that here:

http://coldfused.blogspot.com/2007/06/listtoarray-with-empty-elements-part-ii.html

... but not quite sure yet how elegantly that fits in with your use of java Vectors (?)</description>
		<content:encoded><![CDATA[<p>hi mark:</p>
<p>very cool.  thanks for bringing this to my attention.</p>
<p>my first (somewhat knee-jerk?) reaction was &#8220;too much java&#8221;.  but then i thought, well&#8230; if i&#8217;m ok with using the split() method (which is itself a java method), why do i have issues with using java vectors versus coldfusion arrays?  as you point out&#8230; they&#8217;re the same thing (&#8221;CF arrays, coldfusion.runtime.Array in java speak, extends the java.util.Vector class&#8221;).  </p>
<p>i guess that&#8217;s just something i need to get over <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>incidentally, the split() method still won&#8217;t consider empty list elements if they&#8217;re at the end of a list (e.g. &#8220;1,2,3,4,&#8221;&#8230; which should technically be a 5 element list with the element at position 5 being empty).  rupesh kumar has a fix for that here:</p>
<p><a href="http://coldfused.blogspot.com/2007/06/listtoarray-with-empty-elements-part-ii.html" rel="nofollow">http://coldfused.blogspot.com/2007/06/listtoarray-with-empty-elements-part-ii.html</a></p>
<p>&#8230; but not quite sure yet how elegantly that fits in with your use of java Vectors (?)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CF: A Language That Never Took Off? by srizvi1</title>
		<link>http://blog.webmages.com/2007/08/24/cf-a-language-that-never-took-off/#comment-140</link>
		<dc:creator>srizvi1</dc:creator>
		<pubDate>Tue, 04 Sep 2007 16:13:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.webmages.com/2007/08/24/cf-a-language-that-never-took-off/#comment-140</guid>
		<description>Haha.. this can be seen as a little depressing in terms of my career...

Currently, at the US Census Bureau, I'm actually mainly a PowerBuilder developer.  I started here in Summer 2005 with no knowledge of PowerBuilder at all actually.  But Census had a need for a PowerBuilder developer had faith in my ability to learn it so... they hired me, had me attend a sybase-led training session shortly after coming aboard, and I have been working with it at Census ever since.  

PowerBuilder may be dying, but at least it helped give me real-world experience with software development.  Whatever the next language is, I'm sure I'll be able to get it well thanks to my PB experience.

And I'm with you on ColdFusion.  It's still my web development language of choice.  And thanks to your page here (http://blog.webmages.com/geek/cfmx-on-intel-macs/ &#60;--- which I still ask questions on and try to actively contribute to), I'm able to work on it more now that I have it up and running on my apple.

My CF experience too comes from the govt.  I first learned CF on my own when I took on an internship at NOAA back in Summer 2001.  I worked as a ColdFusion developer before leaving NOAA in 2003 (my internship ended when I graduated in Dec '02).</description>
		<content:encoded><![CDATA[<p>Haha.. this can be seen as a little depressing in terms of my career&#8230;</p>
<p>Currently, at the US Census Bureau, I&#8217;m actually mainly a PowerBuilder developer.  I started here in Summer 2005 with no knowledge of PowerBuilder at all actually.  But Census had a need for a PowerBuilder developer had faith in my ability to learn it so&#8230; they hired me, had me attend a sybase-led training session shortly after coming aboard, and I have been working with it at Census ever since.  </p>
<p>PowerBuilder may be dying, but at least it helped give me real-world experience with software development.  Whatever the next language is, I&#8217;m sure I&#8217;ll be able to get it well thanks to my PB experience.</p>
<p>And I&#8217;m with you on ColdFusion.  It&#8217;s still my web development language of choice.  And thanks to your page here (http://blog.webmages.com/geek/cfmx-on-intel-macs/ &lt;&#8212; which I still ask questions on and try to actively contribute to), I&#8217;m able to work on it more now that I have it up and running on my apple.</p>
<p>My CF experience too comes from the govt.  I first learned CF on my own when I took on an internship at NOAA back in Summer 2001.  I worked as a ColdFusion developer before leaving NOAA in 2003 (my internship ended when I graduated in Dec &#8216;02).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CFMX on Intel Macs - The Definitive Guide by srizvi1</title>
		<link>http://blog.webmages.com/geek/cfmx-on-intel-macs/#comment-139</link>
		<dc:creator>srizvi1</dc:creator>
		<pubDate>Mon, 03 Sep 2007 13:55:29 +0000</pubDate>
		<guid isPermaLink="false">http://webmages.wordpress.com/cfmx-on-intel-macs-the-definitive-guide/#comment-139</guid>
		<description>After following this tutorial to get CF up and running on my intel macbook pro, it seems that to view web pages off my computer, I need to know various file locations and web addresses. So I'm making this post to make sure that I have everything down.  I also was wondering a little bit on the "why" of all these file locations, various web addresses, etc. in case anyone wanted to shed some light.

1) Now, when I go to http://localhost/index.cfm, I see my custom coldfusion "hello world" page ( Hello world.. The time is now {ts '2007-09-03 09:23:44'} ) that I've created.  

And when I go to http://localhost/CFIDE/administrator/, it brings me up to my ColdFusion administrator page.

So for updating these pages (ie, updating my ColdFusion content), I do this by updating content in:
Applications/Jrun4/servers/cfusion/cfusion-ear/cfusion-war/


2) However, when I go to just http://localhost/ in my browser, it brings me up to that apache page that says this:

"Seeing this instead of the website you expected? This page is here because the site administrator has changed the configuration of this web server. Please contact the person responsible for maintaining this server with questions. The Apache Software.... " etc.

And after following the trail of the apache_pb.gif file via spotlight, it seems that the files for this page are located in:
Macintosh HD/Library/WebServer/Documents/

So I now know the location of that, which is kind of weird to me because "localhost" gets its info from one place, while "localhost/anything" gets its info from another.  

3) I'm trying to get PHP and MySQL running on my Comp now so that I can use MySQL with ColdFusion.  [Before, I used to use MS Access (my site's not really that high traffic which is why I can get away with MS Access) since I did most of my development on a PC.  But now that I want to work off of my Mac, unless there's some sort of method via parallels or something to get MS Access working with the CF on my comp, I should probably start using MySQL.]

So I installed MySQL and then because I wanted to run phpMyAdmin, I also installed PHP 5.  (I'll post the details on how I did MySQL and PHP 5 in a separate post to help out anyone like me who had the same initial questions - trying to do my part to help make this page a 1 stop page).  

Anyways, after the PHP 5 and MySQL installation, I put all the phpMyAdmin files in my Sites folder.  But to see the sites folder, I have to go to a different IP everytime /~myusername/... to get the IP, I have to open up my system preferences, then select Sharing, and then select Personal Web Sharing.  Once I get the IP address, I put it in my browser, and because my phpMyAdmin files are at the root, my phpMyAdmin just fires up.  

So now the content in my sites folder is seen at yet another web address, and I have now a third location on my computer to put in web content I want to see off of webpages.

So after all this is said and done, what's the best place for me to put my phpMyAdmin files?</description>
		<content:encoded><![CDATA[<p>After following this tutorial to get CF up and running on my intel macbook pro, it seems that to view web pages off my computer, I need to know various file locations and web addresses. So I&#8217;m making this post to make sure that I have everything down.  I also was wondering a little bit on the &#8220;why&#8221; of all these file locations, various web addresses, etc. in case anyone wanted to shed some light.</p>
<p>1) Now, when I go to <a href="http://localhost/index.cfm" rel="nofollow">http://localhost/index.cfm</a>, I see my custom coldfusion &#8220;hello world&#8221; page ( Hello world.. The time is now {ts &#8216;2007-09-03 09:23:44&#8242;} ) that I&#8217;ve created.  </p>
<p>And when I go to <a href="http://localhost/CFIDE/administrator/" rel="nofollow">http://localhost/CFIDE/administrator/</a>, it brings me up to my ColdFusion administrator page.</p>
<p>So for updating these pages (ie, updating my ColdFusion content), I do this by updating content in:<br />
Applications/Jrun4/servers/cfusion/cfusion-ear/cfusion-war/</p>
<p>2) However, when I go to just <a href="http://localhost/" rel="nofollow">http://localhost/</a> in my browser, it brings me up to that apache page that says this:</p>
<p>&#8220;Seeing this instead of the website you expected? This page is here because the site administrator has changed the configuration of this web server. Please contact the person responsible for maintaining this server with questions. The Apache Software&#8230;. &#8221; etc.</p>
<p>And after following the trail of the apache_pb.gif file via spotlight, it seems that the files for this page are located in:<br />
Macintosh HD/Library/WebServer/Documents/</p>
<p>So I now know the location of that, which is kind of weird to me because &#8220;localhost&#8221; gets its info from one place, while &#8220;localhost/anything&#8221; gets its info from another.  </p>
<p>3) I&#8217;m trying to get PHP and MySQL running on my Comp now so that I can use MySQL with ColdFusion.  [Before, I used to use MS Access (my site's not really that high traffic which is why I can get away with MS Access) since I did most of my development on a PC.  But now that I want to work off of my Mac, unless there's some sort of method via parallels or something to get MS Access working with the CF on my comp, I should probably start using MySQL.]</p>
<p>So I installed MySQL and then because I wanted to run phpMyAdmin, I also installed PHP 5.  (I&#8217;ll post the details on how I did MySQL and PHP 5 in a separate post to help out anyone like me who had the same initial questions - trying to do my part to help make this page a 1 stop page).  </p>
<p>Anyways, after the PHP 5 and MySQL installation, I put all the phpMyAdmin files in my Sites folder.  But to see the sites folder, I have to go to a different IP everytime /~myusername/&#8230; to get the IP, I have to open up my system preferences, then select Sharing, and then select Personal Web Sharing.  Once I get the IP address, I put it in my browser, and because my phpMyAdmin files are at the root, my phpMyAdmin just fires up.  </p>
<p>So now the content in my sites folder is seen at yet another web address, and I have now a third location on my computer to put in web content I want to see off of webpages.</p>
<p>So after all this is said and done, what&#8217;s the best place for me to put my phpMyAdmin files?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CFMX on Intel Macs - The Definitive Guide by paulw9</title>
		<link>http://blog.webmages.com/geek/cfmx-on-intel-macs/#comment-138</link>
		<dc:creator>paulw9</dc:creator>
		<pubDate>Sun, 02 Sep 2007 21:13:34 +0000</pubDate>
		<guid isPermaLink="false">http://webmages.wordpress.com/cfmx-on-intel-macs-the-definitive-guide/#comment-138</guid>
		<description>I've been using CF 7 for a while now thanks to your excellent guide, but now I want to switch to CF 8. Do you have any suggestions for removing CF 7 after it has been installed using your guide? Thanks!</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been using CF 7 for a while now thanks to your excellent guide, but now I want to switch to CF 8. Do you have any suggestions for removing CF 7 after it has been installed using your guide? Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CFMX on Intel Macs - The Definitive Guide by scansterz</title>
		<link>http://blog.webmages.com/geek/cfmx-on-intel-macs/#comment-133</link>
		<dc:creator>scansterz</dc:creator>
		<pubDate>Thu, 19 Jul 2007 15:35:07 +0000</pubDate>
		<guid isPermaLink="false">http://webmages.wordpress.com/cfmx-on-intel-macs-the-definitive-guide/#comment-133</guid>
		<description>Here is a little TIP:
When you are editing the MySQL portion:
YOU QUOTE:
For the JDBC Url, use “jdbc:mysql://[host]:[port]/[database]” (replacing [host], [port], and [database] with the appropriate values. 
UNQUOTE

Remember to NOT USE the brackets! That has thrown alot of people off.
so as an example use (for use on my laptop):
jdbc:mysql://localhost:3306/database_name_here</description>
		<content:encoded><![CDATA[<p>Here is a little TIP:<br />
When you are editing the MySQL portion:<br />
YOU QUOTE:<br />
For the JDBC Url, use “jdbc:mysql://[host]:[port]/[database]” (replacing [host], [port], and [database] with the appropriate values.<br />
UNQUOTE</p>
<p>Remember to NOT USE the brackets! That has thrown alot of people off.<br />
so as an example use (for use on my laptop):<br />
jdbc:mysql://localhost:3306/database_name_here</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CFMX on Intel Macs - The Definitive Guide by srizvi1</title>
		<link>http://blog.webmages.com/geek/cfmx-on-intel-macs/#comment-132</link>
		<dc:creator>srizvi1</dc:creator>
		<pubDate>Mon, 16 Jul 2007 19:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://webmages.wordpress.com/cfmx-on-intel-macs-the-definitive-guide/#comment-132</guid>
		<description>Mark, excellent tutorial.  I now have ColdFusion running on my Intel MacBook Pro.  I have to still figure out and get used to a couple of things, but I'll work on that on my own (for example, I installed coldfusion on my work PC and that runs on http://localhost:8500, but on my mac, its different without the port - and thats confusing me a little for the tutorials I'm trying to follow).

I also have to figure out how to do MySQL.  If you have any advice on that, its definitely welcome.  I did the connector installation, but dont have actual MySQL installed and set up.

- - -

Here are some suggestions for your tutorial that I think would make it a little easier to follow:

Suggestion 1: The start up scripts thing is a little confusing.  It never asked me anything about start up scripts, just "do you want CMFX to run on start up?"

I know you clarified this a bit, but I still quite didn't get this.

Suggestion 2: Make a new folder for jrun prior to the extract.  I got confused and just extracted where I had downloaded the file.

Suggestion 3: Tell us what point to get out of terminal.  I followed this step:

srizvis-computer:/Applications/jrun_sdk srizvi1$ sudo /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home/bin/java -server -Djava.awt.headless=true -jar /Applications/JRun4/lib/jrun.jar -start cfusion
Password:

and then got this... 

Starting Macromedia JRun 4.0 (Build 92909), cfusion server
07/11 09:30:30 warning The Trial License evaluation period will expire in 30 days.
07/11 09:30:32 info JRun Naming Service listening on *:2902
07/11 09:30:32 warning No sessionSecret has been specified in jrun.xml. Installing a self generated sessionSecret.
07/11 09:30:32 info No JDBC data sources have been configured for this server (see jrun-resources.xml)
07/11 09:30:32 info JRun Web Server listening on *:8300
07/11 09:30:33 info Deploying enterprise application "JRun 4.0 Internal J2EE Components" from: file:/Applications/JRun4/lib/jrun-comp.ear
07/11 09:30:33 info Deploying EJB "JRunSQLInvoker" from: file:/Applications/JRun4/lib/jrun-comp.ear
Server cfusion ready (startup time: 4 seconds)
07/11 09:30:33 info Deploying enterprise application "cfusion-ear" from: file:/Applications/JRun4/servers/cfusion/cfusion-ear/
07/11 09:30:33 info Deploying web application "Macromedia Coldfusion MX" from: file:/Applications/JRun4/servers/cfusion/cfusion-ear/
07/11 09:30:35 INFO License Service: Flex 1.5 CF Edition enabled
07/11 09:30:35 INFO Starting Flex 1.5 CF Edition
07/11 09:30:35 user JSPServlet: init
07/11 09:30:35 user CFMxmlServlet: init
07/11 09:30:35 user CFMxmlServlet: Macromedia Flex Build: 87315.134646
07/11 09:30:35 INFO Macromedia Flex Build: 87315.134646
07/11 09:30:36 user MessageBrokerServlet: init
07/11 09:30:36 user ColdFusionStartUpServlet: init
07/11 09:30:36 user ColdFusionStartUpServlet: ColdFusion MX: Starting application services
07/11 09:30:36 user ColdFusionStartUpServlet: ColdFusion MX: VM version = 1.4.2-76
07/11 09:30:37 Information [scheduler-9] - /Applications/JRun4/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/logs/server.log initialized
07/11 09:30:37 Information [scheduler-9] - Starting logging...
07/11 09:30:37 Information [scheduler-9] - Starting crypto...
07/11 09:30:37 Information [scheduler-9] - Starting license...
07/11 09:30:37 Information [scheduler-9] - Starting License server ...
07/11 09:30:40 Information [scheduler-9] - Starting scheduler...
07/11 09:30:40 Information [scheduler-9] - Starting WatchService...
07/11 09:30:40 Information [scheduler-9] - Starting debugging...
07/11 09:30:40 Information [scheduler-9] - Starting sql...
07/11 09:30:40 Information [scheduler-9] - Starting mail...
07/11 09:30:41 Information [scheduler-9] - CORBA Configuration not enabled
07/11 09:30:41 Information [scheduler-9] - Starting cron...
07/11 09:30:41 Information [scheduler-9] - Starting registry...
07/11 09:30:41 Information [scheduler-9] - Starting client...
07/11 09:30:41 Information [scheduler-9] - The metrics service is disabled for the J2EE edition
07/11 09:30:41 Information [scheduler-9] - Starting xmlrpc...
07/11 09:30:41 Information [scheduler-9] - Starting graphing...
07/11 09:30:42 Information [scheduler-9] - Starting verity...
07/11 09:30:42 Information [scheduler-9] - Starting archive...
07/11 09:30:42 Information [scheduler-9] - Starting document...
07/11 09:30:42 Information [scheduler-9] - Starting eventgateway...
07/11 09:30:43 Information [scheduler-9] - /Applications/JRun4/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/logs/eventgateway.log initialized
07/11 09:30:43 Information [scheduler-9] - Starting Event Backend Handlers
07/11 09:30:43 Information [scheduler-9] - Initialized EventRequestDispatcher with a Thread Pool size of 10
07/11 09:30:43 Information [scheduler-9] - Initializing EventRequestHandler
07/11 09:30:43 Information [scheduler-9] - Starting Event Gateways
RMI Registry started and listening on port 1099
07/11 09:30:43 Information [scheduler-9] - Starting FlexAssembler...
07/11 09:30:43 Information [scheduler-9] - ColdFusion started
07/11 09:30:43 user ColdFusionStartUpServlet: ColdFusion MX: application services are now available
07/11 09:30:43 user CFSwfServlet: init
07/11 09:30:43 user CFCServlet: init
07/11 09:30:43 user FlashGateway: init
07/11 09:30:43 user CFFormGateway: init
07/11 09:30:43 user CFInternalServlet: init
07/11 09:31:21 user FileServlet: init
07/11 09:31:22 Information [web-0] - Initialize client.properties file


07/11 12:34:13 Information [scheduler-0] - Run Client Storage Purge
07/11 20:26:10 Information [scheduler-0] - Run Client Storage Purge
                    

07/11 20:50:57 error Requested resource '/favicon.ico' (%2ffavicon.ico) not found
07/11 20:51:02 Information [web-0] - Pool Manager Started
07/11 20:51:09 Information [web-0] - Started the SMS test server.
07/11 20:51:09 Information [web-0] - SMSGateway (Book Club 5551212) Initializing SMS gateway with configuration file /Applications/JRun4/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/gateway/config/sms-test.cfg
07/11 20:51:09 Information [Thread-25] - Starting Gateway: ID=Book Club 5551212, Class=coldfusion.eventgateway.sms.SMSGateway
07/11 20:51:09 Information [Thread-25] - SMSGateway (Book Club 5551212) Binding to SMSC
07/11 20:51:10 Information [Thread-25] - SMSGateway (Book Club 5551212) Bind was successful

(installing Lingon)
07/11 20:57:13 error Security alert: attempt to connect to JRun server from a 192.168.1.136 host.
07/11 20:57:15 error Security alert: attempt to connect to JRun server from a 192.168.1.136 host.
07/11 20:57:16 error Security alert: attempt to connect to JRun server from a 192.168.1.136 host.

- -- - 

I really didn't know when to get out.

- - -- -

Ok, this last suggestion is a ltitle confusing because its been a few days since I did this.  I just pasted the following:

In the compile apache section..
"This will chug away for a bit, and when it’s done, you’ll have a mod_jrun.so file. This should not take a long time to run at all. T"

then perhaps mention the password request?

- - - - 

I can't remember, was there a password request that comes up? I'm sorry, I can't remember clearer feel free to  disregard that.  I thought I would paste it to you anyways in case you knew what I was trying to say.</description>
		<content:encoded><![CDATA[<p>Mark, excellent tutorial.  I now have ColdFusion running on my Intel MacBook Pro.  I have to still figure out and get used to a couple of things, but I&#8217;ll work on that on my own (for example, I installed coldfusion on my work PC and that runs on <a href="http://localhost:8500" rel="nofollow">http://localhost:8500</a>, but on my mac, its different without the port - and thats confusing me a little for the tutorials I&#8217;m trying to follow).</p>
<p>I also have to figure out how to do MySQL.  If you have any advice on that, its definitely welcome.  I did the connector installation, but dont have actual MySQL installed and set up.</p>
<p>- - -</p>
<p>Here are some suggestions for your tutorial that I think would make it a little easier to follow:</p>
<p>Suggestion 1: The start up scripts thing is a little confusing.  It never asked me anything about start up scripts, just &#8220;do you want CMFX to run on start up?&#8221;</p>
<p>I know you clarified this a bit, but I still quite didn&#8217;t get this.</p>
<p>Suggestion 2: Make a new folder for jrun prior to the extract.  I got confused and just extracted where I had downloaded the file.</p>
<p>Suggestion 3: Tell us what point to get out of terminal.  I followed this step:</p>
<p>srizvis-computer:/Applications/jrun_sdk srizvi1$ sudo /System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home/bin/java -server -Djava.awt.headless=true -jar /Applications/JRun4/lib/jrun.jar -start cfusion<br />
Password:</p>
<p>and then got this&#8230; </p>
<p>Starting Macromedia JRun 4.0 (Build 92909), cfusion server<br />
07/11 09:30:30 warning The Trial License evaluation period will expire in 30 days.<br />
07/11 09:30:32 info JRun Naming Service listening on *:2902<br />
07/11 09:30:32 warning No sessionSecret has been specified in jrun.xml. Installing a self generated sessionSecret.<br />
07/11 09:30:32 info No JDBC data sources have been configured for this server (see jrun-resources.xml)<br />
07/11 09:30:32 info JRun Web Server listening on *:8300<br />
07/11 09:30:33 info Deploying enterprise application &#8220;JRun 4.0 Internal J2EE Components&#8221; from: file:/Applications/JRun4/lib/jrun-comp.ear<br />
07/11 09:30:33 info Deploying EJB &#8220;JRunSQLInvoker&#8221; from: file:/Applications/JRun4/lib/jrun-comp.ear<br />
Server cfusion ready (startup time: 4 seconds)<br />
07/11 09:30:33 info Deploying enterprise application &#8220;cfusion-ear&#8221; from: file:/Applications/JRun4/servers/cfusion/cfusion-ear/<br />
07/11 09:30:33 info Deploying web application &#8220;Macromedia Coldfusion MX&#8221; from: file:/Applications/JRun4/servers/cfusion/cfusion-ear/<br />
07/11 09:30:35 INFO License Service: Flex 1.5 CF Edition enabled<br />
07/11 09:30:35 INFO Starting Flex 1.5 CF Edition<br />
07/11 09:30:35 user JSPServlet: init<br />
07/11 09:30:35 user CFMxmlServlet: init<br />
07/11 09:30:35 user CFMxmlServlet: Macromedia Flex Build: 87315.134646<br />
07/11 09:30:35 INFO Macromedia Flex Build: 87315.134646<br />
07/11 09:30:36 user MessageBrokerServlet: init<br />
07/11 09:30:36 user ColdFusionStartUpServlet: init<br />
07/11 09:30:36 user ColdFusionStartUpServlet: ColdFusion MX: Starting application services<br />
07/11 09:30:36 user ColdFusionStartUpServlet: ColdFusion MX: VM version = 1.4.2-76<br />
07/11 09:30:37 Information [scheduler-9] - /Applications/JRun4/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/logs/server.log initialized<br />
07/11 09:30:37 Information [scheduler-9] - Starting logging&#8230;<br />
07/11 09:30:37 Information [scheduler-9] - Starting crypto&#8230;<br />
07/11 09:30:37 Information [scheduler-9] - Starting license&#8230;<br />
07/11 09:30:37 Information [scheduler-9] - Starting License server &#8230;<br />
07/11 09:30:40 Information [scheduler-9] - Starting scheduler&#8230;<br />
07/11 09:30:40 Information [scheduler-9] - Starting WatchService&#8230;<br />
07/11 09:30:40 Information [scheduler-9] - Starting debugging&#8230;<br />
07/11 09:30:40 Information [scheduler-9] - Starting sql&#8230;<br />
07/11 09:30:40 Information [scheduler-9] - Starting mail&#8230;<br />
07/11 09:30:41 Information [scheduler-9] - CORBA Configuration not enabled<br />
07/11 09:30:41 Information [scheduler-9] - Starting cron&#8230;<br />
07/11 09:30:41 Information [scheduler-9] - Starting registry&#8230;<br />
07/11 09:30:41 Information [scheduler-9] - Starting client&#8230;<br />
07/11 09:30:41 Information [scheduler-9] - The metrics service is disabled for the J2EE edition<br />
07/11 09:30:41 Information [scheduler-9] - Starting xmlrpc&#8230;<br />
07/11 09:30:41 Information [scheduler-9] - Starting graphing&#8230;<br />
07/11 09:30:42 Information [scheduler-9] - Starting verity&#8230;<br />
07/11 09:30:42 Information [scheduler-9] - Starting archive&#8230;<br />
07/11 09:30:42 Information [scheduler-9] - Starting document&#8230;<br />
07/11 09:30:42 Information [scheduler-9] - Starting eventgateway&#8230;<br />
07/11 09:30:43 Information [scheduler-9] - /Applications/JRun4/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/logs/eventgateway.log initialized<br />
07/11 09:30:43 Information [scheduler-9] - Starting Event Backend Handlers<br />
07/11 09:30:43 Information [scheduler-9] - Initialized EventRequestDispatcher with a Thread Pool size of 10<br />
07/11 09:30:43 Information [scheduler-9] - Initializing EventRequestHandler<br />
07/11 09:30:43 Information [scheduler-9] - Starting Event Gateways<br />
RMI Registry started and listening on port 1099<br />
07/11 09:30:43 Information [scheduler-9] - Starting FlexAssembler&#8230;<br />
07/11 09:30:43 Information [scheduler-9] - ColdFusion started<br />
07/11 09:30:43 user ColdFusionStartUpServlet: ColdFusion MX: application services are now available<br />
07/11 09:30:43 user CFSwfServlet: init<br />
07/11 09:30:43 user CFCServlet: init<br />
07/11 09:30:43 user FlashGateway: init<br />
07/11 09:30:43 user CFFormGateway: init<br />
07/11 09:30:43 user CFInternalServlet: init<br />
07/11 09:31:21 user FileServlet: init<br />
07/11 09:31:22 Information [web-0] - Initialize client.properties file</p>
<p>07/11 12:34:13 Information [scheduler-0] - Run Client Storage Purge<br />
07/11 20:26:10 Information [scheduler-0] - Run Client Storage Purge</p>
<p>07/11 20:50:57 error Requested resource &#8216;/favicon.ico&#8217; (%2ffavicon.ico) not found<br />
07/11 20:51:02 Information [web-0] - Pool Manager Started<br />
07/11 20:51:09 Information [web-0] - Started the SMS test server.<br />
07/11 20:51:09 Information [web-0] - SMSGateway (Book Club 5551212) Initializing SMS gateway with configuration file /Applications/JRun4/servers/cfusion/cfusion-ear/cfusion-war/WEB-INF/cfusion/gateway/config/sms-test.cfg<br />
07/11 20:51:09 Information [Thread-25] - Starting Gateway: ID=Book Club 5551212, Class=coldfusion.eventgateway.sms.SMSGateway<br />
07/11 20:51:09 Information [Thread-25] - SMSGateway (Book Club 5551212) Binding to SMSC<br />
07/11 20:51:10 Information [Thread-25] - SMSGateway (Book Club 5551212) Bind was successful</p>
<p>(installing Lingon)<br />
07/11 20:57:13 error Security alert: attempt to connect to JRun server from a 192.168.1.136 host.<br />
07/11 20:57:15 error Security alert: attempt to connect to JRun server from a 192.168.1.136 host.<br />
07/11 20:57:16 error Security alert: attempt to connect to JRun server from a 192.168.1.136 host.</p>
<p>- &#8212; - </p>
<p>I really didn&#8217;t know when to get out.</p>
<p>- - &#8212; -</p>
<p>Ok, this last suggestion is a ltitle confusing because its been a few days since I did this.  I just pasted the following:</p>
<p>In the compile apache section..<br />
&#8220;This will chug away for a bit, and when it’s done, you’ll have a mod_jrun.so file. This should not take a long time to run at all. T&#8221;</p>
<p>then perhaps mention the password request?</p>
<p>- - - - </p>
<p>I can&#8217;t remember, was there a password request that comes up? I&#8217;m sorry, I can&#8217;t remember clearer feel free to  disregard that.  I thought I would paste it to you anyways in case you knew what I was trying to say.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on CFMX on Intel Macs - The Definitive Guide by Mark Andrachek</title>
		<link>http://blog.webmages.com/geek/cfmx-on-intel-macs/#comment-130</link>
		<dc:creator>Mark Andrachek</dc:creator>
		<pubDate>Tue, 10 Jul 2007 17:11:02 +0000</pubDate>
		<guid isPermaLink="false">http://webmages.wordpress.com/cfmx-on-intel-macs-the-definitive-guide/#comment-130</guid>
		<description>dothedo &#38; letza,
Errors during the module compilation are the result of not having the Apple Developer tools fully installed, or not following the instructions when it comes to unzipping the jrun sdk.

scwilder,
Make sure you have MySQL up and running, and accessible via TCP/IP.  If you can't get it working, try the MySQL mailing lists.

srizvi1,
If you follow the instructions to the letter, you won't get that error, because you'll be installing for the standalone server, then making the Apache integration working.

During installation there's a checkbox for installing startup scripts.  These startup scripts try and call the jrun executable, which will not work.  If you install them, your machine will start slower as it attempts to, and fails, in starting CF.  That's what Lingon is for.</description>
		<content:encoded><![CDATA[<p>dothedo &amp; letza,<br />
Errors during the module compilation are the result of not having the Apple Developer tools fully installed, or not following the instructions when it comes to unzipping the jrun sdk.</p>
<p>scwilder,<br />
Make sure you have MySQL up and running, and accessible via TCP/IP.  If you can&#8217;t get it working, try the MySQL mailing lists.</p>
<p>srizvi1,<br />
If you follow the instructions to the letter, you won&#8217;t get that error, because you&#8217;ll be installing for the standalone server, then making the Apache integration working.</p>
<p>During installation there&#8217;s a checkbox for installing startup scripts.  These startup scripts try and call the jrun executable, which will not work.  If you install them, your machine will start slower as it attempts to, and fails, in starting CF.  That&#8217;s what Lingon is for.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
