<?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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for Geospecialling</title>
	<atom:link href="http://www.geospecialling.com/index.php/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.geospecialling.com</link>
	<description>Being a (G)IS Developer...</description>
	<lastBuildDate>Thu, 26 Jan 2012 15:31:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on OracleCommand and parameterized update statements by Jhonatan</title>
		<link>http://www.geospecialling.com/index.php/2011/11/oraclecommand-and-parameterized-update-statements/comment-page-1/#comment-14491</link>
		<dc:creator>Jhonatan</dc:creator>
		<pubDate>Thu, 26 Jan 2012 15:31:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/11/oraclecommand-and-parameterized-update-statements/#comment-14491</guid>
		<description>Thanks for this tip.</description>
		<content:encoded><![CDATA[<p>Thanks for this tip.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Star Wars: The Old Republic Install Download Breakout by SWTOR Hack&#8211;Re-install without the 20GB+ Download &#171; Geospecialling</title>
		<link>http://www.geospecialling.com/index.php/2011/12/star-wars-the-old-republic-install-download-breakout/comment-page-1/#comment-14368</link>
		<dc:creator>SWTOR Hack&#8211;Re-install without the 20GB+ Download &#171; Geospecialling</dc:creator>
		<pubDate>Sun, 15 Jan 2012 07:24:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/12/star-wars-the-old-republic-install-download-breakout/#comment-14368</guid>
		<description>[...] RAID and had backups…long store).&#160; Anyhow, the first couple of times I went through the 20GB+ download for Star Wars The Old Republic and my internet out here is not great.&#160; The entire download [...]</description>
		<content:encoded><![CDATA[<p>[...] RAID and had backups…long store).&#160; Anyhow, the first couple of times I went through the 20GB+ download for Star Wars The Old Republic and my internet out here is not great.&#160; The entire download [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mapguide Enterprise 2011 &#8211; Fusion and Selection XML by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2010/09/mapguide-enterprise-2011-fusion-and-selection-xml/comment-page-1/#comment-14248</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Wed, 04 Jan 2012 00:53:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/09/mapguide-enterprise-2011-fusion-and-selection-xml/#comment-14248</guid>
		<description>Hi Steven,

I apologize for the delay in replying.  I took a couple of weeks off over the holidays with pretty much zero computer access.  It was great! :)

First off - I have to warn you that my Mapguide is a little rusty :).  I&#039;ve been working a lot in AutoCAD and with WCF client / server apps lately.  If I understand what you&#039;re trying to accomplish you want to update some controls on the page based on back end data and you need to get the selected key value(s) in order to run your business logic to retrieve the needed data.  This is slightly different than what I was trying to accomplish.  I was trying to port my Ajax viewer based code to Fusion.  The only way to get the key values with the Ajax viewer was to get the selection XML and pass that into the server.  As the post states this is not the way it works with fusion.

Going from memory you have a couple of options.  First, you could create some sort of web service call that is accessible via javascript.  You could hook into the selectionOn event of the viewer.  When the selection changes you could fire some javascript that hits this web server and talks to the server.  The server would retrieve the selection and key values using the methodology defined in this post and return the needed data.  This would allow you to create some ajax sexy that would refresh automagically on selection.  You could also go for the form submit method here too with the screen refresh.  I have never worked with Mapguide widgets though - I&#039;ve opted in the development of the ChasmTech RADE application to make our UI the primary element and really we&#039;re just displaying the map in the fusion window.  All of our reporting and dialogs are handled in our own windowing system.

It looks like the Mapguide Tutorial does a decent job of explaining some of the underlying principles you will need here including working with the selection in javascript.  You can find that here http://trac.osgeo.org/fusion/wiki/MapGuideTutorial

