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.
Via: http://www.developer.com/open/article.php/3443951/Developing-Java-Web-Services-with-AXIS.htm
<?xml version="1.0" encoding="UTF-8"?>
<deployment xmlns="http://xml.apache.org/axis/wsdd/"
xmlns:java="http://xml.apache.org/axis/wsdd/providers/java">
<globalConfiguration>
<parameter name="adminPassword" value="admin"/>
<parameter name="attachments.Directory" value="./attachments"/>
<parameter name="attachments.implementation"
value="org.apache.axis.attachments.AttachmentsImpl"/>
<parameter name="sendXsiTypes" value="true"/>
<parameter name="sendMultiRefs" value="true"/>
<parameter name="sendXMLDeclaration" value="true"/>
<parameter name="axis.sendMinimizedElements" value="true"/>
<requestFlow>
<handler type="java:org.apache.axis.handlers.JWSHandler">
<parameter name="scope" value="session"/>
</handler>
<handler type="java:org.apache.axis.handlers.JWSHandler">
<parameter name="scope" value="request"/>
<parameter name="extension" value=".jwr"/>
</handler>
</requestFlow>
</globalConfiguration>
<handler name="LocalResponder"
type="java:org.apache.axis.transport.local.LocalResponder"/>
<handler name="URLMapper"
type="java:org.apache.axis.handlers.http.URLMapper"/>
<handler name="Authenticate"
type="java:org.apache.axis.handlers.SimpleAuthenticationHandler"/>
<service name="AdminService" provider="java:MSG">
<parameter name="allowedMethods" value="AdminService"/>
<parameter name="enableRemoteAdmin" value="false"/>
<parameter name="className" value="org.apache.axis.utils.Admin"/>
<namespace>http://xml.apache.org/axis/wsdd/</namespace>
</service>
<service name="Version" provider="java:RPC">
<parameter name="allowedMethods" value="getVersion"/>
<parameter name="className" value="org.apache.axis.Version"/>
</service>
<transport name="http">
<requestFlow>
<handler type="URLMapper"/>
<handler type="java:org.apache.axis.handlers.http.HTTPAuthHandler"/>
</requestFlow>
</transport>
<transport name="local">
<responseFlow>
<handler type="LocalResponder"/>
</responseFlow>
</transport>
</deployment>
The m2eclipse plugin doesn’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:
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.1</version>
<configuration>
<source>1.6</source>
<target>1.6</target>
</configuration>
</plugin>
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“.
So I was getting a Window’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 “net use” command in the command line… And I saw something interesting… There was a resource connected… IPC$ was connected… So I deleted that resource with “net use (resource name) /delete” and that did it! That fixed the problem and I was able to map the drive no problem… I think that IPC$ is used when you browse to the computer with network neighborhood but I’m not sure… I feel so much better now that I know what has been happening all of those frustrating hours I have fought this problem!
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
Via: http://www.aspdotnetfaq.com/Faq/How-to-clear-your-ASP-NET-applications-Cache.aspx
public void ClearApplicationCache()
{
List<string> keys = new List<string>();
// retrieve application Cache enumerator
IDictionaryEnumerator enumerator = Cache.GetEnumerator();
// copy all keys that currently exist in Cache
while (enumerator.MoveNext())
{
keys.Add(enumerator.Key.ToString());
}
// delete every key from cache
for (int i = 0; i < keys.Count; i++)
{
Cache.Remove(keys[i]);
}
}
Via: everquest.wikkii.com
Changing the color of group member’s “x” 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.
Error: The CustomBinding on the ServiceEndpoint with contract “” 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.
<customBinding>
<binding name="...">
...
<httpTransport></httpTransport>
</binding>
</customBinding>
Via: http://antonis-antoniou.blogspot.com/2011/02/web-services-interoperability-between.html
If you’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 ‘Add more services’ link next to ‘Service settings.’
3. Under the ‘Google services’ section, find Contacts and click the ‘Add it now’ button.