<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://forums.silverlight.net/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Hosting and Streaming</title><link>http://forums.silverlight.net/forums/15.aspx</link><description>Discussions about hosting and streaming Silverlight applications 

 
</description><dc:language>en</dc:language><generator>CommunityServer 2007 (Build: 20416.853)</generator><item><title>Re: Accessing SQL database without web services</title><link>http://forums.silverlight.net/forums/thread/153696.aspx</link><pubDate>Mon, 29 Dec 2008 23:05:23 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:153696</guid><dc:creator>vitor_canova</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/153696.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=15&amp;PostID=153696</wfw:commentRss><description>&lt;p&gt;&amp;nbsp;If you want to call &lt;i&gt;www.mywebsite.com/GetInfo.aspx?ID=1234&lt;/i&gt; you can use &lt;a href="http://msdn.microsoft.com/en-us/library/system.net.webclient%28VS.95%29.aspx" title="WebClient" target="_blank"&gt;WebClient&lt;/a&gt; and return a XML, but it is like reinvent the wheel. Because WebService (WCF) return XML that is parsed. I don&amp;#39;t see advantage to access with aspx page. But, if you really want to do this, create a &lt;i&gt;ashx&lt;/i&gt;.&lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: Accessing SQL database without web services</title><link>http://forums.silverlight.net/forums/thread/153522.aspx</link><pubDate>Mon, 29 Dec 2008 16:01:05 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:153522</guid><dc:creator>OsoreWatashi</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/153522.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=15&amp;PostID=153522</wfw:commentRss><description>&lt;p&gt;That is a feature I will be missing a lot then. Another feature something similar would be great, even if you just have to fire SQL Queries by yourself.&lt;/p&gt;&lt;p&gt;Indeed the streaming/serializing is not an option at all and will cause way too much overhead.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Is it possible instead to send data to a page which results in some XML which then can be parsed?&lt;br /&gt;More like: www.mywebsite.com/GetInfo.asxp?ID=1234 and that the page uses this ID and generates some elements which can then be readed by the Silverlight Application, like:&lt;br /&gt;&amp;lt;info&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;name&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;first&amp;gt;Osore&amp;lt;/first&amp;gt;&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;last&amp;gt;Watashi&amp;lt;/last&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;/name&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;country&amp;gt;Netherlands&amp;lt;/country&amp;gt;&lt;br /&gt;
&amp;nbsp; &amp;lt;language&amp;gt;Dutch&amp;lt;/region&amp;gt;&lt;br /&gt;&amp;nbsp; &amp;lt;region&amp;gt;Europe&amp;lt;/region&amp;gt;&lt;br /&gt;&amp;lt;/info&amp;gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;The parsing should not be any problem, as long as it is possible to get this data in some form back, like XML.&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I thank you again in advance. &lt;br /&gt;&lt;/p&gt;</description></item><item><title>Re: Accessing SQL database without web services</title><link>http://forums.silverlight.net/forums/thread/153516.aspx</link><pubDate>Mon, 29 Dec 2008 15:48:03 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:153516</guid><dc:creator>party42</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/153516.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=15&amp;PostID=153516</wfw:commentRss><description>&lt;p&gt;Nope you cant. Silverlight runs in the client. SqlServer runst on the server. There are some client side databases available but this would mean a huge impact on local storage.&lt;/p&gt;&lt;p&gt;You can use localstorage as your database solution (ie streaming / serializing the objects to disk).&amp;nbsp; But obviously, you would miss out on all the advantages of a SQL solution.&lt;/p&gt;</description></item><item><title>Accessing SQL database without web services</title><link>http://forums.silverlight.net/forums/thread/153496.aspx</link><pubDate>Mon, 29 Dec 2008 15:14:55 GMT</pubDate><guid isPermaLink="false">d0d632c8-a6f7-4f68-b0ce-26aaafd62132:153496</guid><dc:creator>OsoreWatashi</dc:creator><slash:comments>0</slash:comments><comments>http://forums.silverlight.net/forums/thread/153496.aspx</comments><wfw:commentRss>http://forums.silverlight.net/forums/commentrss.aspx?SectionID=15&amp;PostID=153496</wfw:commentRss><description>&lt;p&gt;Hello,&lt;/p&gt;&lt;p&gt;I have been searching for a solution but I am not able to find one during the last week.&lt;/p&gt;&lt;p&gt;I
am looking to retrieve data from a SQL database like I am used to in
the Windows Forms environment. I do have found several posts about
connecting to a database through web services, unfortunately my host
does not provide this ability (yet). Though I would like to connect to
databases.&lt;/p&gt;&lt;p&gt;So my question is: is it possible to gain access to a SQL database without any form of web services (WCF)?&lt;br /&gt;
More like a direct connection within the Silverlight assembly...&lt;/p&gt;&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;I thank you in advance. &lt;br /&gt;
&lt;/p&gt;</description></item></channel></rss>