<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: layer workspace path points to a .sde file that doesn't exist, yet the layer still draws in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288836#M22393</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rebecca:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you really need to restore such old port 5151 connections?&amp;nbsp; In order to make your life easier (less coding) you might think about just resourcing direct connections and let endusers resource the older port 5151 connections themselves with the Set Data Source tool available in ArcCatalog.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Aug 2015 20:29:01 GMT</pubDate>
    <dc:creator>MichaelVolz</dc:creator>
    <dc:date>2015-08-24T20:29:01Z</dc:date>
    <item>
      <title>layer workspace path points to a .sde file that doesn't exist, yet the layer still draws</title>
      <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288827#M22384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've been working with a .mxd that has some broken links.&amp;nbsp; I have been using the following python to print the workspace path for each layer:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt; for lyr in arcpy.mapping.ListLayers(mxd):&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.supports("workspacePath"):&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; source = lyr.workspacePath&lt;/P&gt;&lt;P&gt;...&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "%s -&amp;gt; %s" % (lyr, source)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found that layers do successfully get drawn and their data source is correct in arc map even if the workspacePath points to a .sde file that doesn't exist on the machine.&amp;nbsp; If the links aren't broken, then there's no need to fix them; but I'm curious how ArcMap is able to find the data in sde if the layer workspacePath is not correct.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 17:22:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288827#M22384</guid>
      <dc:creator>TheodoreRakel</dc:creator>
      <dc:date>2015-08-24T17:22:12Z</dc:date>
    </item>
    <item>
      <title>Re: layer workspace path points to a .sde file that doesn't exist, yet the layer still draws</title>
      <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288828#M22385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are they ".lyr" files that are drawing? I haven't looked this up yet, but I've been suspicious for a while that ".lyr" files are saved as part of the map document.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 17:25:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288828#M22385</guid>
      <dc:creator>WesMiller</dc:creator>
      <dc:date>2015-08-24T17:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: layer workspace path points to a .sde file that doesn't exist, yet the layer still draws</title>
      <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288829#M22386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, they are not .lyr files.&amp;nbsp; They are feature classes in SDE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 17:28:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288829#M22386</guid>
      <dc:creator>TheodoreRakel</dc:creator>
      <dc:date>2015-08-24T17:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: layer workspace path points to a .sde file that doesn't exist, yet the layer still draws</title>
      <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288830#M22387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've been running in to the same thing/question.&amp;nbsp; I've been finding that the credentials to the sde are stored in the mxd and it seems to ignore the actual .sde file.&amp;nbsp; It makes it a little more difficult to update the sde connection with python, but it is possible (I'm working on it myself, and have had some success).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just fyi - AGS services can also have unique needs when replacing connections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.esri.com/migrated-users/153740" target="_blank"&gt;Theodore Rakel&lt;/A&gt;&amp;nbsp;&amp;nbsp; Here is a test you can try to test what I'm trying to say above.&amp;nbsp; First, make sure you have you mxd backed up.&amp;nbsp; Open the mxd, and to make it easier, copy the sde layer (in the TOC) and move it to the top....this will make the layer in the list [0].&amp;nbsp; Then go thru the commands listed below one by one ....make sure to note the place you need to "fix" the source manually.&amp;nbsp; This is one of the processes I have bee using to help figure out the issue.&amp;nbsp; I hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
mxd = arcpy.mapping.MapDocument("CURRENT")
dfs = arcpy.mapping.ListDataFrames(mxd)
lyrList = arcpy.mapping.ListLayers(mxd)
lyr = lyrList[0]
lyr.isBroken
lyr.dataSource
lyr.name
lyr.isBroken

# manually fix the source now

