<?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>SmatterChew</title>
	<atom:link href="http://www.smatterchew.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.smatterchew.com</link>
	<description>I searched on it.</description>
	<lastBuildDate>Fri, 11 May 2012 23:15:51 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Disable touchpad Dell Inspiron E1705 Windows 7</title>
		<link>http://www.smatterchew.com/2012/05/11/disable-touchpad-dell-inspiron-e1705-windows-7/</link>
		<comments>http://www.smatterchew.com/2012/05/11/disable-touchpad-dell-inspiron-e1705-windows-7/#comments</comments>
		<pubDate>Fri, 11 May 2012 23:15:51 +0000</pubDate>
		<dc:creator>Moby</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.smatterchew.com/?p=172</guid>
		<description><![CDATA[Apparently, Dell does not provide a 64-bit version of the driver needed to disable the touchpad. You can find a new driver from Synaptics the manufacturer of the hardware.]]></description>
				<content:encoded><![CDATA[<p>Apparently, Dell does not provide a 64-bit version of the driver needed to disable the touchpad.  You can find a new driver from <a href="http://www.synaptics.com/resources/drivers">Synaptics</a> the manufacturer of the hardware.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smatterchew.com/2012/05/11/disable-touchpad-dell-inspiron-e1705-windows-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minimal contents of server-config.wsdd</title>
		<link>http://www.smatterchew.com/2011/12/29/minimal-contents-of-server-config-wsdd/</link>
		<comments>http://www.smatterchew.com/2011/12/29/minimal-contents-of-server-config-wsdd/#comments</comments>
		<pubDate>Thu, 29 Dec 2011 05:18:26 +0000</pubDate>
		<dc:creator>Moby</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.smatterchew.com/?p=153</guid>
		<description><![CDATA[Via: http://www.developer.com/open/article.php/3443951/Developing-Java-Web-Services-with-AXIS.htm &#60;?xml version="1.0" encoding="UTF-8"?&#62; &#60;deployment xmlns="http://xml.apache.org/axis/wsdd/" xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"&#62; &#60;globalConfiguration&#62; &#60;parameter name="adminPassword" value="admin"/&#62; &#60;parameter name="attachments.Directory" value="./attachments"/&#62; &#60;parameter name="attachments.implementation" value="org.apache.axis.attachments.AttachmentsImpl"/&#62; &#60;parameter name="sendXsiTypes" value="true"/&#62; &#60;parameter name="sendMultiRefs" value="true"/&#62; &#60;parameter name="sendXMLDeclaration" value="true"/&#62; &#60;parameter name="axis.sendMinimizedElements" value="true"/&#62; &#60;requestFlow&#62; &#60;handler type="java:org.apache.axis.handlers.JWSHandler"&#62; &#60;parameter name="scope" value="session"/&#62; &#60;/handler&#62; &#60;handler type="java:org.apache.axis.handlers.JWSHandler"&#62; &#60;parameter name="scope" value="request"/&#62; &#60;parameter name="extension" value=".jwr"/&#62; &#60;/handler&#62; &#60;/requestFlow&#62; &#60;/globalConfiguration&#62; &#60;handler name="LocalResponder" type="java:org.apache.axis.transport.local.LocalResponder"/&#62; &#60;handler name="URLMapper" type="java:org.apache.axis.handlers.http.URLMapper"/&#62; &#60;handler <a href='http://www.smatterchew.com/2011/12/29/minimal-contents-of-server-config-wsdd/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>Via: <a href="http://www.developer.com/open/article.php/3443951/Developing-Java-Web-Services-with-AXIS.htm">http://www.developer.com/open/article.php/3443951/Developing-Java-Web-Services-with-AXIS.htm</a></p>
<blockquote><pre>
&lt;?xml version="1.0" encoding="UTF-8"?&gt;
&lt;deployment xmlns="http://xml.apache.org/axis/wsdd/"
            xmlns:java="http://xml.apache.org/axis/wsdd/providers/java"&gt;
 &lt;globalConfiguration&gt;
  &lt;parameter name="adminPassword" value="admin"/&gt;
  &lt;parameter name="attachments.Directory" value="./attachments"/&gt;
  &lt;parameter name="attachments.implementation"
             value="org.apache.axis.attachments.AttachmentsImpl"/&gt;
  &lt;parameter name="sendXsiTypes" value="true"/&gt;
  &lt;parameter name="sendMultiRefs" value="true"/&gt;
  &lt;parameter name="sendXMLDeclaration" value="true"/&gt;
  &lt;parameter name="axis.sendMinimizedElements" value="true"/&gt;
  &lt;requestFlow&gt;
   &lt;handler type="java:org.apache.axis.handlers.JWSHandler"&gt;
    &lt;parameter name="scope" value="session"/&gt;
   &lt;/handler&gt;
   &lt;handler type="java:org.apache.axis.handlers.JWSHandler"&gt;
    &lt;parameter name="scope" value="request"/&gt;
    &lt;parameter name="extension" value=".jwr"/&gt;
   &lt;/handler&gt;
  &lt;/requestFlow&gt;
 &lt;/globalConfiguration&gt;
 &lt;handler name="LocalResponder"
          type="java:org.apache.axis.transport.local.LocalResponder"/&gt;
 &lt;handler name="URLMapper"
          type="java:org.apache.axis.handlers.http.URLMapper"/&gt;
 &lt;handler name="Authenticate"
          type="java:org.apache.axis.handlers.SimpleAuthenticationHandler"/&gt;
 &lt;service name="AdminService" provider="java:MSG"&gt;
  &lt;parameter name="allowedMethods" value="AdminService"/&gt;
  &lt;parameter name="enableRemoteAdmin" value="false"/&gt;
  &lt;parameter name="className" value="org.apache.axis.utils.Admin"/&gt;
  &lt;namespace&gt;http://xml.apache.org/axis/wsdd/&lt;/namespace&gt;
 &lt;/service&gt;
 &lt;service name="Version" provider="java:RPC"&gt;
  &lt;parameter name="allowedMethods" value="getVersion"/&gt;
  &lt;parameter name="className" value="org.apache.axis.Version"/&gt;
 &lt;/service&gt;
 &lt;transport name="http"&gt;
  &lt;requestFlow&gt;
   &lt;handler type="URLMapper"/&gt;
   &lt;handler type="java:org.apache.axis.handlers.http.HTTPAuthHandler"/&gt;
  &lt;/requestFlow&gt;
 &lt;/transport&gt;
 &lt;transport name="local"&gt;
  &lt;responseFlow&gt;
   &lt;handler type="LocalResponder"/&gt;
  &lt;/responseFlow&gt;
 &lt;/transport&gt;
&lt;/deployment&gt;
</pre>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.smatterchew.com/2011/12/29/minimal-contents-of-server-config-wsdd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Eclipse always use default java</title>
		<link>http://www.smatterchew.com/2011/11/02/make-eclipse-always-use-default-java/</link>
		<comments>http://www.smatterchew.com/2011/11/02/make-eclipse-always-use-default-java/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 21:30:49 +0000</pubDate>
		<dc:creator>Moby</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.smatterchew.com/?p=134</guid>
		<description><![CDATA[The m2eclipse plugin doesn&#8217;t use Eclipse defaults, the m2eclipse plugin derives the settings from the POM. So if you want a Maven project to be configured to use the latest version of Java when imported under Eclipse, configure the maven-compiler-plugin appropriately: &#60;plugin&#62; &#160;&#160;&#60;groupId&#62;org.apache.maven.plugins&#60;/groupId&#62; &#160;&#160;&#60;artifactId&#62;maven-compiler-plugin&#60;/artifactId&#62; &#160;&#160;&#60;version&#62;2.1&#60;/version&#62; &#160;&#160;&#60;configuration&#62; &#160;&#160;&#160;&#160;&#60;source&#62;1.6&#60;/source&#62; &#160;&#160;&#160;&#160;&#60;target&#62;1.6&#60;/target&#62; &#160;&#160;&#60;/configuration&#62; &#60;/plugin&#62; Via: http://stackoverflow.com/questions/3539139/what-causes-a-new-maven-project-in-eclipse-to-use-java-1-5-instead-of-java-1-6-b]]></description>
				<content:encoded><![CDATA[<p>The m2eclipse plugin doesn&#8217;t use Eclipse defaults, the m2eclipse plugin derives the settings from the POM. So if you want a Maven project to be configured to use the latest version of Java when imported under Eclipse, configure the maven-compiler-plugin appropriately:</p>
<p><code>&lt;plugin&gt;<br />
&nbsp;&nbsp;&lt;groupId&gt;org.apache.maven.plugins&lt;/groupId&gt;<br />
&nbsp;&nbsp;&lt;artifactId&gt;maven-compiler-plugin&lt;/artifactId&gt;<br />
&nbsp;&nbsp;&lt;version&gt;2.1&lt;/version&gt;<br />
&nbsp;&nbsp;&lt;configuration&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;source&gt;1.6&lt;/source&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;target&gt;1.6&lt;/target&gt;<br />
&nbsp;&nbsp;&lt;/configuration&gt;<br />
&lt;/plugin&gt;<br />
</code></p>
<p>Via: <a href="http://stackoverflow.com/questions/3539139/what-causes-a-new-maven-project-in-eclipse-to-use-java-1-5-instead-of-java-1-6-b">http://stackoverflow.com/questions/3539139/what-causes-a-new-maven-project-in-eclipse-to-use-java-1-5-instead-of-java-1-6-b</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smatterchew.com/2011/11/02/make-eclipse-always-use-default-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VS2010 System.Configuration.ConfigurationSettings.AppSettings is obsolete</title>
		<link>http://www.smatterchew.com/2011/08/25/vs2010-system-configuration-configurationsettings-appsettings-is-obsolete/</link>
		<comments>http://www.smatterchew.com/2011/08/25/vs2010-system-configuration-configurationsettings-appsettings-is-obsolete/#comments</comments>
		<pubDate>Thu, 25 Aug 2011 22:51:26 +0000</pubDate>
		<dc:creator>Moby</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.smatterchew.com/?p=131</guid>
		<description><![CDATA[Via http://www.technoreply.com/fixing-obsolete-configurationsettings-appsettings-in-c-sharp/: To fix it, just add a reference to “System.Configuration.dll“. And change from “ConfigurationSettings.AppSettings” to “ConfigurationManager.AppSettings“.]]></description>
				<content:encoded><![CDATA[<p>Via <a href="http://www.technoreply.com/fixing-obsolete-configurationsettings-appsettings-in-c-sharp/">http://www.technoreply.com/fixing-obsolete-configurationsettings-appsettings-in-c-sharp/</a>:</p>
<blockquote><p>To fix it, just add a reference to “System.Configuration.dll“. And change from “ConfigurationSettings.AppSettings” to “ConfigurationManager.AppSettings“.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.smatterchew.com/2011/08/25/vs2010-system-configuration-configurationsettings-appsettings-is-obsolete/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows: The Network folder specified is currently mapped using a different user name and password</title>
		<link>http://www.smatterchew.com/2011/08/20/windows-the-network-folder-specified-is-currently-mapped-using-a-different-user-name-and-password/</link>
		<comments>http://www.smatterchew.com/2011/08/20/windows-the-network-folder-specified-is-currently-mapped-using-a-different-user-name-and-password/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 16:04:29 +0000</pubDate>
		<dc:creator>Moby</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.smatterchew.com/?p=128</guid>
		<description><![CDATA[So I was getting a Window&#8217;s error: The Network folder specified is currently mapped using a different user name and password. Via http://travisepperson.blogspot.com/2007/01/windows-network-folder-specified-is.html: So I was working on this very problem and thought I would try the &#8220;net use&#8221; command in the command line&#8230; And I saw something interesting&#8230; There was a resource connected&#8230; IPC$ <a href='http://www.smatterchew.com/2011/08/20/windows-the-network-folder-specified-is-currently-mapped-using-a-different-user-name-and-password/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>So I was getting a Window&#8217;s error: The Network folder specified is currently mapped using a different user name and password.</p>
<p>Via <a href="http://travisepperson.blogspot.com/2007/01/windows-network-folder-specified-is.html">http://travisepperson.blogspot.com/2007/01/windows-network-folder-specified-is.html</a>:</p>
<blockquote><p>So I was working on this very problem and thought I would try the &#8220;net use&#8221; command in the command line&#8230; And I saw something interesting&#8230; There was a resource connected&#8230; IPC$ was connected&#8230; So I deleted that resource with &#8220;net use (resource name) /delete&#8221; and that did it! That fixed the problem and I was able to map the drive no problem&#8230; I think that IPC$ is used when you browse to the computer with network neighborhood but I&#8217;m not sure&#8230; I feel so much better now that I know what has been happening all of those frustrating hours I have fought this problem!</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.smatterchew.com/2011/08/20/windows-the-network-folder-specified-is-currently-mapped-using-a-different-user-name-and-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Install Google Music on HTC Hero</title>
		<link>http://www.smatterchew.com/2011/06/09/install-google-music-on-htc-hero/</link>
		<comments>http://www.smatterchew.com/2011/06/09/install-google-music-on-htc-hero/#comments</comments>
		<pubDate>Thu, 09 Jun 2011 23:43:08 +0000</pubDate>
		<dc:creator>Moby</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.smatterchew.com/?p=123</guid>
		<description><![CDATA[Update the OpenGL version in the build.prop file. Set ro.opengles.version = 131072. Via: How to run google music app on htc hero , cyanogen 7.0.3 and Read only file system on Android]]></description>
				<content:encoded><![CDATA[<p>Update the OpenGL version in the build.prop file.  Set ro.opengles.version = 131072.</p>
<p>Via: <a href="http://forum.cyanogenmod.com/topic/24502-google-music/page__p__202701#entry202701">How to run google music app on htc hero , cyanogen 7.0.3</a> and  <a href="http://stackoverflow.com/questions/6066030/read-only-file-system-on-android">Read only file system on Android</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smatterchew.com/2011/06/09/install-google-music-on-htc-hero/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ASP.Net clear current cache</title>
		<link>http://www.smatterchew.com/2011/04/17/asp-net-clear-current-cache/</link>
		<comments>http://www.smatterchew.com/2011/04/17/asp-net-clear-current-cache/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 15:00:31 +0000</pubDate>
		<dc:creator>Moby</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.smatterchew.com/?p=119</guid>
		<description><![CDATA[Via: http://www.aspdotnetfaq.com/Faq/How-to-clear-your-ASP-NET-applications-Cache.aspx &#160;&#160;&#160; public void ClearApplicationCache() &#160;&#160;&#160; { &#160;&#160;&#160; &#160;&#160;&#160; List&#60;string&#62; keys = new List&#60;string&#62;(); &#160; &#160;&#160;&#160; &#160;&#160;&#160; // retrieve application Cache enumerator &#160;&#160;&#160; &#160;&#160;&#160; IDictionaryEnumerator enumerator = Cache.GetEnumerator(); &#160; &#160;&#160;&#160; &#160;&#160;&#160; // copy all keys that currently exist in Cache &#160;&#160;&#160; &#160;&#160;&#160; while (enumerator.MoveNext()) &#160;&#160;&#160; &#160;&#160;&#160; { &#160;&#160;&#160; &#160;&#160;&#160; &#160;&#160;&#160; keys.Add(enumerator.Key.ToString()); &#160;&#160;&#160; &#160;&#160;&#160; } <a href='http://www.smatterchew.com/2011/04/17/asp-net-clear-current-cache/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>Via: <a href="http://www.aspdotnetfaq.com/Faq/How-to-clear-your-ASP-NET-applications-Cache.aspx">http://www.aspdotnetfaq.com/Faq/How-to-clear-your-ASP-NET-applications-Cache.aspx</a></p>
<div style="background: rgb(255, 254, 255) none repeat scroll 0% 50%; font-family: Courier New; font-size: 10pt; color: black; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-initial; -moz-background-inline-policy: -moz-initial;">
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; <span style="color: blue;">public</span> <span style="color: blue;">void</span> ClearApplicationCache()</p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; {</p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: rgb(43, 145, 175);">List</span>&lt;<span style="color: blue;">string</span>&gt; keys = <span style="color: blue;">new</span> <span style="color: rgb(43, 145, 175);">List</span>&lt;<span style="color: blue;">string</span>&gt;();</p>
<p style="margin: 0px;">&nbsp;</p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: green;">// retrieve application Cache enumerator</span></p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: rgb(43, 145, 175);">IDictionaryEnumerator</span> enumerator = Cache.GetEnumerator();</p>
<p style="margin: 0px;">&nbsp;</p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: green;">// copy all keys that currently exist in Cache</span></p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: blue;">while</span> (enumerator.MoveNext())</p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {</p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; keys.Add(enumerator.Key.ToString());</p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }</p>
<p style="margin: 0px;">&nbsp;</p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: green;">// delete every key from cache</span></p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <span style="color: blue;">for</span> (<span style="color: blue;">int</span> i = 0; i &lt; keys.Count; i++)</p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; {</p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Cache.Remove(keys[i]);</p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; }</p>
<p style="margin: 0px;">&nbsp;&nbsp;&nbsp; }</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.smatterchew.com/2011/04/17/asp-net-clear-current-cache/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EverQuest change color of group on map</title>
		<link>http://www.smatterchew.com/2011/04/16/everquest-change-color-of-group-on-map/</link>
		<comments>http://www.smatterchew.com/2011/04/16/everquest-change-color-of-group-on-map/#comments</comments>
		<pubDate>Sun, 17 Apr 2011 02:20:43 +0000</pubDate>
		<dc:creator>Moby</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.smatterchew.com/?p=117</guid>
		<description><![CDATA[Via: everquest.wikkii.com Changing the color of group member&#8217;s &#8220;x&#8221; on map Go to your file UI_Playername_Servername.ini. Look for [MapViewWnd] ShowGroup=true GroupColor.red=0 GroupColor.green=0 GroupColor.blue=0 Change the GroupColor to any color you want. You have to pick numbers between 0 and 255. As far as I know, there is no way to change your own arrow.]]></description>
				<content:encoded><![CDATA[<p>Via: <a href="http://everquest.wikkii.com/wiki/User_Interface#Changing_the_color_of_group_member.27s_.22x.22_on_map">everquest.wikkii.com</a></p>
<p>Changing the color of group member&#8217;s &#8220;x&#8221; on map</p>
<p>Go to your file UI_Playername_Servername.ini.<br />
Look for [MapViewWnd]<br />
ShowGroup=true<br />
GroupColor.red=0<br />
GroupColor.green=0<br />
GroupColor.blue=0</p>
<p>Change the GroupColor to any color you want. You have to pick numbers between 0 and 255. As far as I know, there is no way to change your own arrow.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.smatterchew.com/2011/04/16/everquest-change-color-of-group-on-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CustomBinding on the ServiceEndpoint lacks a TransportBindingElement</title>
		<link>http://www.smatterchew.com/2011/02/07/custombinding-on-the-serviceendpoint-lacks-a-transportbindingelement/</link>
		<comments>http://www.smatterchew.com/2011/02/07/custombinding-on-the-serviceendpoint-lacks-a-transportbindingelement/#comments</comments>
		<pubDate>Tue, 08 Feb 2011 00:32:47 +0000</pubDate>
		<dc:creator>Moby</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.smatterchew.com/?p=110</guid>
		<description><![CDATA[Error: The CustomBinding on the ServiceEndpoint with contract &#8220;&#8221; lacks a TransportBindingElement. Every binding must have at least one binding element that derives from TransportBindingElement. My fix for this was adding the empty httpTransport markup to the web.config. &#60;customBinding&#62; &#60;binding name="..."&#62; ... &#60;httpTransport&#62;&#60;/httpTransport&#62; &#60;/binding&#62; &#60;/customBinding&#62; Via: http://antonis-antoniou.blogspot.com/2011/02/web-services-interoperability-between.html]]></description>
				<content:encoded><![CDATA[<p>Error: The CustomBinding on the ServiceEndpoint with contract &#8220;&#8221; lacks a TransportBindingElement.  Every binding must have at least one binding element that derives from TransportBindingElement.</p>
<p>My fix for this was adding the empty <strong>httpTransport</strong> markup to the web.config.</p>
<pre><code>&lt;customBinding&gt;
  &lt;binding name="..."&gt;
    ...
    <strong>&lt;httpTransport&gt;&lt;/httpTransport&gt;</strong>
  &lt;/binding&gt;
&lt;/customBinding&gt;</code></pre>
<p>Via: <a href="http://antonis-antoniou.blogspot.com/2011/02/web-services-interoperability-between.html">http://antonis-antoniou.blogspot.com/2011/02/web-services-interoperability-between.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.smatterchew.com/2011/02/07/custombinding-on-the-serviceendpoint-lacks-a-transportbindingelement/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Voice Contacts Forbidden</title>
		<link>http://www.smatterchew.com/2011/01/21/google-voice-contacts-forbidden/</link>
		<comments>http://www.smatterchew.com/2011/01/21/google-voice-contacts-forbidden/#comments</comments>
		<pubDate>Fri, 21 Jan 2011 22:59:26 +0000</pubDate>
		<dc:creator>Moby</dc:creator>
				<category><![CDATA[Stuff]]></category>

		<guid isPermaLink="false">http://www.smatterchew.com/?p=107</guid>
		<description><![CDATA[via: http://www.google.com/support/forum/p/voice/thread?tid=2fb1e7b59bd97d92&#038;hl=en&#038;fid=2fb1e7b59bd97d920004907799acee5 If you&#8217;re a Google Apps domain admin, you can turn on Contacts service for a Google Apps domain by following the steps below: 1. Sign in to your Google Apps control panel at http://www.google.com/a/[yourdomainname] 2. Click the &#8216;Add more services&#8217; link next to &#8216;Service settings.&#8217; 3. Under the &#8216;Google services&#8217; section, find Contacts <a href='http://www.smatterchew.com/2011/01/21/google-voice-contacts-forbidden/' class='excerpt-more'>[...]</a>]]></description>
				<content:encoded><![CDATA[<p>via: <a href="http://www.google.com/support/forum/p/voice/thread?tid=2fb1e7b59bd97d92&#038;hl=en&#038;fid=2fb1e7b59bd97d920004907799acee5">http://www.google.com/support/forum/p/voice/thread?tid=2fb1e7b59bd97d92&#038;hl=en&#038;fid=2fb1e7b59bd97d920004907799acee5</a></p>
<blockquote><p>If you&#8217;re a Google Apps domain admin, you can turn on Contacts service for a Google Apps domain by following the steps below:<br />
1. Sign in to your Google Apps control panel at http://www.google.com/a/[yourdomainname]<br />
2. Click the &#8216;Add more services&#8217; link next to &#8216;Service settings.&#8217;<br />
3. Under the &#8216;Google services&#8217; section, find Contacts and click the &#8216;Add it now&#8217; button.</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.smatterchew.com/2011/01/21/google-voice-contacts-forbidden/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
