<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Windows CE Programming &#187; pocketpc</title>
	<atom:link href="http://www.hjgode.de/wp/tag/pocketpc/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.hjgode.de/wp</link>
	<description>Windows Mobile Development and usage</description>
	<lastBuildDate>Fri, 03 Feb 2012 08:53:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<!--CodeProjectFeeder channel--><category>CodeProject</category><generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Mobile development &#8211; a WiFi signal strength indicator</title>
		<link>http://www.hjgode.de/wp/2010/09/07/mobile-development-wifi-signal/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mobile-development-wifi-signal</link>
		<comments>http://www.hjgode.de/wp/2010/09/07/mobile-development-wifi-signal/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 13:08:46 +0000</pubDate>
		<dc:creator>josef</dc:creator>
				<category><![CDATA[CodeProject]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[get-signal-strength-on-wince]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[ndisuio]]></category>
		<category><![CDATA[pocketpc]]></category>
		<category><![CDATA[RSSI]]></category>
		<category><![CDATA[taskbar]]></category>
		<category><![CDATA[wifi]]></category>
		<category><![CDATA[wirless]]></category>
		<category><![CDATA[wlan]]></category>

		<guid isPermaLink="false">http://www.hjgode.de/wp/?p=797</guid>
		<description><![CDATA[A simple taskbar addon showing the WiFi signal strength]]></description>
			<content:encoded><![CDATA[<p>Here is one more windows mobile taskbar addon. I have seen many people are interested in these small widgets. This one shows the signal strength of the current associated access point in your taskbar.</p>
<p style="text-align: center;"><a rel="attachment wp-att-798" href="http://www.hjgode.de/wp/2010/09/07/mobile-development-wifi-signal/screenshotwlanrssi/"><img class="alignnone size-medium wp-image-798" title="ScreenShotWlanRssi" src="http://www.hjgode.de/wp/wp-content/uploads/2010/09/ScreenShotWlanRssi-225x300.gif" alt="" width="225" height="300" /></a></p>
<p>The code is the same as with the other taskbaraddons you find here, only the code for wireless signal strength has been added. Oh, yes, and this addon uses small bitmaps to show the signal strength.</p>
<p style="text-align: center;"><a rel="attachment wp-att-799" href="http://www.hjgode.de/wp/2010/09/07/mobile-development-wifi-signal/wlan-signal/"><img class="alignnone size-full wp-image-799" title="wlan-signal" src="http://www.hjgode.de/wp/wp-content/uploads/2010/09/wlan-signal.gif" alt="" width="137" height="29" /></a></p>
<p>To get the signal strength I use part of PeekPocket code submission at CodeProject. I only need the name of the first wireless adapter.</p>
<p><span id="more-797"></span></p>
<pre escaped="true" line="1" lang="c">CWifiPeek m_wp;
TCHAR* szAdapterName=new TCHAR[64];

ULONG GetCurrentValue(){
    WCHAR buf[1024];
    DWORD dwSize;
    dwSize=sizeof(buf);
    if(false == m_wp.GetAdapters(buf, dwSize) || dwSize == 0)
    {
        return UNKNOWERROR;
    }
    else{
        //we are only interested in first returned name
        wsprintf(szAdapterName, L"%s", buf);
        int iRSSI=0;
        int iRes = GetSignalStrength(szAdapterName, &amp;iRSSI);
        if(iRes == ERROR_SUCCESS){
            return iRSSI;
        }
        else{
            return LOADLIBFAILED;
        }
    }
}
</pre>
<p>(<small><a class="linkification-ext" title="Linkification: http://www.codeproject.com/KB/windows/PeekPocket.aspx" href="http://www.codeproject.com/KB/windows/PeekPocket.aspx">http://www.codeproject.com/KB/windows/PeekPocket.aspx</a>)</small></p>
<p>Then the signal strength is queried using another code snippet:</p>
<pre escaped="true" line="1" lang="c">INT GetSignalStrength(TCHAR *ptcDeviceName, INT *piSignalStrength)
{
    PNDISUIO_QUERY_OID queryOID;
    DWORD dwBytesReturned = 0;
    UCHAR QueryBuffer[sizeof(NDISUIO_QUERY_OID)+sizeof(DWORD)];
    HANDLE ndisAccess = INVALID_HANDLE_VALUE;
    BOOL retval;
    INT hr;

    // Attach to NDISUIO.
    ndisAccess = CreateFile(NDISUIO_DEVICE_NAME, 0, 0, NULL,
    OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL | FILE_FLAG_OVERLAPPED,
    INVALID_HANDLE_VALUE );

    if (ndisAccess == INVALID_HANDLE_VALUE)
        return -1;

    // Get Signal strength
    queryOID = (PNDISUIO_QUERY_OID)&amp;QueryBuffer[0];
    queryOID-&gt;ptcDeviceName = ptcDeviceName;
    queryOID-&gt;Oid = OID_802_11_RSSI;

    retval = DeviceIoControl(ndisAccess,
    IOCTL_NDISUIO_QUERY_OID_VALUE, (LPVOID)queryOID,
    sizeof(NDISUIO_QUERY_OID) + sizeof(DWORD), (LPVOID)queryOID,
    sizeof(NDISUIO_QUERY_OID) + sizeof(DWORD), &amp;dwBytesReturned, NULL);

    if (retval &amp;&amp; piSignalStrength)
    {
        hr = 0;
        *piSignalStrength = *(DWORD *)&amp;queryOID-&gt;Data;
    }
    else
    {
        hr = -2;
    }

    CloseHandle(ndisAccess);

    return(hr);
}
</pre>
<p><small>(<a class="linkification-ext" title="Linkification: http://www.pcreview.co.uk/forums/thread-1306359.php" href="http://www.pcreview.co.uk/forums/thread-1306359.php">http://www.pcreview.co.uk/forums/thread-1306359.php</a>)</small></p>
<h2>Downloads</h2>
<b>DOWNLOAD:</b><a href="http://www.hjgode.de/wp/wp-content/plugins/download-monitor/download.php?id=118" title="Downloaded 509 times">TaskbarAddon5</a> - Windows Mobile taskbar addon showing the signal strength of associated access point (Hits: 509, size: 178.63 kB)
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.hjgode.de%2Fwp%2F2010%2F09%2F07%2Fmobile-development-wifi-signal%2F&amp;title=Mobile+development+%26%238211%3B+a+WiFi+signal+strength+indicator" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.hjgode.de/wp/wp-content/plugins/social-bookmarks0/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.hjgode.de%2Fwp%2F2010%2F09%2F07%2Fmobile-development-wifi-signal%2F&amp;title=Mobile+development+%26%238211%3B+a+WiFi+signal+strength+indicator" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.hjgode.de/wp/wp-content/plugins/social-bookmarks0/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.hjgode.de%2Fwp%2F2010%2F09%2F07%2Fmobile-development-wifi-signal%2F&amp;title=Mobile+development+%26%238211%3B+a+WiFi+signal+strength+indicator" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.hjgode.de/wp/wp-content/plugins/social-bookmarks0/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.hjgode.de%2Fwp%2F2010%2F09%2F07%2Fmobile-development-wifi-signal%2F&amp;T=Mobile+development+%26%238211%3B+a+WiFi+signal+strength+indicator" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.hjgode.de/wp/wp-content/plugins/social-bookmarks0/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.hjgode.de%2Fwp%2F2010%2F09%2F07%2Fmobile-development-wifi-signal%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.hjgode.de/wp/wp-content/plugins/social-bookmarks0/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.hjgode.de%2Fwp%2F2010%2F09%2F07%2Fmobile-development-wifi-signal%2F&amp;t=Mobile+development+%26%238211%3B+a+WiFi+signal+strength+indicator" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.hjgode.de/wp/wp-content/plugins/social-bookmarks0/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.hjgode.de/wp/2010/09/07/mobile-development-wifi-signal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Pocket or Mobile Internet Explorer</title>
		<link>http://www.hjgode.de/wp/2010/02/26/the-pocket-or-mobile-internet-explorer/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=the-pocket-or-mobile-internet-explorer</link>
		<comments>http://www.hjgode.de/wp/2010/02/26/the-pocket-or-mobile-internet-explorer/#comments</comments>
		<pubDate>Fri, 26 Feb 2010 12:39:16 +0000</pubDate>
		<dc:creator>josef</dc:creator>
				<category><![CDATA[CodeProject]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Windows Mobile Information]]></category>
		<category><![CDATA[explorer]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[pocket pc]]></category>
		<category><![CDATA[pocketpc]]></category>
		<category><![CDATA[windows mobile]]></category>

		<guid isPermaLink="false">http://www.hjgode.de/wp/?p=361</guid>
		<description><![CDATA[Some information about 
Internet Explorer running 
on 
Windows Mobile
]]></description>
			<content:encoded><![CDATA[<p>Unfortunately, there is no in depth information about the Pocket or Mobile Internet Explorer (PIE) comaptibility. So I can only give some suggestions. But I hope this informations will help you getting started and don’t run into trouble.First, although M$ states, that PIE is compatible to Internet Explorer 4.1, 5.0, 5.5 or 6.0, depending on the OS level you run on a windows ce based device, this is only a general statement:</p>
<hr />
<strong>Pocket Internet Explorer has been updated to support the following:</strong></p>
<pre>HTML 4.01
Extensible HTML (XHTML)
Cascading style sheets<span style="mso-ansi-language: FR;" lang="FR">
Microsoft Jscript® version 5.5
Enhanced scripting and Document Object Model support
Wireless Markup Language (WML) 2.0 (XHTML + WML 1.x)<span style="mso-ansi-language: FR;" lang="FR">
Internet Protocol version 6 (IPv6) in IPv4/IPv6 mixed-mode environments
New extensible imaging library
</span></span></pre>
<p><strong>From TechEd powerpoint</strong></p>
<pre>HTML 3.2 Compliant
JavaScript 1.1 compliant
XML Object Model
SSL
Active X support (no download!)
=============================
HTML 3.2-based object model
   <strong>Not the IE4 OM</strong>
Core script support:
   Scripting against FORM elements
   Scripting against the XML OM&lt;
Not supported:
   Dynamic frameset creation
   Dynamic script generation
   Window.open</pre>
<hr />If you try some more special functions of the desktop IE versions, you will find the limits very fast. In example, the OnKey() event is not supported in any of the actual CE OS versions (&lt;=6). XML Dataislands support is very limitted.</p>
<p><span id="more-361"></span></p>
<p>With AJAX and Windows CE 6, MS will implement more and more feautres needed by the new WEB 2.0 hype sites. So we hope for more and better support of the object model and JScrips in future versions.</p>
<h2>Unsorted sources of informations</h2>
<p>Some informations I collected:</p>
<ul type="disc">
<li><a href="http://httpp://www.hjgode.de/wp/wp-content/uploads/2010/2/html.doc">Here</a> is an very old doc, describing PIE object model.</li>
<li><a href="http://httpp://www.hjgode.de/wp/wp-content/uploads/2010/2/q158479.pdf">Here</a> is an archived KB article (Q158479) about &#8220;HTML Tags, MIME Types, Security Types, and URL Types Supported in Pocket Internet Explorer&#8221;</li>
<li><a href="http://httpp://www.hjgode.de/wp/wp-content/uploads/2010/2/creating_online_content_for_pocket_pc.pdf">Here</a> is an old doc about &#8220;Pocket Internet Explorer HTML Element Reference&#8221;. This is like the help you find if you have installed one of the PocketPC or WM SDKs.</li>
<li><a href="http://httpp://www.hjgode.de/wp/wp-content/uploads/2010/2/comparison.pdf">Here</a> is an old comaprision of the versions.</li>
<li>WinCE.NET 4.2: <a href="http://msdn.microsoft.com/library/en-us/wcedsn40/html/cgconChoosingInternetBrowser.asp">http://msdn.microsoft.com/library/en-us/wcedsn40/html/cgconChoosingInternetBrowser.asp</a></li>
<li>WinCE 5.0: <a href="http://msdn.microsoft.com/library/en-us/wceinternet5/html/wce50oriBrowsers.asp">http://msdn.microsoft.com/library/en-us/wceinternet5/html/wce50oriBrowsers.asp</a></li>
<li><a href="http://msdn2.microsoft.com/en-us/library/s4esdbwz(vs.71).aspx" target="_blank">Here</a> is an overview of Jscript desktop support. And <a href="http://msdn2.microsoft.com/en-us/library/aa917936.aspx" target="_blank">here</a> for Windows CE.</li>
<li><a href="http://http://www.hjgode.de/wp/wp-content/uploads/2010/2/using_xml_and_xsl_in_pocket_internet_explorer.pdf">Here</a> is a doc about &#8220;Using XML and XSL in Pocket Internet Explorer&#8221;</li>
<li><a href="http://httpp://www.hjgode.de/wp/wp-content/uploads/2010/2/windows_mobile_2003_supports_css.doc">Something</a> about CSS support.</li>
<li><a href="http://www.pocketpcdn.com/sections/pie.html">Overview</a> at PocketpcDN.com</li>
<li><a href="http://httpp://www.hjgode.de/wp/wp-content/uploads/2010/2/pocket_internet_explorer_cache_settings.pdf">Pocket Internet Explorer Cache Settings</a></li>
<li><a href="http://httpp://www.hjgode.de/wp/wp-content/uploads/2010/2/pie.pdf">AllInOne</a>?</li>
</ul>
<h2>Javascript Error Reporting</h2>
<p>During your tests, you should always switch javascript error reporting to enabled. For that create/change a registry entry:</p>
<pre>REGEDIT4
[HKEY_CURRENT_USER’Software’Microsoft’Internet Explorer’Main]
"ShowScriptErrors"=dword:00000001</pre>
<h2>Alternative Browsers</h2>
<p>Although there are many special browsers for PocketPC devices, most of them are only programmed on top of the PIE engine and extend the object model more, less or not. If you would like to get a more desktop like browser, from programming point of view, you should try the following ones:</p>
<ul type="disc">
<li><a href="http://www.access-company.com/products/netfrontmobile/index.html">NetFront</a> (comes with a better documentation about what it supports and what not)</li>
<li><a href="http://www.mozilla.org/projects/minimo/">Minimo</a> (free, opensource mozilla for mobile devices)</li>
<li><a href="http://www.opera.com/products/mobile/">Opera mobile</a> (always a better, more compatible browser?)</li>
</ul>
<h2>Playing wav files</h2>
<pre>&lt;!-- &lt;bgsound src="file://’windows’asterisk.wav" loop="infinite"&gt; --&gt;
&lt;!-- use refresh to return to page --&gt;
        &lt;object type="audio/x-wav" data="file://’windows’asterisk.wav" width="1" height="1"&gt;
        &lt;param name="FileName" value="file://’windows’asterisk.wav"&gt;
        &lt;param name="hidden" value="true"&gt;
        &lt;param name="loop" value="false"&gt;
        &lt;param name="numloop" value="2"&gt;
        &lt;/object&gt;
&lt;noembed&gt; &lt;p&gt;Could not embed wav file!&lt;/p&gt; &lt;/noembed&gt;
&lt;embed src="file://’windows’asterisk.wav" width="1" height="1" hidden="true" type="audio/x-wav"&gt;
&lt;a href="javascript:document.embeds[0].play()"&gt;Starten&lt;/a&gt;</pre>
<h2>Printing with ITC ActiveX control</h2>
<p><a href="http://httpp://www.hjgode.de/wp/wp-content/uploads/2010/2/htmltestprint.zip">Source and doc</a></p>
<!-- Social Bookmarks BEGIN -->
<div class="social_bookmark">
<a><strong><em>Bookmark It</em></strong></a>
<br />
<div class="d">
<br />
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://del.icio.us/post?url=http%3A%2F%2Fwww.hjgode.de%2Fwp%2F2010%2F02%2F26%2Fthe-pocket-or-mobile-internet-explorer%2F&amp;title=The+Pocket+or+Mobile+Internet+Explorer" rel="nofollow" title="Add to&nbsp;Del.icio.us"><img class="social_img" src="http://www.hjgode.de/wp/wp-content/plugins/social-bookmarks0/images/delicious.png" title="Add to&nbsp;Del.icio.us" alt="Add to&nbsp;Del.icio.us" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fwww.hjgode.de%2Fwp%2F2010%2F02%2F26%2Fthe-pocket-or-mobile-internet-explorer%2F&amp;title=The+Pocket+or+Mobile+Internet+Explorer" rel="nofollow" title="Add to&nbsp;digg"><img class="social_img" src="http://www.hjgode.de/wp/wp-content/plugins/social-bookmarks0/images/digg.png" title="Add to&nbsp;digg" alt="Add to&nbsp;digg" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.google.com/bookmarks/mark?op=edit&amp;output=popup&amp;bkmk=http%3A%2F%2Fwww.hjgode.de%2Fwp%2F2010%2F02%2F26%2Fthe-pocket-or-mobile-internet-explorer%2F&amp;title=The+Pocket+or+Mobile+Internet+Explorer" rel="nofollow" title="Add to&nbsp;Google Bookmarks"><img class="social_img" src="http://www.hjgode.de/wp/wp-content/plugins/social-bookmarks0/images/google.png" title="Add to&nbsp;Google Bookmarks" alt="Add to&nbsp;Google Bookmarks" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.netscape.com/submit/?U=http%3A%2F%2Fwww.hjgode.de%2Fwp%2F2010%2F02%2F26%2Fthe-pocket-or-mobile-internet-explorer%2F&amp;T=The+Pocket+or+Mobile+Internet+Explorer" rel="nofollow" title="Add to&nbsp;Netscape"><img class="social_img" src="http://www.hjgode.de/wp/wp-content/plugins/social-bookmarks0/images/netscape.png" title="Add to&nbsp;Netscape" alt="Add to&nbsp;Netscape" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://www.technorati.com/faves?add=http%3A%2F%2Fwww.hjgode.de%2Fwp%2F2010%2F02%2F26%2Fthe-pocket-or-mobile-internet-explorer%2F" rel="nofollow" title="Add to&nbsp;Technorati"><img class="social_img" src="http://www.hjgode.de/wp/wp-content/plugins/social-bookmarks0/images/technorati.png" title="Add to&nbsp;Technorati" alt="Add to&nbsp;Technorati" /></a>
<a onclick="window.open(this.href, '_blank', 'scrollbars=yes,menubar=no,height=600,width=750,resizable=yes,toolbar=no,location=no,status=no'); return false;" href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u=http%3A%2F%2Fwww.hjgode.de%2Fwp%2F2010%2F02%2F26%2Fthe-pocket-or-mobile-internet-explorer%2F&amp;t=The+Pocket+or+Mobile+Internet+Explorer" rel="nofollow" title="Add to&nbsp;Yahoo My Web"><img class="social_img" src="http://www.hjgode.de/wp/wp-content/plugins/social-bookmarks0/images/yahoo.png" title="Add to&nbsp;Yahoo My Web" alt="Add to&nbsp;Yahoo My Web" /></a>
<br />
</div>
</div>
<!-- Social Bookmarks END -->
]]></content:encoded>
			<wfw:commentRss>http://www.hjgode.de/wp/2010/02/26/the-pocket-or-mobile-internet-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