lyr.dataSource
lyr.name
lyr.name = lyr.datasetName
lyr.name&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 13:57:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288830#M22387</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2021-12-11T13:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: layer workspace path points to a .sde file that doesn't exist, yet the layer still draws</title>
      <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288831#M22388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What you are running into is expected behavior.&amp;nbsp; Prior to ArcGIS 10.1, how an SDE connection file was accessed when first loading data determined whether the connection information was embedded in the map document or referenced in the map document:&amp;nbsp; &lt;A href="http://support.esri.com/es/knowledgebase/techarticles/detail/40087"&gt;Bug:&amp;nbsp; SDE connection information is not preserved in an MXD if a Universal Naming Convention (UNC) path is used.&lt;/A&gt;&amp;nbsp; The issue was "addressed" in ArcGIS 10.0 SP5 and ArcGIS 10.1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;Personally, I disagreed and continue to disagree that it was a bug that needed to be fixed.&amp;nbsp; The embedded vs. referenced behavior was around since the ArcGIS 8.x days, even though the aforementioned KB only covers back to 9.1.&amp;nbsp; Allowing for SDE connections to be referenced instead of embedded allowed for flexibility in managing large swathes of SDE layers, but I guess it was too complicated for most users to get their head around.&amp;nbsp; Alas, everything was changed to embedded.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now that SDE connection properties are embedded, it is important to always use/check the embedded properties in the map document and not use a Describe object to look up the connection properties of an SDE connection file referenced with the workspacePath.&amp;nbsp; It is completely possible that an SDE connection file referenced with workspacePath could have different connection properties than when it was used to load data into a map document.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 18:38:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288831#M22388</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-08-24T18:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: layer workspace path points to a .sde file that doesn't exist, yet the layer still draws</title>
      <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288832#M22389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&amp;nbsp; How do you check the embedded properties in a mxd?&amp;nbsp; Can I do that with arcpy?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 19:21:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288832#M22389</guid>
      <dc:creator>TheodoreRakel</dc:creator>
      <dc:date>2015-08-24T19:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: layer workspace path points to a .sde file that doesn't exist, yet the layer still draws</title>
      <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288833#M22390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if layr.supports("WORKSPACEPATH"):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # logfile.write("The datasetName before replacement is " + layr.datasetName + '\n')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; # logfile.write("The old connection string before replacement is " + layr.workspacePath + '\n')&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if layr.supports("DATASOURCE"):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if layr.supports("SERVICEPROPERTIES"):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print("The layer name in mxd in Prod is " + layr.name)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; servProp = layr.serviceProperties&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; user = str(servProp.get('UserName', 'N/A'))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; serverID = str(servProp.get('Server', 'N/A'))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; serverInstance = str(servProp.get('Service', 'N/A'))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; serverVersion = str(servProp.get('Version', 'N/A'))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 19:30:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288833#M22390</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2015-08-24T19:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: layer workspace path points to a .sde file that doesn't exist, yet the layer still draws</title>
      <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288834#M22391</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To print out the embedded connection properties for all SDE layers in an open map document:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;mxd = arcpy.mapping.MapDocument("CURRENT")
