<?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: Query SQL Server Table in ArcGIS API for Silverlight Questions</title>
    <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704177#M18099</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;What version of ArcGIS are you using?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;We will be using ArcGIS 9.3.1 with potential to go to 10 or 10.1 if there is significant benefit.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Dec 2011 13:31:52 GMT</pubDate>
    <dc:creator>SheldonKitzul</dc:creator>
    <dc:date>2011-12-12T13:31:52Z</dc:date>
    <item>
      <title>Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704166#M18088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a view on another system (Permits), that I want to query based on the selected Parcel. Do I have to setup a relationship class in ArcGIS Server or is there another way?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2011 14:22:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704166#M18088</guid>
      <dc:creator>BrandonCales</dc:creator>
      <dc:date>2011-07-26T14:22:33Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704167#M18089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I hate repying like this.&amp;nbsp; I wish I knew a more specific answer.&amp;nbsp; I will be doing the same thing as you and this is how I am doing it:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1.&amp;nbsp; Create a WCF service that runs on the same data server or in another web server which has tcpip access to it.&amp;nbsp; The WCF service will serve your data.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2.&amp;nbsp; Consume (create an instance) of the WCF in your Silverlight application.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3.&amp;nbsp; Call the method in the WCF service that exposes (retrieves) the data you need.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Upon creating the WCF, create it an independent library (standard dll), separated from Silverlight.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Do not return primitive data types in your WCF service, but rather complex data types that apply to your business domain; that is, if you are returning permits, create a custom business object (cbo) that exposes a permit.&amp;nbsp; For example, I retrieve water meters info, so I have a Meter cbo returned:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* request&amp;nbsp; */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;public class Meter&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; public long DcomId { get; set; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; public long DeviceId { get; set; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; public short DeviceType { get; set; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; ...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The WCF fills this object and this is the one returned to you in the Silverlight application.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, when you request, do not use primitive values either; use a request class:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;/* Result&amp;nbsp; */&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;public class PermitRequest&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; public string Name { get; set; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; public int ID { get; set; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp; public DateTime { get; set; }&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, your class that exposes the service in the WCF service has a method like this:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;public PermitResult GetPermit(PermitRequest request)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;{&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;}&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;From your Silverlight application:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Meter myMeter = (Meter)objWCF.GetPermit(objPermitRequest);&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Sorry about this....&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;As I said, I wish I knew a shorter option.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hugo.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2011 16:29:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704167#M18089</guid>
      <dc:creator>HugoCardenas</dc:creator>
      <dc:date>2011-07-26T16:29:20Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704168#M18090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Not entirely sure if this is what you are trying to do but...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;How about trying to use the "Add Query Layer" functionality in ArcGIS desktop and then publishing it as a service. Then use a query task to get the data... but you need to have access to ArcGIS desktop to create and publish the service&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2011 17:55:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704168#M18090</guid>
      <dc:creator>IgressT</dc:creator>
      <dc:date>2011-07-26T17:55:31Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704169#M18091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm thinking more of an ad-hoc query against SQL. I have it working in VB.NET ADF for ArcGIS 9.3, but moving to Silverlight API changes a lot of that...or maybe removes it.&amp;nbsp; I will try these and post back. Thanks&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Jul 2011 18:41:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704169#M18091</guid>
      <dc:creator>BrandonCales</dc:creator>
      <dc:date>2011-07-26T18:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704170#M18092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Does the service have to be created outside my ArcGIS VS Project, or can I just add it to it? I'll have to read up more on this - new area.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I hate repying like this.&amp;nbsp; I wish I knew a more specific answer.&amp;nbsp; I will be doing the same thing as you and this is how I am doing it:&lt;BR /&gt;&lt;BR /&gt;1.&amp;nbsp; Create a WCF service that runs on the same data server or in another web server which has tcpip access to it.&amp;nbsp; The WCF service will serve your data.&lt;BR /&gt;&lt;BR /&gt;2.&amp;nbsp; Consume (create an instance) of the WCF in your Silverlight application.&lt;BR /&gt;3.&amp;nbsp; Call the method in the WCF service that exposes (retrieves) the data you need.&lt;BR /&gt;&lt;BR /&gt;Upon creating the WCF, create it an independent library (standard dll), separated from Silverlight.&lt;BR /&gt;Do not return primitive data types in your WCF service, but rather complex data types that apply to your business domain; that is, if you are returning permits, create a custom business object (cbo) that exposes a permit.&amp;nbsp; For example, I retrieve water meters info, so I have a Meter cbo returned:&lt;BR /&gt;&lt;BR /&gt;/* request&amp;nbsp; */&lt;BR /&gt;public class Meter&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp; public long DcomId { get; set; }&lt;BR /&gt;&amp;nbsp; public long DeviceId { get; set; }&lt;BR /&gt;&amp;nbsp; public short DeviceType { get; set; }&lt;BR /&gt; ...&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;The WCF fills this object and this is the one returned to you in the Silverlight application.&lt;BR /&gt;&lt;BR /&gt;Also, when you request, do not use primitive values either; use a request class:&lt;BR /&gt;&lt;BR /&gt;/* Result&amp;nbsp; */&lt;BR /&gt;public class PermitRequest&lt;BR /&gt;{&lt;BR /&gt;&amp;nbsp;&amp;nbsp; public string Name { get; set; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp; public int ID { get; set; }&lt;BR /&gt;&amp;nbsp;&amp;nbsp; public DateTime { get; set; }&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;Now, your class that exposes the service in the WCF service has a method like this:&lt;BR /&gt;&lt;BR /&gt;public PermitResult GetPermit(PermitRequest request)&lt;BR /&gt;{&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;From your Silverlight application:&lt;BR /&gt;&lt;BR /&gt;Meter myMeter = (Meter)objWCF.GetPermit(objPermitRequest);&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Sorry about this....&lt;BR /&gt;As I said, I wish I knew a shorter option.&lt;BR /&gt;Hugo.&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jul 2011 17:22:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704170#M18092</guid>
      <dc:creator>BrandonCales</dc:creator>
      <dc:date>2011-07-27T17:22:18Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704171#M18093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes.&amp;nbsp; It is better to create the WCF service as regular .NET class library (.dll); then create a standard web site of type "Web Service" to deploy the .dll.&amp;nbsp; This way you get all the power of .NET that Silverlight lacks.&amp;nbsp; I have done it already and works great.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My scenario may be somewhat different from yours or any other.&amp;nbsp; I have my Silverlight application sitting on the Cloud server, getting all map services from the ArcGIS Server on the Cloud as well.&amp;nbsp; My Silverlight application connects to non-GIS servers (standard MSSQL servers) outside the Cloud to retrieve dynamic data (always changing information [massive water meter readings that change every 2 to 4 hours]).&amp;nbsp; Static information (meter id, address, etc.) comes from the ArcGIS Server in the Cloud, but other dynamic attributes are retrieved from those other servers outside the Cloud.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can save and open files (somehting very unsual in Silverlight with the browser option on), for my WCF service does it all.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I can share some code and the .dll if anyone needs it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hugo.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Aug 2011 20:29:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704171#M18093</guid>
      <dc:creator>HugoCardenas</dc:creator>
      <dc:date>2011-08-02T20:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704172#M18094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I was actually able to work around it by the following...it works great.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;...since you have a common field name between the Parcel feature class and the stand alone table 'permit'; I would suggest to perform a relationship operation between them and then publish the map service. &lt;BR /&gt;&lt;BR /&gt;For example:&lt;BR /&gt;&lt;A href="http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Petroleum/KSPetro/MapServer"&gt;http://sampleserver3.arcgisonline.com/ArcGIS/rest/services/Petroleum/KSPetro/MapServer&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;In your Silverlight application, you may then use the queryTask.ExecuteRelationshipQueryAsync() method to perform the query on the Related table. &lt;BR /&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Aug 2011 20:55:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704172#M18094</guid>
      <dc:creator>BrandonCales</dc:creator>
      <dc:date>2011-08-02T20:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704173#M18095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;First off, I apologize for my lack of technical expertise.&amp;nbsp; I am a product manager looking to understand how to link a map service with a dynamic SQL database.&amp;nbsp; In short, the goal is that the map service should reflect real-time data any time it is accessed.&amp;nbsp; There will be a single attribute in the map service that determines how information will be displayed by the map service.&amp;nbsp; This single attribute is updated based on information contained in the SQL database.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;My concerns are being able to do this in a manner that does not negatively impact performance and that is as close to real-time as possible.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Our company is also in the process of creating several WCF services that could be used as well.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What alternatives are there for us to consider?&amp;nbsp; PLEASE help! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Dec 2011 13:48:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704173#M18095</guid>
      <dc:creator>SheldonKitzul</dc:creator>
      <dc:date>2011-12-02T13:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704174#M18096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;When you say map service are you talking about an interactive map service online? Are you using ArcGIS Server to create the map service?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Dec 2011 19:10:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704174#M18096</guid>
      <dc:creator>MellissaLasslo</dc:creator>
      <dc:date>2011-12-07T19:10:43Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704175#M18097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;When you say map service are you talking about an interactive map service online? Are you using ArcGIS Server to create the map service?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your reply.&amp;nbsp; Much appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am talking about an interactive map service online that would be created using ArcGIS Server, correct.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In essence, according to my understanding, the map service displays information based on a table.&amp;nbsp; One of the attributes in this table will change based on updates coming in from the SQL side.&amp;nbsp; To meet the needs of our application, the map service needs to display as close-to-real-time information as possible without significant impacts to performance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thus, the table needs to somehow dynamically update so that anytime the user of the application moves around in the map and generates a view, the view reflects current information.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2011 15:30:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704175#M18097</guid>
      <dc:creator>SheldonKitzul</dc:creator>
      <dc:date>2011-12-09T15:30:16Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704176#M18098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What version of ArcGIS are you using?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2011 15:42:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704176#M18098</guid>
      <dc:creator>MellissaLasslo</dc:creator>
      <dc:date>2011-12-09T15:42:05Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704177#M18099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;What version of ArcGIS are you using?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;We will be using ArcGIS 9.3.1 with potential to go to 10 or 10.1 if there is significant benefit.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2011 13:31:52 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704177#M18099</guid>
      <dc:creator>SheldonKitzul</dc:creator>
      <dc:date>2011-12-12T13:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704178#M18100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;We will be using ArcGIS 9.3.1 with potential to go to 10 or 10.1 if there is significant benefit.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not sure how to do it in 9.3.1, but we were just able to do it in 10. Here are some links to threads that may help:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/2381-Trying-to-create-map-service-with-non-spatial-SQL-Server-database"&gt;http://forums.arcgis.com/threads/2381-Trying-to-create-map-service-with-non-spatial-SQL-Server-database&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/24893-ArcGIS-Conecction-OLE-DB-Publishing-MapService-Problem?highlight=odc"&gt;http://forums.arcgis.com/threads/24893-ArcGIS-Conecction-OLE-DB-Publishing-MapService-Problem?highlight=odc&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/42972-adding-layer-to-.mxd-from-OLE-database-connection-produces-invalid-layer-error"&gt;http://forums.arcgis.com/threads/42972-adding-layer-to-.mxd-from-OLE-database-connection-produces-invalid-layer-error&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can also email me at mellissa.lasslo[@]carbon[dot]utah[dot]gov if you have any more questions or need help.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Dec 2011 21:24:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704178#M18100</guid>
      <dc:creator>MellissaLasslo</dc:creator>
      <dc:date>2011-12-12T21:24:55Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704179#M18101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I'm not sure how to do it in 9.3.1, but we were just able to do it in 10. Here are some links to threads that may help:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/2381-Trying-to-create-map-service-with-non-spatial-SQL-Server-database"&gt;http://forums.arcgis.com/threads/2381-Trying-to-create-map-service-with-non-spatial-SQL-Server-database&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/24893-ArcGIS-Conecction-OLE-DB-Publishing-MapService-Problem?highlight=odc"&gt;http://forums.arcgis.com/threads/24893-ArcGIS-Conecction-OLE-DB-Publishing-MapService-Problem?highlight=odc&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums.arcgis.com/threads/42972-adding-layer-to-.mxd-from-OLE-database-connection-produces-invalid-layer-error"&gt;http://forums.arcgis.com/threads/42972-adding-layer-to-.mxd-from-OLE-database-connection-produces-invalid-layer-error&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;You can also email me at mellissa.lasslo[@]carbon[dot]utah[dot]gov if you have any more questions or need help.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Melissa!&amp;nbsp; I will check into the links.&amp;nbsp; I GREATLY appreciate your help!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Dec 2011 13:24:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704179#M18101</guid>
      <dc:creator>SheldonKitzul</dc:creator>
      <dc:date>2011-12-19T13:24:13Z</dc:date>
    </item>
    <item>
      <title>Re: Query SQL Server Table</title>
      <link>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704180#M18102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Yes.&amp;nbsp; It is better to create the WCF service as regular .NET class library (.dll); then create a standard web site of type "Web Service" to deploy the .dll.&amp;nbsp; This way you get all the power of .NET that Silverlight lacks.&amp;nbsp; I have done it already and works great.&lt;BR /&gt;&lt;BR /&gt;My scenario may be somewhat different from yours or any other.&amp;nbsp; I have my Silverlight application sitting on the Cloud server, getting all map services from the ArcGIS Server on the Cloud as well.&amp;nbsp; My Silverlight application connects to non-GIS servers (standard MSSQL servers) outside the Cloud to retrieve dynamic data (always changing information [massive water meter readings that change every 2 to 4 hours]).&amp;nbsp; Static information (meter id, address, etc.) comes from the ArcGIS Server in the Cloud, but other dynamic attributes are retrieved from those other servers outside the Cloud.&lt;BR /&gt;&lt;BR /&gt;I can save and open files (somehting very unsual in Silverlight with the browser option on), for my WCF service does it all.&lt;BR /&gt;&lt;BR /&gt;I can share some code and the .dll if anyone needs it.&lt;BR /&gt;&lt;BR /&gt;Hugo.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dear Hugo,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;We are using silverlight. we need to join a table from oracle with map service on the fly. I think you code will be very helpful to us. Could you please send your code to me. My email address is &lt;/SPAN&gt;&lt;A href="mailto:ahasan@cegisbd.com"&gt;ahasan@cegisbd.com&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you very much.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Apr 2013 02:48:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-api-for-silverlight-questions/query-sql-server-table/m-p/704180#M18102</guid>
      <dc:creator>Abul_Kashem_Md_Hasan</dc:creator>
      <dc:date>2013-04-08T02:48:47Z</dc:date>
    </item>
  </channel>
</rss>

