<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>GISbiz</title>
	<atom:link href="http://gisbiz.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://gisbiz.com</link>
	<description>technology consulting services</description>
	<lastBuildDate>Tue, 01 May 2012 21:58:48 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>ArcSDE DBO and SDE schemas on SQL Server</title>
		<link>http://gisbiz.com/2012/04/arcsde-dbo-and-sde-schemas-on-sql-server/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=arcsde-dbo-and-sde-schemas-on-sql-server</link>
		<comments>http://gisbiz.com/2012/04/arcsde-dbo-and-sde-schemas-on-sql-server/#comments</comments>
		<pubDate>Mon, 30 Apr 2012 14:30:07 +0000</pubDate>
		<dc:creator>robert.claypool</dc:creator>
				<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[Technical Stuff]]></category>
		<category><![CDATA[ArcSDE]]></category>
		<category><![CDATA[Installation]]></category>
		<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://gisbiz.com/?p=1115</guid>
		<description><![CDATA[Geodatabases stored in SQL Server can be owned by a user named sde or a user who is dbo in the database. Let&#8217;s dig into this a little to figure out the differences. First, a few facts about SQL Server logins, users, principals, schemas, and roles. If you already know this stuff, you can skip [...]]]></description>
			<content:encoded><![CDATA[<p>Geodatabases stored in SQL Server can be owned by a user named <code>sde</code> or a user who is <code>dbo</code> in the database.  Let&#8217;s dig into this a little to figure out the differences.  </p>
<p>First, a few facts about SQL Server logins, users, principals, schemas, and roles.  If you already know this stuff, you can skip down to the next major section:</p>
<h3>Logins, users, principals, schemas, and roles, oh my!</h3>
<p><strong>1.</strong> A <code>login</code> an entity that can gain access to the <code>server</code>.  By server, I don&#8217;t mean the machine or the web server on the machine, I mean the &#8216;SQL Server Instance&#8217;.  </p>
<p>SQL Server security is has two security realms: the <code>server</code> and the <code>database</code>.  Logins give you access to the server and they come in two different flavors: <a href="http://msdn.microsoft.com/en-us/library/ms144284.aspx" title="SQL Server Authentication Modes">Windows Authentication mode or SQL Server and Windows Authentication mode</a>.  Since logins gain access to the server, they also define permissions across the whole server (across multiple databases).   </p>
<p>NOTE: <a href="http://msdn2.microsoft.com/en-us/library/ms186260.aspx" title="SQL Server, Server Level Permisions">Server level permissions</a> like &#8220;ALTER ANY CREDENTIAL&#8221; AND &#8220;VIEW ANY DEFINITION&#8221; are the permissions assignable to logins.</p>
<p><strong>2.</strong> A <code>user</code> is an entity that can gain access to a <code>database</code>.  Users need access to the server before accessing a database, so they are mapped to logins by an SID property that both entities hold.   As you can see, the terminology of logins and users should not be used interchangeably:  Logins are for security of the server realm and users are for security of the database realm.  Thus it&#8217;s possible to create <code>orphaned users</code> when they get out of sync with the logins on the server.  If you move a database from one server to another, the users in the database will be orphaned until you remap them to valid logins on the other server.  </p>
<p>NOTE: <a href="http://msdn2.microsoft.com/en-us/library/ms188367.aspx" title="SQL Server, Database Level Permissions">Database level permissions</a> like &#8220;CREATE TABLE&#8221; and &#8220;BACKUP DATABASE&#8221; are the permissions assignable to users.</p>
<p><strong>3.</strong> A <code>principal</code> is any entity that can be granted a permission.  Since the logins and users we discussed above can be granted permissions, they are also principals.  SQL Server has 6 types of server principals and 7 types of database principals, listed below:</p>
<table border=1 style="margin-bottom:1em;">
<tbody>
<tr>
<th><a href="http://msdn2.microsoft.com/en-us/library/ms188786.aspx" title="SQL Server, Server Principals">Server Principals</a></th>
<th><a href="http://msdn2.microsoft.com/en-us/library/ms187328.aspx" title="SQL Server, Database Principals">Database Principals</a></th>
</tr>
<tr>
<td>S = SQL login</td>
<td>S = SQL user</td>
</tr>
<tr>
<td>U = Windows login</td>
<td>U = Windows user</td>
</tr>
<tr>
<td>G = Windows group</td>
<td>G = Windows group</td>
</tr>
<tr>
<td>R = Server role</td>
<td>A = Application role</td>
</tr>
<tr>
<td>C = Login mapped to a certificate</td>
<td>C = User mapped to a certificate</td>
</tr>
<tr>
<td>K = Login mapped to an asymmetric key</td>
<td>K = User mapped to an asymmetric key</td>
</tr>
<tr>
<td></td>
<td>R = Database role</td>
</tr>
</tbody>
</table>
<p><strong>4.</strong> A <code>schema</code> is simply container of objects, such as tables, views, stored procedures, etc.</p>
<p><strong>5.</strong> A <code>role</code> is a security principal that groups other principals.  SQL Server provides nine <a href="http://msdn.microsoft.com/en-us/library/ms188659.aspx" title="SQL Server Roles">fixed server roles</a>, such as sysadmin and serveradmin.</p>
<h3>Back to ArcSDE</h3>
<p>Now that you know the very basics on SQL Server Security, let&#8217;s get back to your choice of setting up an <code>SDE Schema</code> geodatabase or a <code>DBO Schema</code> geodatabase.</p>
<p><img src="http://gisbiz.com/wp-content/uploads/2012/04/ArcGIS-Server-Post-Install-SDE-or-DBO.png" alt="SDE or DBO Selection" title="ArcGIS Server Post Install, SDE or DBO Selection" width="510" height="358" class="aligncenter size-full wp-image-1123" /></p>
<h3>Multiple versus Single</h3>
<p>In the screenshot above you&#8217;ll see that the SDE Schema can support a multiple spatial database instance, DBO does not, and multiple is better, right?  Well, not so fast&#8230;  </p>
<p>Beginning with version 9, ArcSDE started supporting both multiple and single models (prior to 9, you could only use multiple).  Now that ArcSDE supports a single database model, the multiple model (though still supported) <strong>has been deprecated</strong>.  </p>
<p>What&#8217;s the difference between them?  In the multiple database model, the ArcSDE Admin&#8217;s user schema would sit in its own database called SDE.  Meanwhile, user-defined data, like feature classes, raster tables, and nonspatial tables, would reside in other databases.  It&#8217;s called a multiple model because multiple SQL Server databases are used to make one ArcSDE geodatabase.  The single model puts everything in one database.</p>
<p>Note that you can still have multiple geodatabases on the same machine even if you opt for the (recommended) single model.  SQL Server supports multiple databases within a single SQL Server instance.  If you want to create more than one geodatabase when using the single spatial database model, just create them as separate SQL Server databases. Use the ArcSDE post installation wizard to create each one.  (Run it multiple times.)</p>
<h3>SDE versus DBO Ownership</h3>
<p><img src="http://gisbiz.com/wp-content/uploads/2012/04/sql-security.jpg" alt="" title="SQL Security" width="250" height="169" class="alignright size-full wp-image-1148" /><br />
If you create an <code>SDE Schema</code> geodatabase, it&#8217;s going to be owned by a user named &#8220;sde&#8221;.  If you create a <code>DBO Schema</code> geodatabase, it&#8217;s going to be owned by the &#8220;dbo&#8221; user that ships with SQL Server.  <strong>There&#8217;s no difference in the performance or functionality between the two types of geodatabase schemas, but they do have different security implications.</strong>  Your choice is going to depend on how you administer databases.</p>
<h3>DBO</h3>
<p>If your server is not configured to support &#8220;SQL Server and Windows Authentication mode&#8221;, a Windows account named &#8220;sde&#8221; will be required to login as &#8220;sde&#8221;.  The sde user can login as a Windows user or a SQL Server user, but only if <a href="http://msdn.microsoft.com/en-us/library/ms188670.aspx" title="How to enable SQL Server mixed authentication mode.">mixed-mode authentication is turned on</a>.  Some people don&#8217;t want mixed-mode enabled.  For them, DBO is easier to setup: no dedicated Windows account required.</p>
<p>Another reason to use DBO is that multiple Windows logins can map to the dbo user.  You can make any user an SDE admin by adding them to the sysadmin or db_owner role.  Each admin will have permission to perform ArcSDE tasks such as compress, and with Windows authentication, they can use their standard network username and password to do it.  People tend to write down the sde password if they don&#8217;t use it everyday.  Reusing Windows credentials can be more secure.</p>
<h3>SDE</h3>
<p>If the server needs to restrict SDE administrators to certain databases and not others, an SDE Schema will provide that.   Unlike the dbo user, which usually has server-wide access to all databases, the sde user can be restricted to just a handful of permissions within a specific database.  Thus, the SDE administrator for an SDE Schema geodatabase can be someone without the sysadmin or db_owner role.  If you don&#8217;t want wide-spread permissions for geodatabase admins, use SDE Schema.  The POST installation wizard will give &#8220;sde&#8221; only the minimum permissions it needs.</p>
<p>Well, that&#8217;s a LOT of words to explain one small configuration, but it&#8217;s an important choice with security implications you won&#8217;t know unless you understand both ArcSDE and SQL Server security.  Hopefully you understand them now.  Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://gisbiz.com/2012/04/arcsde-dbo-and-sde-schemas-on-sql-server/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008 R2 Installation:  Default or named instance?</title>
		<link>http://gisbiz.com/2012/04/sql-server-2008-r2-installation-default-or-named-instance/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sql-server-2008-r2-installation-default-or-named-instance</link>
		<comments>http://gisbiz.com/2012/04/sql-server-2008-r2-installation-default-or-named-instance/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 14:00:18 +0000</pubDate>
		<dc:creator>robert.claypool</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://gisbiz.com/?p=1101</guid>
		<description><![CDATA[As part of the installation for SQL Server 2008 R2, the wizard will ask you to choose between a default or named instance: Which one should you choose? If you plan to install a single instance of SQL Server on a database server, it should be a default instance. Use a named instance when you [...]]]></description>
			<content:encoded><![CDATA[<p>As part of the installation for SQL Server 2008 R2, the wizard will ask you to choose between a default or named instance:</p>
<p><img src="http://gisbiz.com/wp-content/uploads/2012/04/SQL-Server-2008-R2-Instance-Configuration.png" alt="" title="SQL-Server-2008-R2-Instance-Configuration" width="550" height="253" class="aligncenter size-full wp-image-1105" />Which one should you choose? </p>
<ol>
<li>If you plan to install a <em>single instance</em> of SQL Server on a database server, it should be a <em>default instance</em>.</li>
<li>Use a named instance when you plan to install multiple instances on the same machine.  A server can host only one default instance.</li>
<li>Any app that installs SQL Server Express should install it as a named instance.  This will minimize conflicts when multiple apps are installed on the same machine.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://gisbiz.com/2012/04/sql-server-2008-r2-installation-default-or-named-instance/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Esri Developer Summit Wrap-up</title>
		<link>http://gisbiz.com/2012/03/esri-developer-summit-wrapup/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=esri-developer-summit-wrapup</link>
		<comments>http://gisbiz.com/2012/03/esri-developer-summit-wrapup/#comments</comments>
		<pubDate>Fri, 30 Mar 2012 14:25:47 +0000</pubDate>
		<dc:creator>web.admin</dc:creator>
				<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[DevSummit]]></category>
		<category><![CDATA[Dojo]]></category>
		<category><![CDATA[ESRI]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[OpenStreetMap]]></category>

		<guid isPermaLink="false">http://gisbiz.com/?p=1024</guid>
		<description><![CDATA[We had a great time at this year&#8217;s Dev Summit. It&#8217;s a huge conference with a lot of concurrent sessions. There&#8217;s no way we could cover it all, but here are some of the highlights: A Few Esri Announcements 1. ArcGIS API for JavaScript 2.8 is out. 2. An update to Public Information Map was [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://gisbiz.com/wp-content/uploads/2012/03/PalmSprings-Convention-Center.jpg" alt="Palm Springs Convention Center" title="Palm Springs Convention Center" width="425" height="209" class="aligncenter size-full wp-image-1038" />We had a great time at this year&#8217;s Dev Summit.  It&#8217;s a huge conference with a lot of concurrent sessions.  There&#8217;s no way we could cover it all, but here are some of the highlights:</p>
<h3 style="padding-bottom:12px;">A Few Esri Announcements</h3>
<p><strong>1.</strong> <strong><a href="http://blogs.esri.com/esri/arcgis/2012/03/27/arcgis-api-for-javascript-version-2-8-released/" title="ArcGIS API for JavaScript Version 2.8 Released">ArcGIS API for JavaScript 2.8</a></strong> is out.</p>
<p><strong>2.</strong> An update to <a href="http://www.arcgis.com/home/item.html?id=6e0bec987ac24e68b75d989fc23925cf" title="ArcGIS Public Info Map Template"><strong>Public Information Map</strong></a> was released too.  This template is a little known gem for Esri JavaScript developers.  It has features (like client side clustering) not in the core API, and it was written with input from the Esri JavaScript dev team.  If you are looking for guidance on ArcGIS JavaScript best practices, <a href="http://www.arcgis.com/home/item.html?id=6e0bec987ac24e68b75d989fc23925cf" title="ArcGIS Public Info Map Template">Public Information Map</a> is a good sample to check out.</p>
<p><strong>3.</strong> <strong>ArcGIS Runtime</strong> is coming to Windows, Mac, Linux, and mobile platforms.  No longer is Esri going to split the platform into &#8220;Desktop&#8221; and &#8220;Non-Desktop&#8221; categories.  The goal now is to have a core C++ runtime that enables ArcGIS on everything from Android and iOS to Redhat servers and Windows desktops.  Seeing demos of ArcGIS on Linux and OSX was really cool.  And oh yeah, the map rendering was crazy fast!</p>
<h3 style="padding-bottom:12px;">Discussions with Esri and SitePen</h3>
<p><strong>1.</strong> Esri gave us a one-on-one demo of <strong><a href="http://www.esri.com/software/businessanalyst/index.html" title="Esri Business Analyst">Business</a> and <a href="http://www.esri.com/software/arcgis/community-analyst/index.html" title="Esri Community Analyst">Community</a> Analyst</strong> products.  In case you didn&#8217;t know, both have a ton of public and Esri owned data (about 13 gigs).  Sure, it&#8217;s possible to download, organize and continuously update public domain datasets to do <em>some</em> of the analysis already in these products, but data warehousing is only part of what Business and Community Analyst offer.  You also get:
<ul style="padding-bottom:1.6em">
<li>An extensive Flex application to <em>discover</em> and <em>explore</em> all that data.  Flex was a good choice here.  The app has charting and reporting capabilities that would have been hard to build without a rich client like Flex.</li>
<li>A complete server REST API.  If you want different applications than what you&#8217;ll find out-of-the-box, this API empowers you to build them.  Mobile apps, Desktop apps, Web apps, whatever.</li>
</ul>
<p><strong>2.</strong> We talked with the <strong>Geocoding</strong> team for at least an hour this year.  Custom geocoders are probably not the most entertaining of topics, but Esri&#8217;s team could not have been nicer or more helpful with our questions.</p>
<p><strong>3.</strong> Meeting <strong>Dojo</strong> co-founder Dylan Schiemann was really cool.  JavaScript is tough to program, having lots of pitfalls to avoid.  SitePen specializes in JavaScript best practices and pushing the envelope of what modern browsers can handle.  Dylan presented <a href="http://www.slideshare.net/sitepen/top-ways-dojo-can-improve-your-mapping-app" title="Sildeshare">Top Ways Dojo Can Improve Your Mapping App</a> and talked with us one-on-one about JavaScript best practices on Wednesday night.</p>
<p><strong>4.</strong> I think we were the first to give feedback on <a href="http://esriosmeditor.codeplex.com/" title="Esri OSM Editor"><strong>ArcGIS for Open Street Map</strong></a> version 2.  The tools work pretty well for editing OSM <a href="http://wiki.openstreetmap.org/wiki/Node" title="OSM Nodes">nodes</a> and <a href="http://wiki.openstreetmap.org/wiki/Way" title="OSM Ways">ways</a> as long as you enable a <a href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/001t/001t000000rs000000.htm">map topology</a> to keep them connected.  Using the tool <a href="http://www.openstreetmap.org/browse/changeset/11121970" title="OSM Check-in">marks your edits</a> with <code>created_by = ArcGIS Editor for OpenStreetMap (2.0)</code>.</p>
<h3 style="padding-bottom:12px;">Some of our Favorite Sessions</h3>
<p><a href="http://www.esri.com/events/devsummit/agenda/speed-geeking.html">Speed Geeking</a> was a good idea: 10 presentations, 5 minutes each.  I hope they do more of this next year.</p>
<p><a href="http://blog.davebouwman.com">Dave Bouwman</a>, DTS Agile, was entertaining as always:  <a href="http://blog.davebouwman.com/2012/03/27/devsummit-presentations/">Getting Real-Time: Node.js and Socket.io</a></p>
<p><a href="http://dylanschiemann.com/">Dylan Schiemann</a>, SitePen, had a packed house: <a href="http://www.slideshare.net/sitepen/top-ways-dojo-can-improve-your-mapping-app" title="Sildeshare">Top Ways Dojo Can Improve Your Mapping App</a> </p>
<p>&#8211; Robert Claypool, Sr. Software Developer, GISbiz</p>
]]></content:encoded>
			<wfw:commentRss>http://gisbiz.com/2012/03/esri-developer-summit-wrapup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup Visual Studio 2010 Remote Debugging &#8211; Step by Step</title>
		<link>http://gisbiz.com/2012/02/visual-studio-2010-remote-debugging/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=visual-studio-2010-remote-debugging</link>
		<comments>http://gisbiz.com/2012/02/visual-studio-2010-remote-debugging/#comments</comments>
		<pubDate>Tue, 28 Feb 2012 22:30:25 +0000</pubDate>
		<dc:creator>vasudevan.p</dc:creator>
				<category><![CDATA[Design and Development]]></category>
		<category><![CDATA[Technical Stuff]]></category>
		<category><![CDATA[Remote Debugging]]></category>
		<category><![CDATA[Visual Studio]]></category>

		<guid isPermaLink="false">http://gisbiz.com/?p=1003</guid>
		<description><![CDATA[Every Visual Studio developer&#160;has probably come across the need of Remote Debugging at some point during development. I too faced that situation, and found only a few (not entirely helpful) references via Google. Since I&#8217;ve spent the last few days on this issue, and Remote Debugging now works in my environment, I thought it best [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://gisbiz.com/wp-content/uploads/2012/04/HiRes-e1333310013437.jpg" alt="" title="Remote Connection" width="228" height="200" class="alignright size-full wp-image-1090" />Every Visual Studio developer&nbsp;has probably come across the need of Remote Debugging at some point during development. I too faced that situation, and found only a few (not entirely helpful) references via Google.</p>
<p>Since I&#8217;ve spent the last few days on this issue, and Remote Debugging now works in my environment, I thought it best to document the process. Here&#8217;s a step-by-step approach to help someone in need.</p>
<p><strong><span style="font-size: medium">Steps to enable remote debugging on a local machine:</span></strong></p>
<ol>
<li>Create a local user account with administrator privileges. (e.g. rmdbgr/pwd123)</li>
<li>Share the web application directory (e.g. Foo.Bar) with full control as accessible from the remote machine.</li>
<li>Enable the custom web server option in web application properties (which is below “Web” tab).</li>
</ol>
<p><strong><span style="font-size: medium">Steps to enable remote debugging on a remote machine:</span></strong></p>
<ol>
<li>Setup the required development environment. (IIS, .NET Framework, ASP.NET, etc.)</li>
<li>Install the Microsoft Visual Studio 2010 Remote Debugger.</li>
<li>Create an administrator user account on the remote machine with the same username and password. (e.g. rmdbgr/pwd123)</li>
<li>Go to <code>services.msc</code> and start the &#8220;Visual Studio 10 Remote Debugger&#8221; service with rmdbgr user.</li>
<li>Create an IIS7 virtual directory for the shared web application which is in the local machine.</li>
</ol>
<p><strong><span style="font-size: medium">Start remote debugging:</span></strong></p>
<ol>
<li>Run the VS2010 IDE on the local machine as rmdbgr user.</li>
<li>Open the solution and run the project in debug mode.</li>
</ol>
<p><strong><span style="font-size: medium">Possible issues and troubleshooting:</span></strong></p>
<ul>
<li>If the &#8220;The network BIOS command limit has been reached.&#8221; error arises, check out this article: <a title="blocked::http://support.microsoft.com/kb/810886" href="http://support.microsoft.com/kb/810886">http://support.microsoft.com/kb/810886</a></li>
<li>If any security error arises, try disabling the firewall on both machines and try again.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://gisbiz.com/2012/02/visual-studio-2010-remote-debugging/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ArcGIS Server Subdomain Configurations</title>
		<link>http://gisbiz.com/2012/02/arcgis-server-subdomain-configs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=arcgis-server-subdomain-configs</link>
		<comments>http://gisbiz.com/2012/02/arcgis-server-subdomain-configs/#comments</comments>
		<pubDate>Sun, 12 Feb 2012 15:00:28 +0000</pubDate>
		<dc:creator>web.admin</dc:creator>
				<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[Technical Stuff]]></category>
		<category><![CDATA[Configuration]]></category>
		<category><![CDATA[ESRI]]></category>

		<guid isPermaLink="false">http://gisbiz.com/?p=975</guid>
		<description><![CDATA[Let&#8217;s suppose you install ArcGIS Server on machine &#8220;foobar1&#8243; and it serves out tiles from http://foobar1/arcgisoutput/. Secondly, you have a subdomain that points to this machine and you want ArcGIS server to respond accordingly: gisstuff.example.net --> ROUTES TO ------------> foorbar1 ArcGIS Server ---------> STILL RESPONDS WITH --> foorbar1 ??? Here, the ArcGIS website is getting [...]]]></description>
			<content:encoded><![CDATA[<p>Let&#8217;s suppose you install ArcGIS Server on machine &#8220;foobar1&#8243; and it serves out tiles from http://foobar1/arcgisoutput/.  </p>
<p>Secondly, you have a subdomain that points to this machine and you want ArcGIS server to respond accordingly:</p>
<p><code>gisstuff.example.net  --> ROUTES TO ------------> foorbar1 </code><br />
<code>ArcGIS Server ---------> STILL RESPONDS WITH --> foorbar1 ???</code></p>
<p>Here, the ArcGIS website is getting requests through the subdomain. (Your router takes care of that)  However, the ArcGIS HTTP responses do not point to the right address.  They are still pointing to the machine itself without &#8220;knowing&#8221; of the router&#8217;s configuration.  </p>
<p><code>http://foobar1/arcgisoutput/ --> IS RETURNED, INSTEAD OF --> http://gisstuff.example.com/arcgisoutput/</code></p>
<p>For this problem, (or any other reason you need to control the response URLs) look in ArcGIS Server&#8217;s configuration file at <code>\server\system\Server.dat</code> (Windows OS)</p>
<blockquote><p>The Server.dat file maintains the server&#8217;s properties. The server object manager (SOM) reads the contents of this file at its startup and is configured accordingly &#8230; Be sure to restart the SOM service after editing this file.</p></blockquote>
<p>For more info, see the web help <a href="http://webhelp.esri.com/arcgisserver/9.3/DotNet/index.htm#cfg_file_svr.htm" title="ArcGIS Server 9.3 Web Help">HERE</a> and <a href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//000400000008000000" title="ArcGIS Server 10 Web Help">HERE</a>.  There&#8217;s a lot you can configure with ArcGIS Server, you just have to know where to go.  Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://gisbiz.com/2012/02/arcgis-server-subdomain-configs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The &#8220;ArcGIS Viewer for Silverlight 1.0&#8243; is ready for public download.</title>
		<link>http://gisbiz.com/2012/01/arcgis-viewer-for-silverlight-1-0-final/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=arcgis-viewer-for-silverlight-1-0-final</link>
		<comments>http://gisbiz.com/2012/01/arcgis-viewer-for-silverlight-1-0-final/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 16:07:34 +0000</pubDate>
		<dc:creator>robert.claypool</dc:creator>
				<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[ArcGIS Viewer for Silverlight]]></category>
		<category><![CDATA[ESRI]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://gisbiz.com/?p=958</guid>
		<description><![CDATA[The ArcGIS Viewer for Silverlight 1.0 was released yesterday for public download. For details on what&#8217;s been added since the last release (beta 2), check out the What&#8217;s New topics on Esri&#8217;s website.]]></description>
			<content:encoded><![CDATA[<p>The <em>ArcGIS Viewer for Silverlight 1.0</em> was released yesterday for public download.  For details on what&#8217;s been added since the last release (beta 2), check out the <a href="http://help.arcgis.com/en/webapps/silverlightviewer/help/index.html#/What_s_new_in_ArcGIS_Viewer_for_Silverlight_1_0_Final/017700000048000000/" title="What's New for ArcGIS Viewer for Silverlight">What&#8217;s New</a> topics on Esri&#8217;s website.</p>
<p><a href="http://help.arcgis.com/en/webapps/silverlightviewer/help/index.html#/What_s_new_in_ArcGIS_Viewer_for_Silverlight_1_0_Final/017700000048000000/"><img src="http://gisbiz.com/wp-content/uploads/2012/01/arcgis-silverlight-map-viewer.png" alt="" title="arcgis-silverlight-map-viewer" width="550" height="344" class="alignleft size-full wp-image-962" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://gisbiz.com/2012/01/arcgis-viewer-for-silverlight-1-0-final/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Smart Pen Demonstration</title>
		<link>http://gisbiz.com/2011/11/smart-pen-demo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=smart-pen-demo</link>
		<comments>http://gisbiz.com/2011/11/smart-pen-demo/#comments</comments>
		<pubDate>Fri, 18 Nov 2011 18:12:11 +0000</pubDate>
		<dc:creator>web.admin</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[News]]></category>
		<category><![CDATA[Technical Stuff]]></category>
		<category><![CDATA[demo]]></category>
		<category><![CDATA[LiveScribe]]></category>
		<category><![CDATA[smart pen]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://gisbiz.com/?p=935</guid>
		<description><![CDATA[Here&#8217;s a Smart Pen demonstration for collecting field data. This is a custom app we designed for a specific utility data workflow, but the application is readily configurable to use in other industries.]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a Smart Pen demonstration for collecting field data.  This is a custom app we designed for a specific utility data workflow, but the application is readily configurable to use in other industries.</p>
<p><iframe width="480" height="360" src="http://www.youtube.com/embed/NqZnHMYlqOA?showinfo=0&#038;rel=0&#038;modestbranding=1" frameborder="0" allowfullscreen></iframe></p>
]]></content:encoded>
			<wfw:commentRss>http://gisbiz.com/2011/11/smart-pen-demo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>&#8220;Flashy&#8221; Websites Moving to HTML5</title>
		<link>http://gisbiz.com/2011/11/flashy-websites-moving-to-html5/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=flashy-websites-moving-to-html5</link>
		<comments>http://gisbiz.com/2011/11/flashy-websites-moving-to-html5/#comments</comments>
		<pubDate>Wed, 16 Nov 2011 21:06:42 +0000</pubDate>
		<dc:creator>web.admin</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Adobe]]></category>
		<category><![CDATA[HTML5]]></category>

		<guid isPermaLink="false">http://gisbiz.com/?p=922</guid>
		<description><![CDATA[It&#8217;s official, the time has come: Adobe announced this week that Flash Player is dead for mobile devices and the related Flex SDK is being released to the open source community.1 This is good news for proponents of open standards and HTML5. The company announced they are going to &#8220;aggressively contribute to HTML5&#8243; as they [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border:none;" src="http://gisbiz.com/wp-content/uploads/2011/11/The-Adobe-Flash-Platform-And-HTML5.png" alt="" title="The-Adobe-Flash-Platform-And-HTML5" width="345" height="128" class="aligncenter size-full wp-image-923" />It&#8217;s official, the time has come: Adobe announced this week that Flash Player is dead for mobile devices and the related Flex SDK is being released to the open source community.<sup><a href="http://gisbiz.com/2011/11/flashy-websites-moving-to-html5/#footnote_0_922" id="identifier_0_922" class="footnote-link footnote-identifier-link" title="http://blogs.adobe.com/flex/2011/11/your-questions-about-flex.html">1</a></sup></p>
<p>This is good news for proponents of open standards and HTML5.  The company announced they are going to <em>&#8220;aggressively contribute to HTML5&#8243;</em> as they believe it is the <em>&#8220;best technology for enterprise application development&#8221;</em>.</p>
<ol class="footnotes"><li id="footnote_0_922" class="footnote">http://blogs.adobe.com/flex/2011/11/your-questions-about-flex.html</li></ol>]]></content:encoded>
			<wfw:commentRss>http://gisbiz.com/2011/11/flashy-websites-moving-to-html5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Warning: Can&#8217;t edit versioned workspace, check that you have proper permissions on the version.</title>
		<link>http://gisbiz.com/2011/07/warning-cant-edit-versioned-workspace/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=warning-cant-edit-versioned-workspace</link>
		<comments>http://gisbiz.com/2011/07/warning-cant-edit-versioned-workspace/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 21:30:34 +0000</pubDate>
		<dc:creator>robert.claypool</dc:creator>
				<category><![CDATA[ArcGIS]]></category>
		<category><![CDATA[GIS]]></category>
		<category><![CDATA[Technical Stuff]]></category>
		<category><![CDATA[ArcMap]]></category>
		<category><![CDATA[ArcSDE]]></category>
		<category><![CDATA[ESRI]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[SQL]]></category>

		<guid isPermaLink="false">http://gisbiz.com/?p=877</guid>
		<description><![CDATA[This is the message we started seeing after an ArcMap crash today. I&#8217;m sure there&#8217;s more than one trigger for it, but in our case, ArcMap did not release a table from ArcSDE load only mode. We verified this with the following SQL statement; it prints all the Oracle tables in load only mode: -- [...]]]></description>
			<content:encoded><![CDATA[<p>This is the message we started seeing after an ArcMap crash today.</p>
<div style="display:inline-block;">
<div id="attachment_878" class="wp-caption alignleft" style="width: 489px"><img src="http://gisbiz.com/wp-content/uploads/2011/07/ArcMap_Start_Editing_Error.png" alt="" title="ArcMap_Start_Editing_Error" width="479" height="282" class="size-full wp-image-878" /><p class="wp-caption-text">Warning: Can't edit versioned workspace, check that you have proper permissions on the version.</p></div>
</div>
<p>I&#8217;m sure there&#8217;s more than one trigger for it, but in our case, ArcMap did not release a table from <a href="http://help.arcgis.com/en/geodatabase/10.0/admin_cmds/support_files/datamgmt/sdelayer.htm#iomodeex">ArcSDE load only mode</a>.  We verified this with the following SQL statement; it prints all the Oracle tables in load only mode:</p>

<div class="wp_syntax"><div class="code"><pre class="sql" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">-- Lists all Oracle tables that are in load only mode</span>
<span style="color: #993333; font-weight: bold;">SELECT</span> a<span style="color: #66cc66;">.</span>owner OWNER<span style="color: #66cc66;">,</span>
  a<span style="color: #66cc66;">.</span><span style="color: #993333; font-weight: bold;">TABLE_NAME</span> <span style="color: #993333; font-weight: bold;">TABLE_NAME</span>
<span style="color: #993333; font-weight: bold;">FROM</span> sde<span style="color: #66cc66;">.</span>table_registry a<span style="color: #66cc66;">,</span>
  sde<span style="color: #66cc66;">.</span>layers b
<span style="color: #993333; font-weight: bold;">WHERE</span> BITAND<span style="color: #66cc66;">&#40;</span>b<span style="color: #66cc66;">.</span>eflags<span style="color: #66cc66;">,</span><span style="color: #cc66cc;">1074790400</span><span style="color: #66cc66;">&#41;</span>  <span style="color: #66cc66;">=</span> <span style="color: #cc66cc;">1074790400</span>
<span style="color: #993333; font-weight: bold;">AND</span> a<span style="color: #66cc66;">.</span>owner                        <span style="color: #66cc66;">=</span> b<span style="color: #66cc66;">.</span>owner
<span style="color: #993333; font-weight: bold;">AND</span> a<span style="color: #66cc66;">.</span><span style="color: #993333; font-weight: bold;">TABLE_NAME</span>                   <span style="color: #66cc66;">=</span> b<span style="color: #66cc66;">.</span><span style="color: #993333; font-weight: bold;">TABLE_NAME</span>;</pre></div></div>

<p>Once you know which tables are in load only mode, use <code>sdelayer</code> on the command line to change them.  You can also use <code>sdelayer</code> to get the current mode of a table (in lieu of the SQL above).</p>

<div class="wp_syntax"><div class="code"><pre class="dos" style="font-family:monospace;"><span style="color: #808080; font-style: italic;">REM Describe the current mode for a featureclass/table</span>
<span style="color: #808080; font-style: italic;">REM See http://help.arcgis.com/en/geodatabase/10.0/admin_cmds/support_files/datamgmt/sdelayer.htm</span>
sdelayer -o describe -l {owner.featureclass,shape} -u myUserName  -p myPassword
<span style="color: #808080; font-style: italic;">
REM Change the mode for a featureclass/table.</span>
sdelayer -o {load_only_io <span style="color: #33cc33;">|</span> normal_io} -l owner.featureclass,shape -u myUserName -p myPassword</pre></div></div>

<p>Good luck! </p>
<p>See also: <a href="http://support.esri.com/en/knowledgebase/techarticles/detail/35676">http://support.esri.com/en/knowledgebase/techarticles/detail/35676</a></p>
]]></content:encoded>
			<wfw:commentRss>http://gisbiz.com/2011/07/warning-cant-edit-versioned-workspace/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Where is Microsoft.Expression.Interactions?</title>
		<link>http://gisbiz.com/2011/07/where-is-microsoft-expression-interactions/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=where-is-microsoft-expression-interactions</link>
		<comments>http://gisbiz.com/2011/07/where-is-microsoft-expression-interactions/#comments</comments>
		<pubDate>Mon, 18 Jul 2011 14:00:45 +0000</pubDate>
		<dc:creator>robert.claypool</dc:creator>
				<category><![CDATA[Design and Development]]></category>
		<category><![CDATA[Technical Stuff]]></category>
		<category><![CDATA[Quick Tip]]></category>
		<category><![CDATA[Silverlight]]></category>

		<guid isPermaLink="false">http://gisbiz.com/?p=676</guid>
		<description><![CDATA[Is your project missing a reference to Microsoft.Expression.Interactions or System.Windows.Interactivity? Download and install the Microsoft Expression Blend SDK for Silverlight 4. It&#8217;s in there.]]></description>
			<content:encoded><![CDATA[<p><img src="http://gisbiz.com/wp-content/uploads/2011/05/missing-reference.png" alt="" title="missing-reference" width="558" height="211" class="aligncenter size-full wp-image-677" /><br />
Is your project missing a reference to <code>Microsoft.Expression.Interactions</code> or <code>System.Windows.Interactivity</code>?  </p>
<p>Download and install the <a href="http://www.microsoft.com/downloads/en/details.aspx?FamilyID=d197f51a-de07-4edf-9cba-1f1b4a22110d&#038;displaylang=en">Microsoft Expression Blend SDK for Silverlight 4</a>.  It&#8217;s in there.</p>
]]></content:encoded>
			<wfw:commentRss>http://gisbiz.com/2011/07/where-is-microsoft-expression-interactions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