Hope that helps!</description>
		<content:encoded><![CDATA[<p>Hi Steven,</p>
<p>I apologize for the delay in replying.  I took a couple of weeks off over the holidays with pretty much zero computer access.  It was great! <img src='http://www.geospecialling.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>First off &#8211; I have to warn you that my Mapguide is a little rusty <img src='http://www.geospecialling.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .  I&#8217;ve been working a lot in AutoCAD and with WCF client / server apps lately.  If I understand what you&#8217;re trying to accomplish you want to update some controls on the page based on back end data and you need to get the selected key value(s) in order to run your business logic to retrieve the needed data.  This is slightly different than what I was trying to accomplish.  I was trying to port my Ajax viewer based code to Fusion.  The only way to get the key values with the Ajax viewer was to get the selection XML and pass that into the server.  As the post states this is not the way it works with fusion.</p>
<p>Going from memory you have a couple of options.  First, you could create some sort of web service call that is accessible via javascript.  You could hook into the selectionOn event of the viewer.  When the selection changes you could fire some javascript that hits this web server and talks to the server.  The server would retrieve the selection and key values using the methodology defined in this post and return the needed data.  This would allow you to create some ajax sexy that would refresh automagically on selection.  You could also go for the form submit method here too with the screen refresh.  I have never worked with Mapguide widgets though &#8211; I&#8217;ve opted in the development of the ChasmTech RADE application to make our UI the primary element and really we&#8217;re just displaying the map in the fusion window.  All of our reporting and dialogs are handled in our own windowing system.</p>
<p>It looks like the Mapguide Tutorial does a decent job of explaining some of the underlying principles you will need here including working with the selection in javascript.  You can find that here <a href="http://trac.osgeo.org/fusion/wiki/MapGuideTutorial" rel="nofollow">http://trac.osgeo.org/fusion/wiki/MapGuideTutorial</a></p>
<p>Hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mapguide Enterprise 2011 &#8211; Fusion and Selection XML by Steven Wu</title>
		<link>http://www.geospecialling.com/index.php/2010/09/mapguide-enterprise-2011-fusion-and-selection-xml/comment-page-1/#comment-14120</link>
		<dc:creator>Steven Wu</dc:creator>
		<pubDate>Wed, 21 Dec 2011 20:06:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/09/mapguide-enterprise-2011-fusion-and-selection-xml/#comment-14120</guid>
		<description>This post is exactly the case I&#039;m encountering. My application was using AJAX viewer. A .net page is submitted to taskPanelFrame part when a feature is selected. Now, I&#039;m trying to change it to Fusion in MapGuide Enterprise 2011 and I didn&#039;t figure out how to do same thing. I tried to create a dialog widget and have it show up by default; when you pick a feature on the map, some information can be shown up on the widget. That&#039;s done by pure JavaScript. I wanted to collect section by JavaScript and pass it to a .net page. No success on this. How did you do that? Could you share some codes to me?
Thanks,
Steven</description>
		<content:encoded><![CDATA[<p>This post is exactly the case I&#8217;m encountering. My application was using AJAX viewer. A .net page is submitted to taskPanelFrame part when a feature is selected. Now, I&#8217;m trying to change it to Fusion in MapGuide Enterprise 2011 and I didn&#8217;t figure out how to do same thing. I tried to create a dialog widget and have it show up by default; when you pick a feature on the map, some information can be shown up on the widget. That&#8217;s done by pure JavaScript. I wanted to collect section by JavaScript and pass it to a .net page. No success on this. How did you do that? Could you share some codes to me?<br />
Thanks,<br />
Steven</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new breed of scam &#8211; QuickResolve.Net by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/comment-page-1/#comment-13998</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Thu, 15 Dec 2011 18:14:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/#comment-13998</guid>
		<description>Hi Vickie,

I&#039;m sorry to hear they got you... When they were on my computer remotely they didn&#039;t try to install anything.  They tried to con me into thinking there were problems with my computer by showing me a bunch of BS, and then they loaded their website in the browser where they wanted me to singup for their &quot;premium&quot; service.  It didn&#039;t seem like they were trying to install any malicious software, though their tactics may have changed.  The system they were using to connect to my machine was called LogMeIn Rescue - and I use it all the time to support my customers remotely - its a great product.  The nice thing about it is that it runs - but does not install anything.  Once you close the connection its done.  It IS possible to setup long term access using LogMeIn Rescue - but this is easy to end.   If you see anything running on your taskbar that says LogMeIn you could probably contact LogMeIn (www.logmeinrescue.com) support and let them know what has happened - I&#039;m sure they would be happy to help you remove the remote access.  I&#039;ve read that LogMeIn is just one application of many that they use though and I cannot speak to the others.

About the best I can suggest is to make sure you have a reputable anti-virus app running on your machine and its up to date. AVG offers a free one that I recommend to my friends and family.  If you&#039;re concerned you could also take your computer in for service and explain the situation - but that would probably cost you a few bucks.

hope that helps!</description>
		<content:encoded><![CDATA[<p>Hi Vickie,</p>
<p>I&#8217;m sorry to hear they got you&#8230; When they were on my computer remotely they didn&#8217;t try to install anything.  They tried to con me into thinking there were problems with my computer by showing me a bunch of BS, and then they loaded their website in the browser where they wanted me to singup for their &#8220;premium&#8221; service.  It didn&#8217;t seem like they were trying to install any malicious software, though their tactics may have changed.  The system they were using to connect to my machine was called LogMeIn Rescue &#8211; and I use it all the time to support my customers remotely &#8211; its a great product.  The nice thing about it is that it runs &#8211; but does not install anything.  Once you close the connection its done.  It IS possible to setup long term access using LogMeIn Rescue &#8211; but this is easy to end.   If you see anything running on your taskbar that says LogMeIn you could probably contact LogMeIn (www.logmeinrescue.com) support and let them know what has happened &#8211; I&#8217;m sure they would be happy to help you remove the remote access.  I&#8217;ve read that LogMeIn is just one application of many that they use though and I cannot speak to the others.</p>
<p>About the best I can suggest is to make sure you have a reputable anti-virus app running on your machine and its up to date. AVG offers a free one that I recommend to my friends and family.  If you&#8217;re concerned you could also take your computer in for service and explain the situation &#8211; but that would probably cost you a few bucks.</p>
<p>hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new breed of scam &#8211; QuickResolve.Net by VickieC</title>
		<link>http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/comment-page-1/#comment-13996</link>
		<dc:creator>VickieC</dc:creator>
		<pubDate>Thu, 15 Dec 2011 18:05:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/#comment-13996</guid>
		<description>They got us too.  My husband answered the phone and talked to these guys for a long time before he called me into the conversation.  They are fast talkers with a heavy Indian accent so it is very hard to understand what they say.  He let them into our computer.  We did break the connection but I don&#039;t know what to KEEP them out of our computer?</description>
		<content:encoded><![CDATA[<p>They got us too.  My husband answered the phone and talked to these guys for a long time before he called me into the conversation.  They are fast talkers with a heavy Indian accent so it is very hard to understand what they say.  He let them into our computer.  We did break the connection but I don&#8217;t know what to KEEP them out of our computer?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Mapguide 6.5 SP1 on Windows 2008 Server by Mapguide 6.5 Server Not Found on Hardened Windows 2008 Server &#171; Geospecialling</title>
		<link>http://www.geospecialling.com/index.php/2011/10/installing-mapguide-6-5-sp1-on-windows-2008-server/comment-page-1/#comment-13968</link>
		<dc:creator>Mapguide 6.5 Server Not Found on Hardened Windows 2008 Server &#171; Geospecialling</dc:creator>
		<pubDate>Wed, 14 Dec 2011 17:39:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/10/installing-mapguide-6-5-sp1-on-windows-2008-server/#comment-13968</guid>
		<description>[...] Mapguide 6.5 on modern platforms!&#160;&#160; This post builds on my previous post that documents how to install Mapguide 6.5 on Windows 2008.&#160; In this edition we look at the situation faced on a clients server.&#160;&#160; Basically [...]</description>
		<content:encoded><![CDATA[<p>[...] Mapguide 6.5 on modern platforms!&#160;&#160; This post builds on my previous post that documents how to install Mapguide 6.5 on Windows 2008.&#160; In this edition we look at the situation faced on a clients server.&#160;&#160; Basically [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Country / State Lookup Tables for Oracle by Country / State / Province Lookup Tables for SQL server &#171; Geospecialling</title>
		<link>http://www.geospecialling.com/index.php/2011/12/country-state-lookup-tables-for-oracle/comment-page-1/#comment-13863</link>
		<dc:creator>Country / State / Province Lookup Tables for SQL server &#171; Geospecialling</dc:creator>
		<pubDate>Fri, 09 Dec 2011 21:16:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/12/country-state-lookup-tables-for-oracle/#comment-13863</guid>
		<description>[...] **Update 2011.12.09 – I’ve posted an Oracle specific version of the Country/State/Province lookup SQL.&#160; [...]</description>
		<content:encoded><![CDATA[<p>[...] **Update 2011.12.09 – I’ve posted an Oracle specific version of the Country/State/Province lookup SQL.&#160; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Country / State / Province Lookup Tables for SQL server by Country / State Lookup Tables for Oracle &#171; Geospecialling</title>
		<link>http://www.geospecialling.com/index.php/2009/02/country-state-province-lookup-tables-for-sql-server/comment-page-1/#comment-13862</link>
		<dc:creator>Country / State Lookup Tables for Oracle &#171; Geospecialling</dc:creator>
		<pubDate>Fri, 09 Dec 2011 21:10:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.landoris.com/blogs/darrin/index.php/2009/02/country-state-province-lookup-tables-for-sql-server/#comment-13862</guid>
		<description>[...] for Country / State-Province lookup tables for Oracle!&#160;&#160; Building on my earlier post on Country / State Lookup Tables for SQL Server I’ve built a new script for Oracle.&#160; This script will create two tables, two sequences for [...]</description>
		<content:encoded><![CDATA[<p>[...] for Country / State-Province lookup tables for Oracle!&#160;&#160; Building on my earlier post on Country / State Lookup Tables for SQL Server I’ve built a new script for Oracle.&#160; This script will create two tables, two sequences for [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RADE &#8211; Build custom web applications, without writing custom code by OracleCommand and parameterized update statements &#171; Geospecialling</title>
		<link>http://www.geospecialling.com/index.php/2008/06/rade-build-custom-web-applications-without-writing-custom-code/comment-page-1/#comment-13381</link>
		<dc:creator>OracleCommand and parameterized update statements &#171; Geospecialling</dc:creator>
		<pubDate>Tue, 08 Nov 2011 22:07:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/06/rade-build-custom-web-applications-without-writing-custom-code/#comment-13381</guid>
		<description>[...] week I encountered an irritating situation with Oracle while working on code in the RADE application logic.&#160; In a nutshell I am building dynamically created parameterized insert and [...]</description>
		<content:encoded><![CDATA[<p>[...] week I encountered an irritating situation with Oracle while working on code in the RADE application logic.&#160; In a nutshell I am building dynamically created parameterized insert and [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Control Active AutoCAD Ribbon Tab from Visual Lisp &#8211; RibbonNinja! by Introducing Question of the Week for ObjectARX.NET and Mapguide &#171; Geospecialling</title>
		<link>http://www.geospecialling.com/index.php/2011/10/control-active-autocad-ribbon-tab-from-visual-lisp-ribbonninja/comment-page-1/#comment-13336</link>
		<dc:creator>Introducing Question of the Week for ObjectARX.NET and Mapguide &#171; Geospecialling</dc:creator>
		<pubDate>Sat, 05 Nov 2011 05:32:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/10/control-active-autocad-ribbon-tab-from-visual-lisp-ribbonninja/#comment-13336</guid>
		<description>[...] to get experience in all the various parts of it.&#160; The recent request I received on how to control the AutoCAD ribbon from Visual Lisp or the command line and the subsequent research, code and blog post I wrote made me think,&#160; [...]</description>
		<content:encoded><![CDATA[<p>[...] to get experience in all the various parts of it.&#160; The recent request I received on how to control the AutoCAD ribbon from Visual Lisp or the command line and the subsequent research, code and blog post I wrote made me think,&#160; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Mapguide 6.5 SP1 on Windows 2008 Server by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2011/10/installing-mapguide-6-5-sp1-on-windows-2008-server/comment-page-1/#comment-13258</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Sat, 29 Oct 2011 23:53:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/10/installing-mapguide-6-5-sp1-on-windows-2008-server/#comment-13258</guid>
		<description>Hi Albert,

The test environment I used to figure this out was 32bit so I was not able to test this theory - but maybe double check that you&#039;ve set the application pool to be 32bit by setting &quot;Enable 32-Bit Applications&quot; to true.  I also ended up with a web.config created in my MapAgents folder.  It looked like this:

&lt;code&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;&lt;br/&gt;&lt;configuration&gt;&lt;br/&gt;    &lt;system.webServer&gt;&lt;br/&gt;        &lt;handlers accessPolicy=&quot;Read, Execute, Script&quot;&gt;&lt;br/&gt;            &lt;add name=&quot;Mapguide65&quot; path=&quot;mapagent_isapi.isa&quot; verb=&quot;*&quot; modules=&quot;IsapiModule&quot; scriptProcessor=&quot;C:\Program Files\Autodesk\MapGuideServer6.5\MapAgents\MapAgent_ISAPI.dll&quot; resourceType=&quot;Unspecified&quot; requireAccess=&quot;Script&quot; /&gt;&lt;br/&gt;            &lt;add name=&quot;mg65&quot; path=&quot;mapagent_isapi.isa&quot; verb=&quot;*&quot; modules=&quot;IsapiModule&quot; scriptProcessor=&quot;C:\Program Files\Autodesk\MapGuideServer6.5\MapAgents\MapAgent_ISAP.dll&quot; resourceType=&quot;Unspecified&quot; requireAccess=&quot;Execute&quot; /&gt;&lt;br/&gt;        &lt;/handlers&gt;&lt;br/&gt;    &lt;/system.webServer&gt;&lt;br/&gt;&lt;/configuration&gt;&lt;br/&gt;
&lt;/code&gt;

Looks like of those was leftover from changing my execution access from Execute to Script.

You may also want to check that your application pool has the Managed pipeline mode set to Classic.  As for the user permissions, the application pool by default will be executing as network service.  I did not need to modify any permissions on the MapAgent folder or the isapi files for this to work.

Hopefully one of those suggestions gets you up and running.</description>
		<content:encoded><![CDATA[<p>Hi Albert,</p>
<p>The test environment I used to figure this out was 32bit so I was not able to test this theory &#8211; but maybe double check that you&#8217;ve set the application pool to be 32bit by setting &#8220;Enable 32-Bit Applications&#8221; to true.  I also ended up with a web.config created in my MapAgents folder.  It looked like this:</p>
<p><code><br />
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;<br />&lt;configuration&gt;<br />    &lt;system.webServer&gt;<br />        &lt;handlers accessPolicy=&quot;Read, Execute, Script&quot;&gt;<br />            &lt;add name=&quot;Mapguide65&quot; path=&quot;mapagent_isapi.isa&quot; verb=&quot;*&quot; modules=&quot;IsapiModule&quot; scriptProcessor=&quot;C:\Program Files\Autodesk\MapGuideServer6.5\MapAgents\MapAgent_ISAPI.dll&quot; resourceType=&quot;Unspecified&quot; requireAccess=&quot;Script&quot; /&gt;<br />            &lt;add name=&quot;mg65&quot; path=&quot;mapagent_isapi.isa&quot; verb=&quot;*&quot; modules=&quot;IsapiModule&quot; scriptProcessor=&quot;C:\Program Files\Autodesk\MapGuideServer6.5\MapAgents\MapAgent_ISAP.dll&quot; resourceType=&quot;Unspecified&quot; requireAccess=&quot;Execute&quot; /&gt;<br />        &lt;/handlers&gt;<br />    &lt;/system.webServer&gt;<br />&lt;/configuration&gt;<br />
</code></p>
<p>Looks like of those was leftover from changing my execution access from Execute to Script.</p>
<p>You may also want to check that your application pool has the Managed pipeline mode set to Classic.  As for the user permissions, the application pool by default will be executing as network service.  I did not need to modify any permissions on the MapAgent folder or the isapi files for this to work.</p>
<p>Hopefully one of those suggestions gets you up and running.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Mapguide 6.5 SP1 on Windows 2008 Server by Albert Kalman</title>
		<link>http://www.geospecialling.com/index.php/2011/10/installing-mapguide-6-5-sp1-on-windows-2008-server/comment-page-1/#comment-13251</link>
		<dc:creator>Albert Kalman</dc:creator>
		<pubDate>Sat, 29 Oct 2011 12:08:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/10/installing-mapguide-6-5-sp1-on-windows-2008-server/#comment-13251</guid>
		<description>Hello,

The dragon will still sleep a lot and well, but &quot;MapGuide 6.5 will reborn from ash like Phonix bird&quot; . 


I follow all steps (I use Win 7 on x64) but I got 
HTTP Error 500.0 - Internal Server Error

Module : IsapiModule
Notification : ExecuteRequestHandler
Handler : AboMapperCustom-12152633
Error Code : 0x800700c1
Requested URL : http://localhost:80/mapguide6.5/mapagent_isapi.isa?item=test
Physical Path :C:\Program Files (x86)\Autodesk\MapGuideServer6.5\MapAgents\mapagent_isapi.isa
Logon Method : Anonymous
Logon User : Anonymous

also I set for &quot;IUSER&quot; full permision on \MapAgents folder 
I noticed a web.config file in this folder

any idea?


Albert Kalman</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>The dragon will still sleep a lot and well, but &#8220;MapGuide 6.5 will reborn from ash like Phonix bird&#8221; . </p>
<p>I follow all steps (I use Win 7 on x64) but I got<br />
HTTP Error 500.0 &#8211; Internal Server Error</p>
<p>Module : IsapiModule<br />
Notification : ExecuteRequestHandler<br />
Handler : AboMapperCustom-12152633<br />
Error Code : 0x800700c1<br />
Requested URL : <a href="http://localhost:80/mapguide6.5/mapagent_isapi.isa?item=test" rel="nofollow">http://localhost:80/mapguide6.5/mapagent_isapi.isa?item=test</a><br />
Physical Path :C:\Program Files (x86)\Autodesk\MapGuideServer6.5\MapAgents\mapagent_isapi.isa<br />
Logon Method : Anonymous<br />
Logon User : Anonymous</p>
<p>also I set for &#8220;IUSER&#8221; full permision on \MapAgents folder<br />
I noticed a web.config file in this folder</p>
<p>any idea?</p>
<p>Albert Kalman</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Control Active AutoCAD Ribbon Tab from Visual Lisp &#8211; RibbonNinja! by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2011/10/control-active-autocad-ribbon-tab-from-visual-lisp-ribbonninja/comment-page-1/#comment-13248</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Sat, 29 Oct 2011 03:52:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/10/control-active-autocad-ribbon-tab-from-visual-lisp-ribbonninja/#comment-13248</guid>
		<description>Cool!  Thanks for sharing that Shawn.</description>
		<content:encoded><![CDATA[<p>Cool!  Thanks for sharing that Shawn.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Control Active AutoCAD Ribbon Tab from Visual Lisp &#8211; RibbonNinja! by Shawn</title>
		<link>http://www.geospecialling.com/index.php/2011/10/control-active-autocad-ribbon-tab-from-visual-lisp-ribbonninja/comment-page-1/#comment-13247</link>
		<dc:creator>Shawn</dc:creator>
		<pubDate>Sat, 29 Oct 2011 03:51:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/10/control-active-autocad-ribbon-tab-from-visual-lisp-ribbonninja/#comment-13247</guid>
		<description>Expanding on this I created a little LISP routine creating commands for all the default tabs in ACAD 2012. Feel free to add to it if you have created custom tabs for your install. I used the naming convention of tabXXX where XXX is the first three letters of every tab.

Grab the LISP routine here.

http://www.box.net/shared/8ft79uf8e105au8pfm46

Shawn</description>
		<content:encoded><![CDATA[<p>Expanding on this I created a little LISP routine creating commands for all the default tabs in ACAD 2012. Feel free to add to it if you have created custom tabs for your install. I used the naming convention of tabXXX where XXX is the first three letters of every tab.</p>
<p>Grab the LISP routine here.</p>
<p><a href="http://www.box.net/shared/8ft79uf8e105au8pfm46" rel="nofollow">http://www.box.net/shared/8ft79uf8e105au8pfm46</a></p>
<p>Shawn</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Mapguide 6.5 SP1 on Windows 2008 Server by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2011/10/installing-mapguide-6-5-sp1-on-windows-2008-server/comment-page-1/#comment-13239</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Fri, 28 Oct 2011 20:51:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/10/installing-mapguide-6-5-sp1-on-windows-2008-server/#comment-13239</guid>
		<description>Thanks for the tips Krzysztof!  I&#039;ve updated the post to include a copy of the orca.msi file as well as your point on the script vs. execute permission.</description>
		<content:encoded><![CDATA[<p>Thanks for the tips Krzysztof!  I&#8217;ve updated the post to include a copy of the orca.msi file as well as your point on the script vs. execute permission.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Mapguide 6.5 SP1 on Windows 2008 Server by Krzysztof Skwarek</title>
		<link>http://www.geospecialling.com/index.php/2011/10/installing-mapguide-6-5-sp1-on-windows-2008-server/comment-page-1/#comment-13238</link>
		<dc:creator>Krzysztof Skwarek</dc:creator>
		<pubDate>Fri, 28 Oct 2011 20:25:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/10/installing-mapguide-6-5-sp1-on-windows-2008-server/#comment-13238</guid>
		<description>Hello,

Big solution for me,

I tried unsuccessfully to install the program over a year and half ago.

I needed only 20 minutes to apply this solution and Mapguide 6.5 SP1 
&amp; Mapguide Author 6.5 SP1 works  (Windows 7 Proffesional 32-bit).

In addition, I propose:
1. no need to download the installer Orca included in the SDK (installing and downloading of SDK is time consuming). Simply download single Orca.msi (only 2MB) 
2. on Access tab in Request Restrictions window try select Script (not Execute)

Thanks 4 solution

best regards

Krzysztof Skwarek</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>Big solution for me,</p>
<p>I tried unsuccessfully to install the program over a year and half ago.</p>
<p>I needed only 20 minutes to apply this solution and Mapguide 6.5 SP1<br />
&amp; Mapguide Author 6.5 SP1 works  (Windows 7 Proffesional 32-bit).</p>
<p>In addition, I propose:<br />
1. no need to download the installer Orca included in the SDK (installing and downloading of SDK is time consuming). Simply download single Orca.msi (only 2MB)<br />
2. on Access tab in Request Restrictions window try select Script (not Execute)</p>
<p>Thanks 4 solution</p>
<p>best regards</p>
<p>Krzysztof Skwarek</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anoto Digital Pen Library Utility by Webber</title>
		<link>http://www.geospecialling.com/index.php/2011/08/anoto-digital-pen-library-utility/comment-page-1/#comment-13011</link>
		<dc:creator>Webber</dc:creator>
		<pubDate>Thu, 13 Oct 2011 00:31:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/08/anoto-digital-pen-library-utility/#comment-13011</guid>
		<description>&lt;i&gt;&lt;a href=&#039;http://www.geospecialling.com/index.php/2011/08/anoto-digital-pen-library-utility/feed/&#039; rel=&quot;nofollow&quot;&gt;&lt;abbr title=&quot;Really Simple Syndication&quot;&gt;RSS&lt;/abbr&gt; feed for comments on this post.&lt;/a&gt;	&lt;a href=&quot;http://www.geospecialling.com/index.php/2011/08/anoto-digital-pen-library-utility/trackback/&quot; rel=&quot;nofollow&quot;&gt;TrackBack &lt;abbr title=&quot;Universal Resource Locator&quot;&gt;URL&lt;/abbr&gt;&lt;/a&gt;
&lt;/i&gt;
+1</description>
		<content:encoded><![CDATA[<p><i><a href='http://www.geospecialling.com/index.php/2011/08/anoto-digital-pen-library-utility/feed/' rel="nofollow"><abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.</a>	<a href="http://www.geospecialling.com/index.php/2011/08/anoto-digital-pen-library-utility/trackback/" rel="nofollow">TrackBack <abbr title="Universal Resource Locator">URL</abbr></a><br />
</i><br />
+1</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking Visual Lisp IDE to be a little more awesome! by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/comment-page-1/#comment-12935</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Fri, 07 Oct 2011 20:37:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/#comment-12935</guid>
		<description>Hey Dennis - Just had a chance to try out your color scheme and after getting used to the change a bit I really like it.  At first it bothered me but I gave it a chance and after adjusting to the new colors I&#039;m pretty happy with them.  Thanks for sharing!</description>
		<content:encoded><![CDATA[<p>Hey Dennis &#8211; Just had a chance to try out your color scheme and after getting used to the change a bit I really like it.  At first it bothered me but I gave it a chance and after adjusting to the new colors I&#8217;m pretty happy with them.  Thanks for sharing!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking Visual Lisp IDE to be a little more awesome! by Dennis Hill</title>
		<link>http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/comment-page-1/#comment-12836</link>
		<dc:creator>Dennis Hill</dc:creator>
		<pubDate>Fri, 30 Sep 2011 18:17:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/#comment-12836</guid>
		<description>After a lot of experimentation I&#039;ve settled on these colors:
(*editor-sample-window* (:AUTOLISP :FGC 6155515 :BGC 3686423 :LXC T :CLV #40(nil nil 16777215 nil nil nil 32767 nil 16776960 nil 65280 nil 16711935 nil 16776960 nil 14211215 nil 16776960 nil 12292863 nil 0 nil 13311 nil 128 nil 128 32768 nil nil 0 65535 16777215 255 65535 8388608 16777215 255) :TW 3 :LM 8))
I&#039;ve always used a tab width of 3 so I can get more code together; you would use :TW 4 :LM 10.
This is a ways down the street from your colors, but you might try them out. It would at least give you an idea of what&#039;s possible. I focused on keeping things cool and soft, but with enough contrast for the different elements to &#039;jump&#039;. I also changed the consol to White on Teal :FGC 16777215 - :BGC 8421376, and I left the Trace window alone.

By the way, I like to put a descriptive header at the top of my routines so I can make sense of them after I&#039;ve been away for a few months or years. I note what routines it uses and what routines use it (or just &quot;General Utility&quot;), when I worked on it last (AltE-X-R), what it does, and a line of dashes that matches my printers max line width. I set the whole thing off using the ;&#124; and &#124;; comment controls. That way the list is colored by the :LEX-COMM2 setting so it appears different from a standard comment and it also serves as a good visual separator when you&#039;re scrolling through a file with more than one routine in it.

Thanks again for giving me the ability to escape from those LOUD default colors, recapture my Lisp environment, and even enhance it.</description>
		<content:encoded><![CDATA[<p>After a lot of experimentation I&#8217;ve settled on these colors:<br />
(*editor-sample-window* (:AUTOLISP :FGC 6155515 :BGC 3686423 :LXC T :CLV #40(nil nil 16777215 nil nil nil 32767 nil 16776960 nil 65280 nil 16711935 nil 16776960 nil 14211215 nil 16776960 nil 12292863 nil 0 nil 13311 nil 128 nil 128 32768 nil nil 0 65535 16777215 255 65535 8388608 16777215 255) :TW 3 :LM 8))<br />
I&#8217;ve always used a tab width of 3 so I can get more code together; you would use :TW 4 :LM 10.<br />
This is a ways down the street from your colors, but you might try them out. It would at least give you an idea of what&#8217;s possible. I focused on keeping things cool and soft, but with enough contrast for the different elements to &#8216;jump&#8217;. I also changed the consol to White on Teal :FGC 16777215 &#8211; :BGC 8421376, and I left the Trace window alone.</p>
<p>By the way, I like to put a descriptive header at the top of my routines so I can make sense of them after I&#8217;ve been away for a few months or years. I note what routines it uses and what routines use it (or just &#8220;General Utility&#8221;), when I worked on it last (AltE-X-R), what it does, and a line of dashes that matches my printers max line width. I set the whole thing off using the ;| and |; comment controls. That way the list is colored by the :LEX-COMM2 setting so it appears different from a standard comment and it also serves as a good visual separator when you&#8217;re scrolling through a file with more than one routine in it.</p>
<p>Thanks again for giving me the ability to escape from those LOUD default colors, recapture my Lisp environment, and even enhance it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking Visual Lisp IDE to be a little more awesome! by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/comment-page-1/#comment-12828</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Fri, 30 Sep 2011 02:27:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/#comment-12828</guid>
		<description>A very in-depth analysis of the contents of the DSK file,  thank you very much for sharing that Dennis!  R14 was the first version of AutoCAD with Visual Lisp but it was an addon at that time that cost something like 99$ if I recall.  It was added as a feature in R15. I believe Autodesk purchased a product named Vital Lisp and added all the needed goodies to AutoCAD to support the ActiveX calls and named it Visual Lisp.  Man, what I change it was going from R12 and Lisp to R14 and Visual Lisp.  (Yes, with the exception of doing some QA on AutoCAD Map 1, we skipped R13 :])  I remember the guys at Kanotech taking the stack dumps of R12 and trying to figure out where the error occurred.  So spoiled now with breakpoints, error handlers, and step through debugging :)</description>
		<content:encoded><![CDATA[<p>A very in-depth analysis of the contents of the DSK file,  thank you very much for sharing that Dennis!  R14 was the first version of AutoCAD with Visual Lisp but it was an addon at that time that cost something like 99$ if I recall.  It was added as a feature in R15. I believe Autodesk purchased a product named Vital Lisp and added all the needed goodies to AutoCAD to support the ActiveX calls and named it Visual Lisp.  Man, what I change it was going from R12 and Lisp to R14 and Visual Lisp.  (Yes, with the exception of doing some QA on AutoCAD Map 1, we skipped R13 :])  I remember the guys at Kanotech taking the stack dumps of R12 and trying to figure out where the error occurred.  So spoiled now with breakpoints, error handlers, and step through debugging <img src='http://www.geospecialling.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking Visual Lisp IDE to be a little more awesome! by Dennis Hill</title>
		<link>http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/comment-page-1/#comment-12824</link>
		<dc:creator>Dennis Hill</dc:creator>
		<pubDate>Thu, 29 Sep 2011 20:46:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/#comment-12824</guid>
		<description>I&#039;ve been exploring this color stuff for a while and I&#039;ve found you can use any RGB color with some manipulation.
Find the Hex code for the color you want, flip the first and last pairs, convert that value to decimal and use it.
Think of the VLIDE version of the &#039;RGB&#039; hex color codes as being &#039;BGR&#039;.

Also, you won&#039;t see your new color values until you open a LSP file or create a new one. The file names that are open when you close the VLIDE get stored in the VLIDE.DSK file including the colors they were displayed with, so when you just reopen ACAD &amp; the VLIDE, the files that were open in the previous session will not reflect your changes to the VLIDE.DSK editor-sample-window codes (unless you close and reopen them of course).
You might be able to use this to experiment with more than one color scheme at a time. Each open LSP file has its own CLV #40 entry in the VLIDE.DSK file. If you change the color values in those lists, you should be able to open the VLIDE and see different color schemes by switching between the open LSP files (I haven&#039;t tried it yet).
The open file colors are coded using the same format except the Foreground &amp; Background colors and Lexical flag are on separate lines.

By the way, I also found that the FGC-Foreground &amp; BGC-Background color pairs are in sequence as follows: :LEX-SPACE, :LEX-STR, ????, :LEX-SYM, :LEX-NUM, :LEX-INT, :LEX-REAL, :LEX-COMM, :LEX-COMM1, :LEX-COMM2, :LEX-PAREN, :LEX-SPEC, :LEX-SPEC1, ????, :LEX-UNKN, :WINDOW-TEXT, :WINDOW-SELECTION, BPT-ACTIVE, BPT-DISABLE &amp; :ERROR-HIGHLIGHT. I don&#039;t know what the ???? pairs control; probably a legacy thing. And of course, Nil values are replaced by the applicable FGC/BGC color value and are represented by a check-mark in the &#039;Transparent&#039; box.

Hope you find this usefull.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been exploring this color stuff for a while and I&#8217;ve found you can use any RGB color with some manipulation.<br />
Find the Hex code for the color you want, flip the first and last pairs, convert that value to decimal and use it.<br />
Think of the VLIDE version of the &#8216;RGB&#8217; hex color codes as being &#8216;BGR&#8217;.</p>
<p>Also, you won&#8217;t see your new color values until you open a LSP file or create a new one. The file names that are open when you close the VLIDE get stored in the VLIDE.DSK file including the colors they were displayed with, so when you just reopen ACAD &amp; the VLIDE, the files that were open in the previous session will not reflect your changes to the VLIDE.DSK editor-sample-window codes (unless you close and reopen them of course).<br />
You might be able to use this to experiment with more than one color scheme at a time. Each open LSP file has its own CLV #40 entry in the VLIDE.DSK file. If you change the color values in those lists, you should be able to open the VLIDE and see different color schemes by switching between the open LSP files (I haven&#8217;t tried it yet).<br />
The open file colors are coded using the same format except the Foreground &amp; Background colors and Lexical flag are on separate lines.</p>
<p>By the way, I also found that the FGC-Foreground &amp; BGC-Background color pairs are in sequence as follows: :LEX-SPACE, :LEX-STR, ????, :LEX-SYM, :LEX-NUM, :LEX-INT, :LEX-REAL, :LEX-COMM, :LEX-COMM1, :LEX-COMM2, :LEX-PAREN, :LEX-SPEC, :LEX-SPEC1, ????, :LEX-UNKN, :WINDOW-TEXT, :WINDOW-SELECTION, BPT-ACTIVE, BPT-DISABLE &amp; :ERROR-HIGHLIGHT. I don&#8217;t know what the ???? pairs control; probably a legacy thing. And of course, Nil values are replaced by the applicable FGC/BGC color value and are represented by a check-mark in the &#8216;Transparent&#8217; box.</p>
<p>Hope you find this usefull.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking Visual Lisp IDE to be a little more awesome! by Dennis Hill</title>
		<link>http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/comment-page-1/#comment-12810</link>
		<dc:creator>Dennis Hill</dc:creator>
		<pubDate>Thu, 29 Sep 2011 00:36:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/#comment-12810</guid>
		<description>I would expect the VLIDE.DSK file only goes back to the first version of Visual Lisp.
I don&#039;t recall which AutoCAD release that was, but in R12 it was still called AutoLISP.</description>
		<content:encoded><![CDATA[<p>I would expect the VLIDE.DSK file only goes back to the first version of Visual Lisp.<br />
I don&#8217;t recall which AutoCAD release that was, but in R12 it was still called AutoLISP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking Visual Lisp IDE to be a little more awesome! by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/comment-page-1/#comment-12809</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Wed, 28 Sep 2011 21:39:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/#comment-12809</guid>
		<description>Glad I could help Dennis!  I wonder if I can track down a copy of R14.  (ADN only goes back to 2007! )   I have a feeling this file might be backwards compatible all the way back to this first release of AutoCAD with Visual Lisp.  Anyone have that installed still and feel like sending me a copy of the .dsk file? :)</description>
		<content:encoded><![CDATA[<p>Glad I could help Dennis!  I wonder if I can track down a copy of R14.  (ADN only goes back to 2007! )   I have a feeling this file might be backwards compatible all the way back to this first release of AutoCAD with Visual Lisp.  Anyone have that installed still and feel like sending me a copy of the .dsk file? <img src='http://www.geospecialling.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking Visual Lisp IDE to be a little more awesome! by Dennis Hill</title>
		<link>http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/comment-page-1/#comment-12808</link>
		<dc:creator>Dennis Hill</dc:creator>
		<pubDate>Wed, 28 Sep 2011 21:28:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/#comment-12808</guid>
		<description>THANK YOU!!!!!!

I&#039;ve been hounding Autodesk and the ADN to get the VLIDE context color option fixed for years.
I also find the default colors to be a horrific eye strain.
Actually, with your location direction, I was able to copy a 2005 version of my VLIDE.DSK into the enu directory.
When I restarted Map and the VLIDE, my old color settings were restored so I didn&#039;t have to &#039;hack&#039; the file.
You might suggest this approach to others who might have an archived or backup copy of a former &#039;colorized&#039; VLIDE.DSK file someplace.

Thanks again!!

OS: Windows 7 Pro 64 bit
AutoCAD Map 3D 2011 64 bit</description>
		<content:encoded><![CDATA[<p>THANK YOU!!!!!!</p>
<p>I&#8217;ve been hounding Autodesk and the ADN to get the VLIDE context color option fixed for years.<br />
I also find the default colors to be a horrific eye strain.<br />
Actually, with your location direction, I was able to copy a 2005 version of my VLIDE.DSK into the enu directory.<br />
When I restarted Map and the VLIDE, my old color settings were restored so I didn&#8217;t have to &#8216;hack&#8217; the file.<br />
You might suggest this approach to others who might have an archived or backup copy of a former &#8216;colorized&#8217; VLIDE.DSK file someplace.</p>
<p>Thanks again!!</p>
<p>OS: Windows 7 Pro 64 bit<br />
AutoCAD Map 3D 2011 64 bit</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging COM DLL files in AutoCAD x64 and Visual Studio by gigity</title>
		<link>http://www.geospecialling.com/index.php/2011/03/debugging-com-dll-files-in-autocad-x64-and-visual-studio/comment-page-1/#comment-12582</link>
		<dc:creator>gigity</dc:creator>
		<pubDate>Thu, 22 Sep 2011 12:54:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/03/debugging-com-dll-files-in-autocad-x64-and-visual-studio/#comment-12582</guid>
		<description>I  respect  your work ,  appreciate it for all the  useful  content .</description>
		<content:encoded><![CDATA[<p>I  respect  your work ,  appreciate it for all the  useful  content .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating .NET objects for Mapguide XML schema Definitions (XSD) using LINQ by Millard Mustin</title>
		<link>http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/comment-page-1/#comment-12581</link>
		<dc:creator>Millard Mustin</dc:creator>
		<pubDate>Wed, 21 Sep 2011 21:01:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/#comment-12581</guid>
		<description>Wow i was looking for this informattion only and i have got great knowledge from our post.</description>
		<content:encoded><![CDATA[<p>Wow i was looking for this informattion only and i have got great knowledge from our post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Increase Mapguide Enterprise/Open Performance with Javascript Compression using the YUI Compressor by 1930 great depression facts</title>
		<link>http://www.geospecialling.com/index.php/2008/08/increase-mapguide-enterpriseopen-performance-with-javascript-compression-using-the-yui-compressor/comment-page-1/#comment-12579</link>
		<dc:creator>1930 great depression facts</dc:creator>
		<pubDate>Wed, 21 Sep 2011 18:54:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/08/increase-mapguide-enterpriseopen-performance-with-javascript-compression-using-the-yui-compressor/#comment-12579</guid>
		<description>Awesome   read ,  I&#039;m going to spend more time researching  this subject</description>
		<content:encoded><![CDATA[<p>Awesome   read ,  I&#8217;m going to spend more time researching  this subject</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a custom notepad for use with FullCircle SmartInk by michelle</title>
		<link>http://www.geospecialling.com/index.php/2011/02/creating-a-custom-notepad-for-use-with-fullcircle-smartink/comment-page-1/#comment-12569</link>
		<dc:creator>michelle</dc:creator>
		<pubDate>Wed, 21 Sep 2011 02:35:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/02/creating-a-custom-notepad-for-use-with-fullcircle-smartink/#comment-12569</guid>
		<description>This is the perfect blog for anyone who wants to know about this topic. You know so much its almost hard to argue with you (not that I really would want...HaHa). You definitely put a new spin on a subject thats been written about for years. Great stuff, just amazing</description>
		<content:encoded><![CDATA[<p>This is the perfect blog for anyone who wants to know about this topic. You know so much its almost hard to argue with you (not that I really would want&#8230;HaHa). You definitely put a new spin on a subject thats been written about for years. Great stuff, just amazing</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Authoring in Mapguide Enterprise &#8211; Before the Viewer has Loaded by Kerry Cuny</title>
		<link>http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/comment-page-1/#comment-12563</link>
		<dc:creator>Kerry Cuny</dc:creator>
		<pubDate>Tue, 20 Sep 2011 21:08:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/#comment-12563</guid>
		<description>You have given me great points for my new article  and i am going to use that.</description>
		<content:encoded><![CDATA[<p>You have given me great points for my new article  and i am going to use that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle.DataAccess version numbers in a .NET config file by Pasquale Grames</title>
		<link>http://www.geospecialling.com/index.php/2010/03/oracle-dataaccess-version-numbers-in-a-net-config-file/comment-page-1/#comment-12556</link>
		<dc:creator>Pasquale Grames</dc:creator>
		<pubDate>Tue, 20 Sep 2011 11:17:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/03/oracle-dataaccess-version-numbers-in-a-net-config-file/#comment-12556</guid>
		<description>Did you design the site this well with the default blog tools? Your blog is incredible.</description>
		<content:encoded><![CDATA[<p>Did you design the site this well with the default blog tools? Your blog is incredible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Hacking Visual Lisp IDE to be a little more awesome! by Hacking autocad &#124; Seemusicvideos</title>
		<link>http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/comment-page-1/#comment-12501</link>
		<dc:creator>Hacking autocad &#124; Seemusicvideos</dc:creator>
		<pubDate>Fri, 16 Sep 2011 00:00:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/08/hacking-visual-lisp-ide-to-be-a-little-more-awesome/#comment-12501</guid>
		<description>[...] Hacking Visual Lisp IDE to be a little more awesome! &#171; GeospeciallingAug 9, 2011 &#8230; Hacking Visual Lisp IDE to be a little more awesome! &#8230; One key limitation here is that on x64 editions of AutoCAD this dialog is broken. &#8230; [...]</description>
		<content:encoded><![CDATA[<p>[...] Hacking Visual Lisp IDE to be a little more awesome! &#171; GeospeciallingAug 9, 2011 &#8230; Hacking Visual Lisp IDE to be a little more awesome! &#8230; One key limitation here is that on x64 editions of AutoCAD this dialog is broken. &#8230; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging COM DLL files in AutoCAD x64 and Visual Studio by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2011/03/debugging-com-dll-files-in-autocad-x64-and-visual-studio/comment-page-1/#comment-12481</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Wed, 14 Sep 2011 05:20:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/03/debugging-com-dll-files-in-autocad-x64-and-visual-studio/#comment-12481</guid>
		<description>Hi there.  If you&#039;re using AutoCAD 2007 this post wouldn&#039;t apply to you for the most part.  This was specific to x64 builds of AutoCAD which was introduced with the 2008 release of vanilla AutoCAD.

Going from memory, 2007 was the first full blown release of AutoCAD to use .NET fully.  I believe framework ver 1.0 or 1.1.  You should be able to use the 32 bit .NET regasm command to register a com dll for use in a 2007 

Hope that helps!</description>
		<content:encoded><![CDATA[<p>Hi there.  If you&#8217;re using AutoCAD 2007 this post wouldn&#8217;t apply to you for the most part.  This was specific to x64 builds of AutoCAD which was introduced with the 2008 release of vanilla AutoCAD.</p>
<p>Going from memory, 2007 was the first full blown release of AutoCAD to use .NET fully.  I believe framework ver 1.0 or 1.1.  You should be able to use the 32 bit .NET regasm command to register a com dll for use in a 2007 </p>
<p>Hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Debugging COM DLL files in AutoCAD x64 and Visual Studio by Autocad</title>
		<link>http://www.geospecialling.com/index.php/2011/03/debugging-com-dll-files-in-autocad-x64-and-visual-studio/comment-page-1/#comment-12479</link>
		<dc:creator>Autocad</dc:creator>
		<pubDate>Wed, 14 Sep 2011 04:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/03/debugging-com-dll-files-in-autocad-x64-and-visual-studio/#comment-12479</guid>
		<description>Thank you for sharing it. But asked what version to use with Autocad. I now use the 2007 version to help me.</description>
		<content:encoded><![CDATA[<p>Thank you for sharing it. But asked what version to use with Autocad. I now use the 2007 version to help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Authoring in Mapguide Enterprise &#8211; Before the Viewer has Loaded by Joey Kaase</title>
		<link>http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/comment-page-1/#comment-12463</link>
		<dc:creator>Joey Kaase</dc:creator>
		<pubDate>Mon, 12 Sep 2011 20:59:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/#comment-12463</guid>
		<description>Excellent read, I just passed this onto a colleague who was doing a little research on that. And he actually bought me lunch because I found it for him smile So let me rephrase that: Thanks for lunch!</description>
		<content:encoded><![CDATA[<p>Excellent read, I just passed this onto a colleague who was doing a little research on that. And he actually bought me lunch because I found it for him smile So let me rephrase that: Thanks for lunch!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new breed of scam &#8211; QuickResolve.Net by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/comment-page-1/#comment-12417</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Wed, 07 Sep 2011 15:55:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/#comment-12417</guid>
		<description>Thanks for posting Harry.  I&#039;m completely shocked at how prolific this is.  I had a client bring these guys up during a meeting yesterday morning.  &quot;You guys are computer guys, I had this phone call yesterday...&quot; and I immediately knew who it was...

Any legal professionals out there able to weigh in on the legality of this operation?</description>
		<content:encoded><![CDATA[<p>Thanks for posting Harry.  I&#8217;m completely shocked at how prolific this is.  I had a client bring these guys up during a meeting yesterday morning.  &#8220;You guys are computer guys, I had this phone call yesterday&#8230;&#8221; and I immediately knew who it was&#8230;</p>
<p>Any legal professionals out there able to weigh in on the legality of this operation?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new breed of scam &#8211; QuickResolve.Net by Harry Timmons</title>
		<link>http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/comment-page-1/#comment-12384</link>
		<dc:creator>Harry Timmons</dc:creator>
		<pubDate>Sun, 04 Sep 2011 21:56:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/#comment-12384</guid>
		<description>I had the same call as the gentlemen above on Saturday. They seemed genuine until they said that there offices were open Monday to Friday, so I asked why they were calling on Saturday morning - no answer. The first gentleman was called Karesh who put me onto Mike Williams Microsoft technician who then put me onto Steve the Senior technician to let me know and show me all my errors. His senior technician told me that the best solution for me was to purchase a 3 yearly subscription. I told him I did not hand details over the internet and do not buy anything over the internet. I then told him that I would check with the company I bought the computor from and see if I have a problem</description>
		<content:encoded><![CDATA[<p>I had the same call as the gentlemen above on Saturday. They seemed genuine until they said that there offices were open Monday to Friday, so I asked why they were calling on Saturday morning &#8211; no answer. The first gentleman was called Karesh who put me onto Mike Williams Microsoft technician who then put me onto Steve the Senior technician to let me know and show me all my errors. His senior technician told me that the best solution for me was to purchase a 3 yearly subscription. I told him I did not hand details over the internet and do not buy anything over the internet. I then told him that I would check with the company I bought the computor from and see if I have a problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ERROR: Unable to update the dependencies of the project by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2010/11/error-unable-to-update-the-dependencies-of-the-project/comment-page-1/#comment-12026</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Wed, 03 Aug 2011 17:56:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/11/error-unable-to-update-the-dependencies-of-the-project/#comment-12026</guid>
		<description>Glad I could be of service Allan!</description>
		<content:encoded><![CDATA[<p>Glad I could be of service Allan!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ERROR: Unable to update the dependencies of the project by allan</title>
		<link>http://www.geospecialling.com/index.php/2010/11/error-unable-to-update-the-dependencies-of-the-project/comment-page-1/#comment-12024</link>
		<dc:creator>allan</dc:creator>
		<pubDate>Wed, 03 Aug 2011 11:55:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/11/error-unable-to-update-the-dependencies-of-the-project/#comment-12024</guid>
		<description>Thanks, this KB solved my problem &amp; saved my day :)
Best Regards - allan</description>
		<content:encoded><![CDATA[<p>Thanks, this KB solved my problem &amp; saved my day <img src='http://www.geospecialling.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Best Regards &#8211; allan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on It&#8217;s a girl! by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2011/07/its-a-girl/comment-page-1/#comment-11972</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Thu, 28 Jul 2011 17:02:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/07/its-a-girl/#comment-11972</guid>
		<description>Thank you sir!  :)</description>
		<content:encoded><![CDATA[<p>Thank you sir!  <img src='http://www.geospecialling.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on It&#8217;s a girl! by Gordon</title>
		<link>http://www.geospecialling.com/index.php/2011/07/its-a-girl/comment-page-1/#comment-11971</link>
		<dc:creator>Gordon</dc:creator>
		<pubDate>Thu, 28 Jul 2011 14:13:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/07/its-a-girl/#comment-11971</guid>
		<description>Congrats on the new baby Darrin!  Great news!</description>
		<content:encoded><![CDATA[<p>Congrats on the new baby Darrin!  Great news!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new breed of scam &#8211; QuickResolve.Net by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/comment-page-1/#comment-11839</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Sat, 16 Jul 2011 03:45:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/#comment-11839</guid>
		<description>Wow Paul.  I&#039;m glad you didn&#039;t fall for it.  I especially like the bit about the manager calling you back and threatening you.  Hilarious! =)  Since I posted this I&#039;ve heard from a ton of friends telling me how their parents or grand parents were duped.  Some of them paid hundreds of dollars.  I&#039;m glad to hear you had the forethought to ask Google about these clowns and I&#039;m especially pleased that my posting helped you.   Thanks for commenting!</description>
		<content:encoded><![CDATA[<p>Wow Paul.  I&#8217;m glad you didn&#8217;t fall for it.  I especially like the bit about the manager calling you back and threatening you.  Hilarious! =)  Since I posted this I&#8217;ve heard from a ton of friends telling me how their parents or grand parents were duped.  Some of them paid hundreds of dollars.  I&#8217;m glad to hear you had the forethought to ask Google about these clowns and I&#8217;m especially pleased that my posting helped you.   Thanks for commenting!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new breed of scam &#8211; QuickResolve.Net by Paul Murray</title>
		<link>http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/comment-page-1/#comment-11834</link>
		<dc:creator>Paul Murray</dc:creator>
		<pubDate>Fri, 15 Jul 2011 17:14:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/#comment-11834</guid>
		<description>I could have been a victim of this scam today - only for a bit of diligence and some preparation. The first call was from a gentleman explaining that he was calling from the &#039;Help &amp; Support Centre for Windows Operating System&#039;.  I pretended that I was slightly deaf asking him to spell things out so that I could write them down but his very thick Indian accent was difficult to understand anyway - although he did tell me that his name was &#039;Andrew Smith&#039; [Yeah, right!!].  He confirmed that he was calling from &#039;Quick Resolve&#039; in Manchester and that I could call him back on 0161 381 0003.  When I asked him which part of Manchester he was in, he simply said that it was &#039;Manchester, England&#039; and would I please switch my computer on so that we could check together whether my computer had been infected by &#039;many malicious junk&#039;! I explained that I could not do so right away so he agreed to call me back at 4.00pm [ thus giving me the opportunity to check them out and discover this blog - forearmed is forewarned!!].
The interesting bit is when he phoned back - and I played along with everything until the bit when he asked me to open up Internet Explorer and type in a website address ( having checked &#039;eventvwr&#039; in Run first and showing me almost 3,000 files listed in there which are all &#039;malicious&#039; and &#039;if you click on them they will multiply and spread right across your computer and break your computer&#039;). At his request to open up Internet, I told him that I was not prepared to do so as I believed that this was a scam and his intention was to place malicious software onto my computer and then charge me money to remove or fix it. He got more and more angry especially when I said &#039;Your name is NOT Andrew Smith is it ? You are not calling from Manchester are you?  You are in India! This is a scam isn&#039;t it! You are a liar!&#039; Eventually he hung up after telling me to &#039;**** off&#039;.
The best bit then followed - my phone rang almost immediately and was answered by my wife and a &#039;Nick Perkins&#039; - again with a heavy Indian accent - explained that he was the Managing Director of Quick Resolve and he wanted to speak with Mr Murray who had been abusive to his staff and had spoken with them using &#039;sh*t languages&#039;. He said that the call was being recorded and that Mr Murray should call him back straight away on 0161 381 8833 as he was ‘in big trouble’ and they had evidence that Mr Murray was nasty to his agents. When I was handed the phone, I politely told him that I had not been abusive and had certainly not sworn on the telephone. He assured me that it was being recorded and that it was being given to the FBI who would make sure that I got into &#039;real big trouble&#039;.  
I am not sure how I kept from bursting into laughter [quite clearly the FBI have no jurisdiction in the UK!!] but I did manage to tell him that I was entirely happy with the call being recorded and was looking forward to a visit from the FBI!  He was completely flummoxed and hung up!  When he calls back again - I will tell him that if he tells the FBI, I will tell the CIA....and then the SAS.....and then the KGB!!!!  The sad thing is that they must be getting plenty of victims as they are obviously continuing to call lots of &#039;less savvy&#039; people!!  Surely something can be done to stop it!!</description>
		<content:encoded><![CDATA[<p>I could have been a victim of this scam today &#8211; only for a bit of diligence and some preparation. The first call was from a gentleman explaining that he was calling from the &#8216;Help &amp; Support Centre for Windows Operating System&#8217;.  I pretended that I was slightly deaf asking him to spell things out so that I could write them down but his very thick Indian accent was difficult to understand anyway &#8211; although he did tell me that his name was &#8216;Andrew Smith&#8217; [Yeah, right!!].  He confirmed that he was calling from &#8216;Quick Resolve&#8217; in Manchester and that I could call him back on 0161 381 0003.  When I asked him which part of Manchester he was in, he simply said that it was &#8216;Manchester, England&#8217; and would I please switch my computer on so that we could check together whether my computer had been infected by &#8216;many malicious junk&#8217;! I explained that I could not do so right away so he agreed to call me back at 4.00pm [ thus giving me the opportunity to check them out and discover this blog - forearmed is forewarned!!].<br />
The interesting bit is when he phoned back &#8211; and I played along with everything until the bit when he asked me to open up Internet Explorer and type in a website address ( having checked &#8216;eventvwr&#8217; in Run first and showing me almost 3,000 files listed in there which are all &#8216;malicious&#8217; and &#8216;if you click on them they will multiply and spread right across your computer and break your computer&#8217;). At his request to open up Internet, I told him that I was not prepared to do so as I believed that this was a scam and his intention was to place malicious software onto my computer and then charge me money to remove or fix it. He got more and more angry especially when I said &#8216;Your name is NOT Andrew Smith is it ? You are not calling from Manchester are you?  You are in India! This is a scam isn&#8217;t it! You are a liar!&#8217; Eventually he hung up after telling me to &#8216;**** off&#8217;.<br />
The best bit then followed &#8211; my phone rang almost immediately and was answered by my wife and a &#8216;Nick Perkins&#8217; &#8211; again with a heavy Indian accent &#8211; explained that he was the Managing Director of Quick Resolve and he wanted to speak with Mr Murray who had been abusive to his staff and had spoken with them using &#8216;sh*t languages&#8217;. He said that the call was being recorded and that Mr Murray should call him back straight away on 0161 381 8833 as he was ‘in big trouble’ and they had evidence that Mr Murray was nasty to his agents. When I was handed the phone, I politely told him that I had not been abusive and had certainly not sworn on the telephone. He assured me that it was being recorded and that it was being given to the FBI who would make sure that I got into &#8216;real big trouble&#8217;.<br />
I am not sure how I kept from bursting into laughter [quite clearly the FBI have no jurisdiction in the UK!!] but I did manage to tell him that I was entirely happy with the call being recorded and was looking forward to a visit from the FBI!  He was completely flummoxed and hung up!  When he calls back again &#8211; I will tell him that if he tells the FBI, I will tell the CIA&#8230;.and then the SAS&#8230;..and then the KGB!!!!  The sad thing is that they must be getting plenty of victims as they are obviously continuing to call lots of &#8216;less savvy&#8217; people!!  Surely something can be done to stop it!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Country / State / Province Lookup Tables for SQL server by Varun Maggo</title>
		<link>http://www.geospecialling.com/index.php/2009/02/country-state-province-lookup-tables-for-sql-server/comment-page-1/#comment-11818</link>
		<dc:creator>Varun Maggo</dc:creator>
		<pubDate>Thu, 14 Jul 2011 13:07:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.landoris.com/blogs/darrin/index.php/2009/02/country-state-province-lookup-tables-for-sql-server/#comment-11818</guid>
		<description>thanks

Regards
Varun Maggo</description>
		<content:encoded><![CDATA[<p>thanks</p>
<p>Regards<br />
Varun Maggo</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Country / State / Province Lookup Tables for SQL server by Marwan</title>
		<link>http://www.geospecialling.com/index.php/2009/02/country-state-province-lookup-tables-for-sql-server/comment-page-1/#comment-11482</link>
		<dc:creator>Marwan</dc:creator>
		<pubDate>Sun, 19 Jun 2011 11:33:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.landoris.com/blogs/darrin/index.php/2009/02/country-state-province-lookup-tables-for-sql-server/#comment-11482</guid>
		<description>Thanks Alot</description>
		<content:encoded><![CDATA[<p>Thanks Alot</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new breed of scam &#8211; QuickResolve.Net by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/comment-page-1/#comment-11283</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Mon, 30 May 2011 15:32:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/#comment-11283</guid>
		<description>Hi UncleCharlie, thanks for comment!  In the past couple of weeks a ton of people have told me they&#039;ve received the same call.  These guys are probably making a killing off the computer illiterate =[.  As far as ideas - the only thing I could think of was to document my experience here and spam all my friends to get the word out.

As far as the police go, I&#039;m not sure that they are really an option (at least here in Alberta) - these guys were sneaky but I&#039;m not sure they were breaking any laws...</description>
		<content:encoded><![CDATA[<p>Hi UncleCharlie, thanks for comment!  In the past couple of weeks a ton of people have told me they&#8217;ve received the same call.  These guys are probably making a killing off the computer illiterate =[.  As far as ideas &#8211; the only thing I could think of was to document my experience here and spam all my friends to get the word out.</p>
<p>As far as the police go, I&#8217;m not sure that they are really an option (at least here in Alberta) &#8211; these guys were sneaky but I&#8217;m not sure they were breaking any laws&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A new breed of scam &#8211; QuickResolve.Net by UncleCharlie</title>
		<link>http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/comment-page-1/#comment-11258</link>
		<dc:creator>UncleCharlie</dc:creator>
		<pubDate>Sat, 28 May 2011 08:33:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/05/a-new-breed-of-scam-quickresolve-net/#comment-11258</guid>
		<description>Darrin. Thank you so much for publishing your experience. I think this particular bunch of scammers are shooting themselves in the foot. They seem to be over-doing things so much that lots of us who know a bit about these things are getting involved. 

I have had 2 separate occasions where I was onsite helping people with computer problems, updates and training when this gang rang up my customers! I was able to extract a little information about them and shall pass it onto the police. However, the police cybercrime departments seem to be in the process of disappearing into the blue lamp (reference for older readers) and we can&#039;t expect much to happen there. 

By far and away the best thing is for us to spread the word on the Net as often and as clearly as possible. I&#039;m also writing articles in magazines about it for small businesses and clubs. 
Any ideas as to what else to do?</description>
		<content:encoded><![CDATA[<p>Darrin. Thank you so much for publishing your experience. I think this particular bunch of scammers are shooting themselves in the foot. They seem to be over-doing things so much that lots of us who know a bit about these things are getting involved. </p>
<p>I have had 2 separate occasions where I was onsite helping people with computer problems, updates and training when this gang rang up my customers! I was able to extract a little information about them and shall pass it onto the police. However, the police cybercrime departments seem to be in the process of disappearing into the blue lamp (reference for older readers) and we can&#8217;t expect much to happen there. </p>
<p>By far and away the best thing is for us to spread the word on the Net as often and as clearly as possible. I&#8217;m also writing articles in magazines about it for small businesses and clubs.<br />
Any ideas as to what else to do?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating .NET objects for Mapguide XML schema Definitions (XSD) using LINQ by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/comment-page-1/#comment-9815</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Thu, 14 Apr 2011 22:54:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/#comment-9815</guid>
		<description>Hi Reza,

The comment above about dynamic authoring should get you started with adding layers to the map with code.  However, Mapguide itself could be used to display coordinate information without having to write any code at all.</description>
		<content:encoded><![CDATA[<p>Hi Reza,</p>
<p>The comment above about dynamic authoring should get you started with adding layers to the map with code.  However, Mapguide itself could be used to display coordinate information without having to write any code at all.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating .NET objects for Mapguide XML schema Definitions (XSD) using LINQ by Reza</title>
		<link>http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/comment-page-1/#comment-9784</link>
		<dc:creator>Reza</dc:creator>
		<pubDate>Thu, 14 Apr 2011 06:49:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/#comment-9784</guid>
		<description>Hello

I am trying to write a web page that reads coordinates from a database and place them on a map, namely trips. I was wondering whether i could achieve this using MapGuide and C#. As I&#039;m a novice, a sample c# project will definitely help me on this issue.

Please advise.

thank you

Reza</description>
		<content:encoded><![CDATA[<p>Hello</p>
<p>I am trying to write a web page that reads coordinates from a database and place them on a map, namely trips. I was wondering whether i could achieve this using MapGuide and C#. As I&#8217;m a novice, a sample c# project will definitely help me on this issue.</p>
<p>Please advise.</p>
<p>thank you</p>
<p>Reza</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mapguide Enterprise &#8211; Cannot Select Items in DWF and AJAX viewer &#8211; Again by Daniel Go</title>
		<link>http://www.geospecialling.com/index.php/2008/07/mapguide-enterprise-cannot-select-items-in-dwf-and-ajax-viewer-again/comment-page-1/#comment-9736</link>
		<dc:creator>Daniel Go</dc:creator>
		<pubDate>Wed, 13 Apr 2011 09:03:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/07/mapguide-enterprise-cannot-select-items-in-dwf-and-ajax-viewer-again/#comment-9736</guid>
		<description>I had the same problem here! What versions do this problem occur to? How can I modify my version of the program. Oh, i really need this running.</description>
		<content:encoded><![CDATA[<p>I had the same problem here! What versions do this problem occur to? How can I modify my version of the program. Oh, i really need this running.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mapguide Enterprise &#8211; Cannot Select Items in DWF and AJAX viewer &#8211; Again by Greg</title>
		<link>http://www.geospecialling.com/index.php/2008/07/mapguide-enterprise-cannot-select-items-in-dwf-and-ajax-viewer-again/comment-page-1/#comment-9685</link>
		<dc:creator>Greg</dc:creator>
		<pubDate>Tue, 12 Apr 2011 09:05:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/07/mapguide-enterprise-cannot-select-items-in-dwf-and-ajax-viewer-again/#comment-9685</guid>
		<description>&quot;I had another problem with Mapguide Enterprise 2009 recently pertaining to objects not being selectable.&quot;

I agree with you and yeah you really save me from a very big headache.
Thanks</description>
		<content:encoded><![CDATA[<p>&#8220;I had another problem with Mapguide Enterprise 2009 recently pertaining to objects not being selectable.&#8221;</p>
<p>I agree with you and yeah you really save me from a very big headache.<br />
Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a custom notepad for use with FullCircle SmartInk by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2011/02/creating-a-custom-notepad-for-use-with-fullcircle-smartink/comment-page-1/#comment-7392</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Sun, 20 Feb 2011 20:25:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/02/creating-a-custom-notepad-for-use-with-fullcircle-smartink/#comment-7392</guid>
		<description>Thanks for trying out the template Arne, and posting the results!  It looks like the PDF version of the template is pretty jaggy around the image in the top left.  I&#039;m re-working that to try and make it look nicer.  You are right though, the handwriting/ink comes through so clearly...</description>
		<content:encoded><![CDATA[<p>Thanks for trying out the template Arne, and posting the results!  It looks like the PDF version of the template is pretty jaggy around the image in the top left.  I&#8217;m re-working that to try and make it look nicer.  You are right though, the handwriting/ink comes through so clearly&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating a custom notepad for use with FullCircle SmartInk by Arne</title>
		<link>http://www.geospecialling.com/index.php/2011/02/creating-a-custom-notepad-for-use-with-fullcircle-smartink/comment-page-1/#comment-7225</link>
		<dc:creator>Arne</dc:creator>
		<pubDate>Thu, 17 Feb 2011 21:09:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2011/02/creating-a-custom-notepad-for-use-with-fullcircle-smartink/#comment-7225</guid>
		<description>Although I don&#039;t write a lot, I have found digital pens especially handy for signing documents such as NDAs and contracts. You typically get those sent over email, and I used to print them out, sign them and then scan them. I would keep the signed paper version for my records, and attach a PDF of the scan to the reply email. Then I&#039;d also save the PDF where it would be backed up.

With SmartInk, all I do is print them, sign them with the smart pen, and then I automatically have a PDF to attach to my email and a copy is already stored on the server. Probably saves me a good 10 minutes for this one document.

I think some people might not have seen the crispness of the handwriting in the PDF produced with SmartInk, so I used your notepad for this example: http://chasmtech.ca/images/documents/notepad.pdf Try getting that with a scanner!</description>
		<content:encoded><![CDATA[<p>Although I don&#8217;t write a lot, I have found digital pens especially handy for signing documents such as NDAs and contracts. You typically get those sent over email, and I used to print them out, sign them and then scan them. I would keep the signed paper version for my records, and attach a PDF of the scan to the reply email. Then I&#8217;d also save the PDF where it would be backed up.</p>
<p>With SmartInk, all I do is print them, sign them with the smart pen, and then I automatically have a PDF to attach to my email and a copy is already stored on the server. Probably saves me a good 10 minutes for this one document.</p>
<p>I think some people might not have seen the crispness of the handwriting in the PDF produced with SmartInk, so I used your notepad for this example: <a href="http://chasmtech.ca/images/documents/notepad.pdf" rel="nofollow">http://chasmtech.ca/images/documents/notepad.pdf</a> Try getting that with a scanner!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finally an Oracle x64 client that works on Vista &#8211; AKA Getting Map 2010 x64 running with Oracle&#8230; by Installing AutoCAD Map 3D 2011 x86 on Vista x64 &#171; Geospecialling</title>
		<link>http://www.geospecialling.com/index.php/2009/05/finally-an-oracle-x64-client-that-works-on-vista-aka-getting-map-2010-x64-running-with-oracle/comment-page-1/#comment-7038</link>
		<dc:creator>Installing AutoCAD Map 3D 2011 x86 on Vista x64 &#171; Geospecialling</dc:creator>
		<pubDate>Tue, 01 Feb 2011 05:06:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.landoris.com/blogs/darrin/index.php/2009/05/finally-an-oracle-x64-client-that-works-on-vista-aka-getting-map-2010-x64-running-with-oracle/#comment-7038</guid>
		<description>[...] ago I gave up trying to get both the 64 and 32 bit Oracle clients working on Vista x64.&#160; I have for now adopted the approach that if it talks to Oracle – it needs to be 32 [...]</description>
		<content:encoded><![CDATA[<p>[...] ago I gave up trying to get both the 64 and 32 bit Oracle clients working on Vista x64.&#160; I have for now adopted the approach that if it talks to Oracle – it needs to be 32 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RADE Milestone &#8211; Object Relational Mapping with NHibernate by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2008/07/rade-milestone-object-relational-mapping-with-nhibernate/comment-page-1/#comment-6318</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Fri, 12 Nov 2010 21:42:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/07/rade-milestone-object-relational-mapping-with-nhibernate/#comment-6318</guid>
		<description>Well its been a couple of years since I wrote this - and I&#039;m totally happy with my choice to switch to C#.  All new code is done in C#, but I still have a ton of code in VB.  Each time I need to work on a chunk of VB code, I decide whether to patch the VB or invest the time to re-write it in C#. I can&#039;t explain it - but working in VB actually makes me a little sad now.  Maybe its just nice to change things once and a while?  

I&#039;m completely in love with ReSharper - which had/has more complete support for C# (though I believe they&#039;re adding VB support more and more).   Finally, It seems to be easier to find new team members because the C syntax is so prevalent.  

Rather than jumping ship completely - try using C# on a new library or small project.   I used to use the online &lt;a href=&quot;http://www.developerfusion.com/tools/convert/vb-to-csharp/&quot; rel=&quot;nofollow&quot;&gt;VB.NET to C# conversion tool&lt;/a&gt; a LOT - even now I&#039;ll take an entire class of VB and convert it to C# and see how much good code I can pull out of the VB - at the very least you can get your event handlers and stuff moved over pretty quickly.  (ReSharper really comes in handy refactoring this converted code)

hope that helps =)</description>
		<content:encoded><![CDATA[<p>Well its been a couple of years since I wrote this &#8211; and I&#8217;m totally happy with my choice to switch to C#.  All new code is done in C#, but I still have a ton of code in VB.  Each time I need to work on a chunk of VB code, I decide whether to patch the VB or invest the time to re-write it in C#. I can&#8217;t explain it &#8211; but working in VB actually makes me a little sad now.  Maybe its just nice to change things once and a while?  </p>
<p>I&#8217;m completely in love with ReSharper &#8211; which had/has more complete support for C# (though I believe they&#8217;re adding VB support more and more).   Finally, It seems to be easier to find new team members because the C syntax is so prevalent.  </p>
<p>Rather than jumping ship completely &#8211; try using C# on a new library or small project.   I used to use the online <a href="http://www.developerfusion.com/tools/convert/vb-to-csharp/" rel="nofollow">VB.NET to C# conversion tool</a> a LOT &#8211; even now I&#8217;ll take an entire class of VB and convert it to C# and see how much good code I can pull out of the VB &#8211; at the very least you can get your event handlers and stuff moved over pretty quickly.  (ReSharper really comes in handy refactoring this converted code)</p>
<p>hope that helps =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RADE Milestone &#8211; Object Relational Mapping with NHibernate by Sierk</title>
		<link>http://www.geospecialling.com/index.php/2008/07/rade-milestone-object-relational-mapping-with-nhibernate/comment-page-1/#comment-6316</link>
		<dc:creator>Sierk</dc:creator>
		<pubDate>Fri, 12 Nov 2010 19:45:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/07/rade-milestone-object-relational-mapping-with-nhibernate/#comment-6316</guid>
		<description>I know the feeling; my problem is that VB.NET is my strength and C# is not.  So if I work in VB I spend a ton of time looking for examples and if I work in C# I spent time as well, just figuring out syntax and such.  It’s like being between a rock and a hard place.  I have considered making the jump but VB is sooo comfortable right now :)  Aside from programming preferences and availability of samples would you suggest other compelling reasons for switching from C# to VB?</description>
		<content:encoded><![CDATA[<p>I know the feeling; my problem is that VB.NET is my strength and C# is not.  So if I work in VB I spend a ton of time looking for examples and if I work in C# I spent time as well, just figuring out syntax and such.  It’s like being between a rock and a hard place.  I have considered making the jump but VB is sooo comfortable right now <img src='http://www.geospecialling.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   Aside from programming preferences and availability of samples would you suggest other compelling reasons for switching from C# to VB?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Finally an Oracle x64 client that works on Vista &#8211; AKA Getting Map 2010 x64 running with Oracle&#8230; by Oracle Data Provider for .Net &#171; Nathan</title>
		<link>http://www.geospecialling.com/index.php/2009/05/finally-an-oracle-x64-client-that-works-on-vista-aka-getting-map-2010-x64-running-with-oracle/comment-page-1/#comment-6255</link>
		<dc:creator>Oracle Data Provider for .Net &#171; Nathan</dc:creator>
		<pubDate>Thu, 04 Nov 2010 14:02:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.landoris.com/blogs/darrin/index.php/2009/05/finally-an-oracle-x64-client-that-works-on-vista-aka-getting-map-2010-x64-running-with-oracle/#comment-6255</guid>
		<description>[...] Finally an Oracle x64 client that works on Vista – AKA Getting Map 2010 x64 running with Oracle… [...]</description>
		<content:encoded><![CDATA[<p>[...] Finally an Oracle x64 client that works on Vista – AKA Getting Map 2010 x64 running with Oracle… [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mapguide 2011 Javascript error &#8216;OpenLayers.Lang&#8217; is null or not an object by badmash</title>
		<link>http://www.geospecialling.com/index.php/2010/07/mapguide-2011-javascript-error-openlayers-lang-is-null-or-not-an-object/comment-page-1/#comment-6078</link>
		<dc:creator>badmash</dc:creator>
		<pubDate>Sat, 23 Oct 2010 05:36:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/07/mapguide-2011-javascript-error-openlayers-lang-is-null-or-not-an-object/#comment-6078</guid>
		<description>I just signed up to your blogs rss feed. Will you post more on this subject?</description>
		<content:encoded><![CDATA[<p>I just signed up to your blogs rss feed. Will you post more on this subject?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Effortlessly map domain and DTO entities by roclafamilia</title>
		<link>http://www.geospecialling.com/index.php/2010/06/effortlessly-map-domain-and-dto-entities/comment-page-1/#comment-6042</link>
		<dc:creator>roclafamilia</dc:creator>
		<pubDate>Thu, 21 Oct 2010 15:16:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/06/effortlessly-map-domain-and-dto-entities/#comment-6042</guid>
		<description>Helpful blog, bookmarked the website with hopes to read more!</description>
		<content:encoded><![CDATA[<p>Helpful blog, bookmarked the website with hopes to read more!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Authoring in Mapguide Enterprise &#8211; Before the Viewer has Loaded by zerodtkjoe</title>
		<link>http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/comment-page-1/#comment-6008</link>
		<dc:creator>zerodtkjoe</dc:creator>
		<pubDate>Wed, 20 Oct 2010 10:19:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/#comment-6008</guid>
		<description>Thanks for the info</description>
		<content:encoded><![CDATA[<p>Thanks for the info</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Authoring in Mapguide Enterprise &#8211; Before the Viewer has Loaded by kiran</title>
		<link>http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/comment-page-1/#comment-5725</link>
		<dc:creator>kiran</dc:creator>
		<pubDate>Wed, 29 Sep 2010 10:31:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/#comment-5725</guid>
		<description>Hi sir, 
 
       I am Kiran, i also need the same requirement as sudha ask to you, I understood what you reply. I have one question, upto now i am using the mapguide studio for creating packages and call those packages to the program. can&#039;t we create a package with out help of either maestro or mapguide studio? i want create the entire package through programmatically if is there chace for it please help to me.</description>
		<content:encoded><![CDATA[<p>Hi sir, </p>
<p>       I am Kiran, i also need the same requirement as sudha ask to you, I understood what you reply. I have one question, upto now i am using the mapguide studio for creating packages and call those packages to the program. can&#8217;t we create a package with out help of either maestro or mapguide studio? i want create the entire package through programmatically if is there chace for it please help to me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Authoring in Mapguide Enterprise &#8211; Before the Viewer has Loaded by sudha</title>
		<link>http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/comment-page-1/#comment-5700</link>
		<dc:creator>sudha</dc:creator>
		<pubDate>Mon, 27 Sep 2010 07:15:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/#comment-5700</guid>
		<description>Hi Sir,
Thanks for your support.

I understood that.But if  we 50 servers(data for 50 cities in each location).we have to create 50 mapguide packages.right?it is so hard.So what i think is, is there any option for create temporary feature source that connect to oracle ? so that we can modify it temporarily as per user request.
am i thinking in right way?please guide me.</description>
		<content:encoded><![CDATA[<p>Hi Sir,<br />
Thanks for your support.</p>
<p>I understood that.But if  we 50 servers(data for 50 cities in each location).we have to create 50 mapguide packages.right?it is so hard.So what i think is, is there any option for create temporary feature source that connect to oracle ? so that we can modify it temporarily as per user request.<br />
am i thinking in right way?please guide me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Authoring in Mapguide Enterprise &#8211; Before the Viewer has Loaded by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/comment-page-1/#comment-5665</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Fri, 24 Sep 2010 15:31:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/#comment-5665</guid>
		<description>Hi sidha,

So if I understand this right, you have multiple Oracle database servers, a single Mapguide web tier.  You want to be able to select the mapping data based on let&#039;s say a dropdown that lets users choose the location (Washington, California, Florida).  

The first thing that comes to mind is this.  Create three Data Connections in Mapguide - one for each Oracle server.  If all three data sources have the same layers and data you could create a single set of layers, and a single Map and Layout.  As the user changes the location in the application you could modify and rebuild the runtime MgMap to change each of the layers to use the appropriate Oracle Data Connection.  Then save the updated map to the session.  

If the layers are different for each area, you could create a number of folders in the library repository that contain the layers for each location.  When the user changes the location you could iterate through the layers in each folder recursively and add each layer to the runtime map, again saving the updated MgMap into the session repository. 

Finally, you could also create a full set of resources for each area - Map with &quot;hard authored&quot; layers.  Then as the user switches locations you could simply change the map that is being used in the session and save it.  This would likely be the easiest solution both programmatically and probably from an authoring point of view as well.

hope that helps.</description>
		<content:encoded><![CDATA[<p>Hi sidha,</p>
<p>So if I understand this right, you have multiple Oracle database servers, a single Mapguide web tier.  You want to be able to select the mapping data based on let&#8217;s say a dropdown that lets users choose the location (Washington, California, Florida).  </p>
<p>The first thing that comes to mind is this.  Create three Data Connections in Mapguide &#8211; one for each Oracle server.  If all three data sources have the same layers and data you could create a single set of layers, and a single Map and Layout.  As the user changes the location in the application you could modify and rebuild the runtime MgMap to change each of the layers to use the appropriate Oracle Data Connection.  Then save the updated map to the session.  </p>
<p>If the layers are different for each area, you could create a number of folders in the library repository that contain the layers for each location.  When the user changes the location you could iterate through the layers in each folder recursively and add each layer to the runtime map, again saving the updated MgMap into the session repository. </p>
<p>Finally, you could also create a full set of resources for each area &#8211; Map with &#8220;hard authored&#8221; layers.  Then as the user switches locations you could simply change the map that is being used in the session and save it.  This would likely be the easiest solution both programmatically and probably from an authoring point of view as well.</p>
<p>hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Authoring in Mapguide Enterprise &#8211; Before the Viewer has Loaded by sudha</title>
		<link>http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/comment-page-1/#comment-5660</link>
		<dc:creator>sudha</dc:creator>
		<pubDate>Fri, 24 Sep 2010 03:59:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/#comment-5660</guid>
		<description>Hi Sir,
Thank you very much for your reply.Now i will explain my requirements.

we have oracle data base at differenet servers (server1(contains washington data),server2(contains california data),server3(contains florida data)).i want to display the one of these data on the mapguide viewer based on selection(suppose if i select  washington the washington data must be appeared on the map from server1).similarly if i select florida,florida data must be loaded on the map from server 2.and so on..........

So for this i think we can&#039;t create packages.right?  i think we have to connect to the database server dynamicallay from our application to retrieve the spatial data.Please let me know for the solution.if i missing something please let me know.</description>
		<content:encoded><![CDATA[<p>Hi Sir,<br />
Thank you very much for your reply.Now i will explain my requirements.</p>
<p>we have oracle data base at differenet servers (server1(contains washington data),server2(contains california data),server3(contains florida data)).i want to display the one of these data on the mapguide viewer based on selection(suppose if i select  washington the washington data must be appeared on the map from server1).similarly if i select florida,florida data must be loaded on the map from server 2.and so on&#8230;&#8230;&#8230;.</p>
<p>So for this i think we can&#8217;t create packages.right?  i think we have to connect to the database server dynamicallay from our application to retrieve the spatial data.Please let me know for the solution.if i missing something please let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Authoring in Mapguide Enterprise &#8211; Before the Viewer has Loaded by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/comment-page-1/#comment-5654</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Thu, 23 Sep 2010 15:08:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/#comment-5654</guid>
		<description>Hi sudha,

I&#039;m not sure I can explain the process any better.  You&#039;ll need to take the code and adapt it for your specific needs.  Take for example one of our products RADE.  We store information about the available layers in the RADE configuration database.  When a user loads an application for the first time, we check for layers that have been marked as &quot;base&quot; meaning these layers need to be dynamically added to the map at runtime.  We then loop through these layers and add the appropriate resources to the map using code very similar to what is published here.  

So you&#039;ll need to look at the code and figure out the best way to remove the hard coded references - replacing them with your own specific resources.

hope that helps!</description>
		<content:encoded><![CDATA[<p>Hi sudha,</p>
<p>I&#8217;m not sure I can explain the process any better.  You&#8217;ll need to take the code and adapt it for your specific needs.  Take for example one of our products RADE.  We store information about the available layers in the RADE configuration database.  When a user loads an application for the first time, we check for layers that have been marked as &#8220;base&#8221; meaning these layers need to be dynamically added to the map at runtime.  We then loop through these layers and add the appropriate resources to the map using code very similar to what is published here.  </p>
<p>So you&#8217;ll need to look at the code and figure out the best way to remove the hard coded references &#8211; replacing them with your own specific resources.</p>
<p>hope that helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Authoring in Mapguide Enterprise &#8211; Before the Viewer has Loaded by sudha</title>
		<link>http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/comment-page-1/#comment-5651</link>
		<dc:creator>sudha</dc:creator>
		<pubDate>Thu, 23 Sep 2010 05:54:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/#comment-5651</guid>
		<description>Hi sir,
Thank you very much for your reply.i Succeeded to run the sample application given by you.

Now i want to create the dynamic authoring for my own data.can you please explain the application overview how to develop this application for my data?

Actually my requirement is we have oracle database at central server.i want to load the layers on the fly and want to display on the internet.is dynamic authoring is useful for me?Please let me know.</description>
		<content:encoded><![CDATA[<p>Hi sir,<br />
Thank you very much for your reply.i Succeeded to run the sample application given by you.</p>
<p>Now i want to create the dynamic authoring for my own data.can you please explain the application overview how to develop this application for my data?</p>
<p>Actually my requirement is we have oracle database at central server.i want to load the layers on the fly and want to display on the internet.is dynamic authoring is useful for me?Please let me know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Authoring in Mapguide Enterprise &#8211; Before the Viewer has Loaded by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/comment-page-1/#comment-5635</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Tue, 21 Sep 2010 14:03:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/#comment-5635</guid>
		<description>Hi sudha,
This sample was created using the .Net objects for Mapguide 2009.  You will need to follow the steps outlined in http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/ but use the Mapguide 2010 XSD files instead.  Alternately, you could upgrade your environment to be .NET 4.0, Visual Studio 2010, and Mapguide 2011 and you could use the most recent build of the .Net Objects, for Mapguide 2011 http://www.geospecialling.com/index.php/2010/07/creating-net-objects-for-mapguide-enterprise-2011/  Hope that helps.</description>
		<content:encoded><![CDATA[<p>Hi sudha,<br />
This sample was created using the .Net objects for Mapguide 2009.  You will need to follow the steps outlined in <a href="http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/" rel="nofollow">http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/</a> but use the Mapguide 2010 XSD files instead.  Alternately, you could upgrade your environment to be .NET 4.0, Visual Studio 2010, and Mapguide 2011 and you could use the most recent build of the .Net Objects, for Mapguide 2011 <a href="http://www.geospecialling.com/index.php/2010/07/creating-net-objects-for-mapguide-enterprise-2011/" rel="nofollow">http://www.geospecialling.com/index.php/2010/07/creating-net-objects-for-mapguide-enterprise-2011/</a>  Hope that helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Dynamic Authoring in Mapguide Enterprise &#8211; Before the Viewer has Loaded by sudha</title>
		<link>http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/comment-page-1/#comment-5631</link>
		<dc:creator>sudha</dc:creator>
		<pubDate>Tue, 21 Sep 2010 06:20:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/#comment-5631</guid>
		<description>Hi Sir,
iam planning to use this sample provided by you in my mapguide 2010 application with vs 2005. But there is some dll version problem is coming.can you please explain where i need to change your application?</description>
		<content:encoded><![CDATA[<p>Hi Sir,<br />
iam planning to use this sample provided by you in my mapguide 2010 application with vs 2005. But there is some dll version problem is coming.can you please explain where i need to change your application?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating .NET objects for Mapguide XML schema Definitions (XSD) using LINQ by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/comment-page-1/#comment-5594</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Fri, 17 Sep 2010 17:48:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/#comment-5594</guid>
		<description>Hi otman, you can find the examples here http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/

They&#039;re a little dated - but I&#039;ve had pretty good results with that code using Mapguide Enterprise 2011 - you will need to upgrade the .NET objects though.  That post and code can be found here http://www.geospecialling.com/index.php/2010/07/creating-net-objects-for-mapguide-enterprise-2011/</description>
		<content:encoded><![CDATA[<p>Hi otman, you can find the examples here <a href="http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/" rel="nofollow">http://www.geospecialling.com/index.php/2008/05/dynamic-authoring-in-mapguide-enterprise-before-the-viewer-has-loaded/</a></p>
<p>They&#8217;re a little dated &#8211; but I&#8217;ve had pretty good results with that code using Mapguide Enterprise 2011 &#8211; you will need to upgrade the .NET objects though.  That post and code can be found here <a href="http://www.geospecialling.com/index.php/2010/07/creating-net-objects-for-mapguide-enterprise-2011/" rel="nofollow">http://www.geospecialling.com/index.php/2010/07/creating-net-objects-for-mapguide-enterprise-2011/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating .NET objects for Mapguide XML schema Definitions (XSD) using LINQ by otman</title>
		<link>http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/comment-page-1/#comment-5593</link>
		<dc:creator>otman</dc:creator>
		<pubDate>Fri, 17 Sep 2010 17:44:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/#comment-5593</guid>
		<description>where is the examples ?</description>
		<content:encoded><![CDATA[<p>where is the examples ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Creating .NET objects for Mapguide XML schema Definitions (XSD) using LINQ by otman</title>
		<link>http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/comment-page-1/#comment-5591</link>
		<dc:creator>otman</dc:creator>
		<pubDate>Fri, 17 Sep 2010 17:30:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/creating-net-objects-for-mapguide-xml-schema-definitions-xsd-using-linq/#comment-5591</guid>
		<description>Hi,
thank you for your publication</description>
		<content:encoded><![CDATA[<p>Hi,<br />
thank you for your publication</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Manually configure Mapguide 2009 Web Tier on Vista x64 IIS7 by davenycity</title>
		<link>http://www.geospecialling.com/index.php/2008/05/manually-configure-mapguide-2009-web-tier-on-vista-x64-iis7/comment-page-1/#comment-5570</link>
		<dc:creator>davenycity</dc:creator>
		<pubDate>Wed, 15 Sep 2010 07:12:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/05/manually-configure-mapguide-2009-web-tier-on-vista-x64-iis7/#comment-5570</guid>
		<description>great blog thank you</description>
		<content:encoded><![CDATA[<p>great blog thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Mapguide 2011 Javascript error &#8216;OpenLayers.Lang&#8217; is null or not an object by Creating .NET objects for Mapguide Enterprise 2011 &#171; Geospecialling</title>
		<link>http://www.geospecialling.com/index.php/2010/07/mapguide-2011-javascript-error-openlayers-lang-is-null-or-not-an-object/comment-page-1/#comment-5243</link>
		<dc:creator>Creating .NET objects for Mapguide Enterprise 2011 &#171; Geospecialling</dc:creator>
		<pubDate>Sun, 25 Jul 2010 05:15:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/07/mapguide-2011-javascript-error-openlayers-lang-is-null-or-not-an-object/#comment-5243</guid>
		<description>[...] 3 week gap here, wherein I had a hell of a time getting MGE 2011 installed and properly licensed so that I could actually test this newly created code, oh and I also went on vacation for a few [...]</description>
		<content:encoded><![CDATA[<p>[...] 3 week gap here, wherein I had a hell of a time getting MGE 2011 installed and properly licensed so that I could actually test this newly created code, oh and I also went on vacation for a few [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RADE &#8211; Build custom web applications, without writing custom code by Mapguide 2011 Javascript error &#8216;OpenLayers.Lang&#8217; is null or not an object &#171; Geospecialling</title>
		<link>http://www.geospecialling.com/index.php/2008/06/rade-build-custom-web-applications-without-writing-custom-code/comment-page-1/#comment-5223</link>
		<dc:creator>Mapguide 2011 Javascript error &#8216;OpenLayers.Lang&#8217; is null or not an object &#171; Geospecialling</dc:creator>
		<pubDate>Wed, 21 Jul 2010 04:33:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/06/rade-build-custom-web-applications-without-writing-custom-code/#comment-5223</guid>
		<description>[...] finally moved Mapguide Enterprise support back up the list of priorities for RADE =)&#160; The ability to add Google, Yahoo, and Bing data into the map with OpenLayers is very [...]</description>
		<content:encoded><![CDATA[<p>[...] finally moved Mapguide Enterprise support back up the list of priorities for RADE =)&#160; The ability to add Google, Yahoo, and Bing data into the map with OpenLayers is very [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on No catapults allowed in carry-on or checked luggage by Tweets that mention No catapults allowed in carry-on or checked luggage « Geospecialling -- Topsy.com</title>
		<link>http://www.geospecialling.com/index.php/2010/04/no-catapults-allowed-in-carry-on-or-checked-luggage/comment-page-1/#comment-4699</link>
		<dc:creator>Tweets that mention No catapults allowed in carry-on or checked luggage « Geospecialling -- Topsy.com</dc:creator>
		<pubDate>Wed, 05 May 2010 22:21:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/04/no-catapults-allowed-in-carry-on-or-checked-luggage/#comment-4699</guid>
		<description>[...] This post was mentioned on Twitter by Darrin Maidlow. Darrin Maidlow said: No catapults allowed in your checked or carry on luggage when flying. http://bit.ly/cd6MTv [...]</description>
		<content:encoded><![CDATA[<p>[...] This post was mentioned on Twitter by Darrin Maidlow. Darrin Maidlow said: No catapults allowed in your checked or carry on luggage when flying. <a href="http://bit.ly/cd6MTv" rel="nofollow">http://bit.ly/cd6MTv</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on RADE &#8211; Build custom web applications, without writing custom code by Please be specific when talking to your developers &#171; Geospecialling</title>
		<link>http://www.geospecialling.com/index.php/2008/06/rade-build-custom-web-applications-without-writing-custom-code/comment-page-1/#comment-4641</link>
		<dc:creator>Please be specific when talking to your developers &#171; Geospecialling</dc:creator>
		<pubDate>Wed, 28 Apr 2010 22:54:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/06/rade-build-custom-web-applications-without-writing-custom-code/#comment-4641</guid>
		<description>[...] the RADE tabular reports we have the ability to format the output of a column using a standard String.Format [...]</description>
		<content:encoded><![CDATA[<p>[...] the RADE tabular reports we have the ability to format the output of a column using a standard String.Format [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Deployment project crashes on execution with .NET version error by Alex Brown</title>
		<link>http://www.geospecialling.com/index.php/2010/04/deployment-project-crashes-on-execution-with-net-version-error/comment-page-1/#comment-4617</link>
		<dc:creator>Alex Brown</dc:creator>
		<pubDate>Mon, 26 Apr 2010 10:50:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/04/deployment-project-crashes-on-execution-with-net-version-error/#comment-4617</guid>
		<description>Just came across this!
I had exactly the same problem. I think they&#039;re should have been more documentation on this!

I blogged about it too:
http://www.alexjamesbrown.com/geek/deploying-net-4-project-error-1001-system-badimageformatexception/</description>
		<content:encoded><![CDATA[<p>Just came across this!<br />
I had exactly the same problem. I think they&#8217;re should have been more documentation on this!</p>
<p>I blogged about it too:<br />
<a href="http://www.alexjamesbrown.com/geek/deploying-net-4-project-error-1001-system-badimageformatexception/" rel="nofollow">http://www.alexjamesbrown.com/geek/deploying-net-4-project-error-1001-system-badimageformatexception/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Who owns the most servers by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2010/04/who-owns-the-most-servers/comment-page-1/#comment-4565</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Fri, 23 Apr 2010 21:06:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/04/who-owns-the-most-servers/#comment-4565</guid>
		<description>When are you guys gonna jump on the container based data center bandwagon? =)</description>
		<content:encoded><![CDATA[<p>When are you guys gonna jump on the container based data center bandwagon? =)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Who owns the most servers by jason</title>
		<link>http://www.geospecialling.com/index.php/2010/04/who-owns-the-most-servers/comment-page-1/#comment-4564</link>
		<dc:creator>jason</dc:creator>
		<pubDate>Fri, 23 Apr 2010 20:58:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/04/who-owns-the-most-servers/#comment-4564</guid>
		<description>WOW I couldn&#039;t imagine 100K servers!!</description>
		<content:encoded><![CDATA[<p>WOW I couldn&#8217;t imagine 100K servers!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Oracle.DataAccess version numbers in a .NET config file by GB FL</title>
		<link>http://www.geospecialling.com/index.php/2010/03/oracle-dataaccess-version-numbers-in-a-net-config-file/comment-page-1/#comment-4500</link>
		<dc:creator>GB FL</dc:creator>
		<pubDate>Sun, 18 Apr 2010 00:11:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/03/oracle-dataaccess-version-numbers-in-a-net-config-file/#comment-4500</guid>
		<description>Thanks - that resolved the problem for me.</description>
		<content:encoded><![CDATA[<p>Thanks &#8211; that resolved the problem for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A concerned resident called police&#8230; by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2010/04/a-concerned-resident-called-police/comment-page-1/#comment-4410</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Fri, 09 Apr 2010 17:15:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/04/a-concerned-resident-called-police/#comment-4410</guid>
		<description>This whole St. Albert vs low incoming thing is going kindof crazy...Anyhow, I&#039;m for more Storm Troopers in St. Albert.  I am considering running for mayor on that platform...</description>
		<content:encoded><![CDATA[<p>This whole St. Albert vs low incoming thing is going kindof crazy&#8230;Anyhow, I&#8217;m for more Storm Troopers in St. Albert.  I am considering running for mayor on that platform&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A concerned resident called police&#8230; by WinterPeg</title>
		<link>http://www.geospecialling.com/index.php/2010/04/a-concerned-resident-called-police/comment-page-1/#comment-4409</link>
		<dc:creator>WinterPeg</dc:creator>
		<pubDate>Fri, 09 Apr 2010 17:10:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2010/04/a-concerned-resident-called-police/#comment-4409</guid>
		<description>St.Albert really should watch out for those low-earning Storm Troopers. I heard that Red Deer brought some in to help support their policing efforts and the city went to hell. 

Keep St.Albert an above-average-income city.</description>
		<content:encoded><![CDATA[<p>St.Albert really should watch out for those low-earning Storm Troopers. I heard that Red Deer brought some in to help support their policing efforts and the city went to hell. </p>
<p>Keep St.Albert an above-average-income city.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ReSharper &#8211; A Class Creating Machine by ReSharper 5.0 is coming! &#171; Geospecialling</title>
		<link>http://www.geospecialling.com/index.php/2008/07/resharper-a-class-creating-machine/comment-page-1/#comment-4380</link>
		<dc:creator>ReSharper 5.0 is coming! &#171; Geospecialling</dc:creator>
		<pubDate>Fri, 02 Apr 2010 23:33:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.geospecialling.com/index.php/2008/07/resharper-a-class-creating-machine/#comment-4380</guid>
		<description>[...] I’ve mentioned ReSharper in the past – but I had to bring it up again..&#160; Version 5 has some great new functionality [...]</description>
		<content:encoded><![CDATA[<p>[...] I’ve mentioned ReSharper in the past – but I had to bring it up again..&#160; Version 5 has some great new functionality [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Geospecialling v2.0 and an introduction to FullCircle by Darrin Maidlow</title>
		<link>http://www.geospecialling.com/index.php/2009/02/geospecialling-v20-and-a-an-introduction-to-fullcircle/comment-page-1/#comment-2</link>
		<dc:creator>Darrin Maidlow</dc:creator>
		<pubDate>Wed, 11 Mar 2009 04:05:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.landoris.com/blogs/darrin/index.php/2009/02/geospecialling-v20-and-a-an-introduction-to-fullcircle/#comment-2</guid>
		<description>Hi, I&#039;m glad you found my post helpful.  Unfortunately I don&#039;t have VS 2005 installed anymore so I couldn&#039;t play around with this.  You are correct LINQ requires .NET 3.5, and as you mentioned 2005 will not let you target this version of the framework.  Unfortunately - this was the first, and only way I have found that would generate objects/XML in this way (for me).  Granted, once I got this working I did stop looking =)

That said - it should be possible to take the object skeleton created by LINQ and clean that up to remove the LINQ&#039;isms - then one could write their own XML factory.  Eliminating LINQ would actually be quite nice - but I didn&#039;t have time to go that far.</description>
		<content:encoded><![CDATA[<p>Hi, I&#8217;m glad you found my post helpful.  Unfortunately I don&#8217;t have VS 2005 installed anymore so I couldn&#8217;t play around with this.  You are correct LINQ requires .NET 3.5, and as you mentioned 2005 will not let you target this version of the framework.  Unfortunately &#8211; this was the first, and only way I have found that would generate objects/XML in this way (for me).  Granted, once I got this working I did stop looking =)</p>
<p>That said &#8211; it should be possible to take the object skeleton created by LINQ and clean that up to remove the LINQ&#8217;isms &#8211; then one could write their own XML factory.  Eliminating LINQ would actually be quite nice &#8211; but I didn&#8217;t have time to go that far.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Geospecialling v2.0 and an introduction to FullCircle by Smitha</title>
		<link>http://www.geospecialling.com/index.php/2009/02/geospecialling-v20-and-a-an-introduction-to-fullcircle/comment-page-1/#comment-1</link>
		<dc:creator>Smitha</dc:creator>
		<pubDate>Thu, 05 Mar 2009 19:08:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.landoris.com/blogs/darrin/index.php/2009/02/geospecialling-v20-and-a-an-introduction-to-fullcircle/#comment-1</guid>
		<description>This is a comment for your &quot;Creating .NET Objects for Mapguide XML schema Definitions (XSD) using LINQ&quot; and &quot;Dynamic Authoring in Mapguide Enterprise - Before the Viewer has Loaded&quot; blog in your previous site since I did not find a comment link there...
I found these articles extremely useful. Thanks for writing it up. However I am still using VS2005. Do you have any tips on how I can create .NET objects with VS2005 since LINQ requires VS 2008? Thanks.</description>
		<content:encoded><![CDATA[<p>This is a comment for your &#8220;Creating .NET Objects for Mapguide XML schema Definitions (XSD) using LINQ&#8221; and &#8220;Dynamic Authoring in Mapguide Enterprise &#8211; Before the Viewer has Loaded&#8221; blog in your previous site since I did not find a comment link there&#8230;<br />
I found these articles extremely useful. Thanks for writing it up. However I am still using VS2005. Do you have any tips on how I can create .NET objects with VS2005 since LINQ requires VS 2008? Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

