<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/css" href="/stylesheets/rss.css"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>GeoBliki's Blog: Accessing SOS with Basic Authentication - .Net (IronPython)</title>
    <link>http://blog.geobliki.com/articles/2006/10/23/accessing-sos-with-basic-authentication-net-ironpython</link>
    <language>en-us</language>
    <ttl>40</ttl>
    <description>Sensor Web Enabled (SWE) Data Node </description>
    <item>
      <title>Accessing SOS with Basic Authentication - .Net (IronPython)</title>
      <description>&lt;p&gt;This example is provided by Kari Hoijarvi from WUSTL.&lt;/p&gt;

&lt;p&gt;Download IronPython from http://www.codeplex.com/Wiki/View.aspx?ProjectName=IronPython&lt;/p&gt;

&lt;p&gt;Save the following code into a file called sos2.py&lt;/p&gt;

&lt;p&gt;to run the code:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;  ipy
  &amp;gt;&amp;gt;&amp;gt;import sos2
  &amp;gt;&amp;gt;&amp;gt;sos2.test()
&lt;/code&gt;&lt;/pre&gt;

&lt;p&gt;The sos2.py file:&lt;/p&gt;

&lt;pre&gt;&lt;code&gt;import clr;
import System
clr.AddReferenceByPartialName("System.Data")
clr.AddReferenceByPartialName("System.Web")
clr.AddReferenceByPartialName("System.Xml")
from System import *
from System.IO import *
from System.Net import *
from System.Net.Sockets import *
from System.Text import *
from System.Xml import *

def test():
    query = Encoding.UTF8.GetBytes(
"""&amp;lt;?xml version="1.0" encoding="UTF-8"?&amp;gt;
&amp;lt;GetObservation xmlns="http://www.opengeospatial.net/sos"
    xmlns:gml="http://www.opengis.net/gml"
    xmlns:ogc="http://www.opengis.net/ogc"
    xmlns:ows="http://www.opengeospatial.net/ows"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.opengeospatial.net/sos 
http://mars.uni-muenster.de/swerep/trunk/sos/0.0.31/sosGetObservation.xsd"
    service="SOS" version="0.0.31"&amp;gt;
   &amp;lt;offering&amp;gt;EO1H0410342004085110PY&amp;lt;/offering&amp;gt;
&amp;lt;observedProperty&amp;gt;urn:ogc:def:phenomenon:OGC:1.0.30:hyperion_B021&amp;lt;/observedProperty&amp;gt;

&amp;lt;observedProperty&amp;gt;urn:ogc:def:phenomenon:OGC:1.0.30:hyperion_B051&amp;lt;/observedProperty&amp;gt;
   &amp;lt;resultFormat&amp;gt;application/zip&amp;lt;/resultFormat&amp;gt;
&amp;lt;/GetObservation&amp;gt;
""")
    req = HttpWebRequest.Create("http://test.geobliki.com/sos")
    req.Method = "POST"
    req.Credentials = NetworkCredential("some", "user")
    req.ContentType = "text/xml; charset=\"UTF-8\"";
    req.ContentLength = query.Length
    req.UserAgent = "IronPython"
    reqstm = req.GetRequestStream()
    reqstm.Write(query, 0, query.Length);
    rsp = req.GetResponse();
    try:
        print "============ begin headers =================="
        for h in rsp.Headers:
            print h + ": " + rsp.Headers[h]
        print "============ end headers =================="
        print "============ begin response =================="
        print ""
        print StreamReader(rsp.GetResponseStream()).ReadToEnd()
        print ""
        print "============ end of response =================="
    finally:
        print "closing response"
        rsp.Close()
&lt;/code&gt;&lt;/pre&gt;</description>
      <pubDate>Mon, 23 Oct 2006 13:45:00 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:4ba0331e-702b-4a8d-8314-5d24fff93036</guid>
      <author>Linda Derezinski</author>
      <link>http://blog.geobliki.com/articles/2006/10/23/accessing-sos-with-basic-authentication-net-ironpython</link>
      <category>basic</category>
      <category>authentication</category>
      <category>.Net</category>
      <category>IronPython</category>
    </item>
    <item>
      <title>"Accessing SOS with Basic Authentication - .Net (IronPython)" by Kari Hoijarvi</title>
      <description>&lt;p&gt;The result xml has an uri pointer to the result file. You need to use the same basic authentication method to fetch it, but this time Method = &amp;#8220;GET&amp;#8221; and there&amp;#8217;s no query.&lt;/p&gt;</description>
      <pubDate>Mon, 23 Oct 2006 14:22:41 +0000</pubDate>
      <guid isPermaLink="false">urn:uuid:436eb455-9480-46ad-a87c-c6d7f7afe854</guid>
      <link>http://blog.geobliki.com/articles/2006/10/23/accessing-sos-with-basic-authentication-net-ironpython#comment-25</link>
    </item>
  </channel>
</rss>