for lyr in arcpy.mapping.ListLayers(mxd):
&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.supports("SERVICEPROPERTIES"):
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.serviceProperties["ServiceType"] == "SDE":
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for k, v in lyr.serviceProperties.iteritems():
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; print "Property: {:&amp;lt;30}Value:{}".format(k,v)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 13:57:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288834#M22391</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2021-12-11T13:57:17Z</dc:date>
    </item>
    <item>
      <title>Re: layer workspace path points to a .sde file that doesn't exist, yet the layer still draws</title>
      <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288835#M22392</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joshua, at least for some of my really old SDE connections&amp;nbsp; (still sees a version that uses port 5151), and testing using 10.2.2, sde connections do not support "SERVICEPROPERTIES"&amp;nbsp;&amp;nbsp;&amp;nbsp; So, that will not work.&amp;nbsp; just fyi.&amp;nbsp; May work on other broken SDE connections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have found a way to find them and list properties, but it's a process of elimination....not quite as straight forward as the above.&amp;nbsp; fwiw.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 20:18:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288835#M22392</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-08-24T20:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: layer workspace path points to a .sde file that doesn't exist, yet the layer still draws</title>
      <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288836#M22393</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rebecca:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you really need to restore such old port 5151 connections?&amp;nbsp; In order to make your life easier (less coding) you might think about just resourcing direct connections and let endusers resource the older port 5151 connections themselves with the Set Data Source tool available in ArcCatalog.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 20:29:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288836#M22393</guid>
      <dc:creator>MichaelVolz</dc:creator>
      <dc:date>2015-08-24T20:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: layer workspace path points to a .sde file that doesn't exist, yet the layer still draws</title>
      <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288837#M22394</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually I'm creating a toolbox/Python-addin that makes it pretty easy.&amp;nbsp; I have several tools&lt;/P&gt;&lt;P&gt;1-find GDB in a folder (recursive....each tool does a walk, so includes subfolders)&lt;/P&gt;&lt;P&gt;2-list all feature classes in the folder&lt;/P&gt;&lt;P&gt;3a-list all the (unique) broken links, by type, within all the MXDs in a folder....writting a .txt, .csv, and .xls as output&lt;/P&gt;&lt;P&gt;3b- does same as 3a, but lets you replace all the top level (i.e drive-&amp;gt;drive, drive-&amp;gt;UNC, etc) before runing the inventory&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use the output of 3a/b to add a column of all the newpaths I need, and new type in the case of changing shape/covers/sde -&amp;gt; FGDB, sde-&amp;gt;service etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4 - takes modified csv as input .and fixes all the links. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although I ran 3a on a directory with about 1500+ mxd, 50k+ individual broken links, and about 3k unique broken links, I'm now repairing project by project so I can make sure it works before moving to next project.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To answer your question....30 years of project and data I need to make sure is working after many changes.&amp;nbsp; This is an easy way to do it, and I'm trying to get all the connections to UNC so connections don't break do to different mapping by different users.&amp;nbsp; I think I now have it working for almost every combination...but just starting to put into actual use (vs testing), so may still hit a road block somewhere down the road.&amp;nbsp; and that's why I make sure to back up the mxd's (to a different folder, of course) before running #4.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 20:44:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288837#M22394</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-08-24T20:44:46Z</dc:date>
    </item>
    <item>
      <title>Re: layer workspace path points to a .sde file that doesn't exist, yet the layer still draws</title>
      <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288838#M22395</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What you are running into is a bug that was addressed in ArcGIS 10.3, i.e., prior to ArcGIS 10.3 the embedded service properties were not available when an SDE data source was broken.&amp;nbsp; If you try on a 10.3 machine, I would be interested to see the results.&amp;nbsp; Normally I would provide links to documentation, but the Esri Support and Development documentation on this bug is a mess in terms of consistency and accuracy.&amp;nbsp; There is still an open bug with Esri Support even though Esri Development fixed it already.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 20:56:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288838#M22395</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2015-08-24T20:56:17Z</dc:date>
    </item>
    <item>
      <title>Re: layer workspace path points to a .sde file that doesn't exist, yet the layer still draws</title>
      <link>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288839#M22396</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Joshua, yes it does work in 10.3.&amp;nbsp; I'm trying to keep my addin working 10.2.2 since I have users that have not upgraded yet.&amp;nbsp; Keeping a toolbox from not automatically thinking it's 10.3 means I need to make sure I do all my "touching of the toolbox" and addin builds on the 10.2.2 machine.&amp;nbsp; The toolbox actually seems to get corrupted for 10.2.2 if I just open it in 10.3....but that is a topic for another day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good to know that works though!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Aug 2015 21:05:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/layer-workspace-path-points-to-a-sde-file-that/m-p/288839#M22396</guid>
      <dc:creator>RebeccaStrauch__GISP</dc:creator>
      <dc:date>2015-08-24T21:05:29Z</dc:date>
    </item>
  </channel>
</rss>

