<meta http-equiv=Content-Type content="text/html; charset=us-ascii">
<meta name=Generator content="Microsoft Word 12 (filtered medium)">
<!--[if !mso]>
<style>
v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style>
<![endif]-->

<!--[if gte mso 9]><xml>
 <o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
 <o:shapelayout v:ext="edit">
  <o:idmap v:ext="edit" data="1" />
 </o:shapelayout></xml><![endif]-->




<div class=Section1>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>Hi Tony,&nbsp; never too many questions,<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'>I&#8217;m not using MapGuide; rather I serve the data up on top
of a MS Virtual Earth map.&nbsp; I use the FDO libraries as the core, but also some
FWTools, serving up GIS functionality through web services.&nbsp; &nbsp;We use
MS SQL Server 2005.&nbsp; Regarding the feature classes, they are small &#8211;
largest one has approximately 30,000 features.<o:p></o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";
color:#1F497D'><o:p>&nbsp;</o:p></span></p>

<div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0in 0in 0in'>

<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> Tony
[mailto:<a href="http://n2.nabble.com/user/SendEmail.jtp?type=node&node=1355204&i=0" target="_top" rel="nofollow">ml-user+64542-1977749538@...</a>] <br>
<b>Sent:</b> Friday, October 17, 2008 3:04 PM<br>
<b>To:</b> Rob Sosnowski<br>
<b>Subject:</b> RE: [fdo-users] SDE Error - Cant fine feature class<o:p></o:p></span></p>

</div>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

<p class=MsoNormal style='margin-bottom:12.0pt'>great news <br>
<br>
how is the performance using 9.2 &nbsp;are &nbsp;you using MGOS or MGE ( if so
what version) <br>
what database are you using with SDE. and how many feature classes you have <br>
<br>
sorry &nbsp;to many questions here but i am just trying to compare my server
with yours to see if i am doing anything differently <br>
<br>
thanks <br>
Tony <br>
<br>
<o:p></o:p></p>

<div>

<div>

<p class=MsoNormal><b>surrounded wrote:<o:p></o:p></b></p>

</div>

<div>

<p class=MsoNormal>Hi Tony, <br>
<br>
&nbsp; <br>
<br>
Using 9.2. &nbsp;I hear that FDO 3.4, due out near the end of this year (I <br>
believe), will support ArcSDE 9.3. &nbsp; Rob <br>
<br>
&nbsp; <br>
<br>
From: Tony [mailto:<a href="http://n2.nabble.com/user/SendEmail.jtp?type=node&node=1355204&i=1" target="_top" rel="nofollow">ml-user+64542-1977749538@...</a>] <br>
Sent: Thursday, October 16, 2008 5:14 PM <br>
To: Rob Sosnowski <br>
Subject: Re: [fdo-users] SDE Error - Cant fine feature class <br>
<br>
&nbsp; <br>
<br>
what SDE version are you using <br>
<br>
Tony <br>
<br>
<br>
RESOLVED: &nbsp;I used: <br>
<br>
//OSGeo.FDO.Commands.Schema.IDescribeSchema pDS = <br>
(OSGeo.FDO.Commands.Schema.IDescribeSchema)connection.CreateCommand(OSGe <br>
o.FDO.Commands.CommandType.CommandType_DescribeSchema); <br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br>
//OSGeo.FDO.Schema.FeatureSchemaCollection pFSC = pDS.Execute(); <br>
<br>
to create a FeatureScheamCollection. &nbsp;From this I was able to get the <br>
correct FeatureClass name. &nbsp;I used <br>
the FeatureClass name in sel.SetFeatureClassName(&quot;xxxx&quot;) <br>
<br>
WORKS FINE NOW. <br>
<br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br>
<br>
surrounded wrote: <br>
<br>
I establish a connection to SDE enterprise geodatabase: <br>
<br>
I use the following code to access the feature class: <br>
<br>
&nbsp; &nbsp; connection = getSDEConnection(&quot;OSGeo.ArcSDE.3.3&quot;); <br>
&nbsp; &nbsp; OSGeo.FDO.Commands.Feature.ISelect sel = <br>
(OSGeo.FDO.Commands.Feature.ISelect <br>
connection.CreateCommand(OSGeo.FDO.Commands.CommandType.CommandType_Sele <br>
ct); <br>
&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <br>
&nbsp; &nbsp; sel.SetFeatureClassName(&quot;Cities&quot;); <br>
&nbsp; &nbsp; reader = sel.Execute(); <br>
<br>
On the sel.Execute I get the following error: <br>
&nbsp; &nbsp; Feature class 'Cities' not found in schema. <br>
<br>
<br>
Any ideas on why this is happening....Thanks <br>
<br>
<br>
<br>
<br>
<br>
________________________________ <br>
<br>
View message @ <br>
<a href="http://n2.nabble.com/SDE-Error---Cant-fine-feature-class-tp1131496p13432" target="_top" rel="nofollow">http://n2.nabble.com/SDE-Error---Cant-fine-feature-class-tp1131496p13432</a><br>
09.html <br>
To unsubscribe from SDE Error - Cant fine feature class, click here <br>
&lt; (link removed) <br>
raUBpdGQuaWRhaG8uZ292fDExMzE0OTZ8LTE5NTY2NDk3Mzc=&gt; . <br>
<br>
&nbsp; <o:p></o:p></p>

</div>

</div>

<p class=MsoNormal style='margin-bottom:12.0pt'><o:p>&nbsp;</o:p></p>

<div class=MsoNormal align=center style='text-align:center'>

<hr size=1 width="100%" noshade style='color:#CCCCCC' align=center>

</div>

<div>

<p class=MsoNormal><span style='font-size:8.5pt;font-family:"Tahoma","sans-serif";
color:#666666'>View message @ <a href="http://n2.nabble.com/SDE-Error---Cant-fine-feature-class-tp1131496p1346952.html" target="_top" rel="nofollow">http://n2.nabble.com/SDE-Error---Cant-fine-feature-class-tp1131496p1346952.html</a>
<br>
To unsubscribe from SDE Error - Cant fine feature class, <a target="_top" rel="nofollow">click
here</a>. <o:p></o:p></span></p>

</div>

<p class=MsoNormal><o:p>&nbsp;</o:p></p>

</div>





<br><hr align="left" width="300">
View this message in context: <a href="http://n2.nabble.com/SDE-Error---Cant-fine-feature-class-tp1131496p1355204.html">RE: [fdo-users] SDE Error - Cant fine feature class</a><br>
Sent from the <a href="http://n2.nabble.com/FDO-Users-f737950.html">FDO Users mailing list archive</a> at Nabble.com.<br>