<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>ROK Technologies ESRI Developer Blog - Routemap IMS</title>
			<link>http://www.roktech.net/devblog/index.cfm</link>
			<description>Discussions of the ESRI Geographic Information Systems development platform</description>
			<language>en-us</language>
			<pubDate>Wed, 08 Sep 2010 17:34:03 -0400</pubDate>
			<lastBuildDate>Wed, 07 Sep 2005 18:53:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>jharris@roktech.net</managingEditor>
			<webMaster>jharris@roktech.net</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>jharris@roktech.net</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>ROK Technologies ESRI Developer Blog</title>
				<link>http://www.roktech.net/devblog/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>Coldfusion and Routemap IMS</title>
				<link>http://www.roktech.net/devblog/index.cfm/2005/9/7/Coldfusion-and-Routemap-IMS</link>
				<description>
				
				After some initial reservations about doing a project based on Routemap IMS, I am happy to report that Routemap is a great product.  Other folks here in our office have done a few routemap projects over the years, but this was the first one we have done in Coldfusion.  It is a very database intensive site, so we thought that Coldfusion would be the best fit for this particular project.

I am an ArcIMS guy.  I work with ArcIMS all the time and I love it.  So when this project got pegged to me, I will admit, I went kicking and screaming.  But, I will be the first to admit that it has been a pleasure to work with, its fast, efficient and makes very nice looking maps.  So, I just thought I would share a quick little snippet of code to show you how to make the inital connection to Routemap:
&lt;code&gt;
&lt;cfobject action=&quot;CREATE&quot; type=&quot;JAVA&quot; class=&quot;com.esri.rmims.IMSConnection&quot; name=&quot;RMIMSCONNECTION&quot;&gt;
&lt;cfset RMIMSCONNECTION.setConnectionURL(&quot;http://itchy/Scripts/webgate.dll&quot;)&gt;
&lt;cfset RMIMSCONNECTION.setGroup(&quot;TEST&quot;)&gt;
&lt;cfset RMIMSCONNECTION.setUserName(&quot;TEST&quot;)&gt;
&lt;cfset RMIMSCONNECTION.setUserPassword(&quot;TEST&quot;)&gt;
&lt;cfset MapTemplate = RMIMSCONNECTION.loadMap(&quot;#APPLICATION.MapService#&quot;)&gt;
&lt;/code&gt;

Thats really it.  After, you can do just simple stuff like zoom out:

&lt;code&gt;
MapTemplate.doZoomOut(javacast(&quot;int&quot;,#xcoord#),javacast(&quot;int&quot;,#ycoord#))
&lt;/code&gt;

So, if anyone is hesitant to take on something new like Routemap, I would encourage you to give it a try.
				
				</description>
						
				
				<category>Routemap IMS</category>				
				
				<category>Coldfusion</category>				
				
				<pubDate>Wed, 07 Sep 2005 18:53:00 -0400</pubDate>
				<guid>http://www.roktech.net/devblog/index.cfm/2005/9/7/Coldfusion-and-Routemap-IMS</guid>
				
			</item>
			
		 	
			</channel></rss>