Archive for February, 2007

Life at Google - Interview of a Google Employee

Monday, February 26th, 2007

Here, a Google Employee talks about the Work Culture and Life at Google. He had also worked in Microsoft before. Very interesting to read..

tags: , , ,

Cool Gadget - New GTX Smart GPS Shoe Xplorer

Thursday, February 22nd, 2007

  GTXC has designed and released a new Smart GPS Shoe which is built with GPS tracking feature. This shoe can be ideally used for children and elderly to keep track of their location and easily monitor their movements.

The tracking can be done in two ways, either by logging in to the GTX Corp’s user portal and monitor the exact location of the user or via SMS alert sent to your mobile phone when the user crosses the defined area. And this device can last with out a recharge as it is build with proprietary power source. The device can also send information about when it requires battery recharge and also about the status of the device.

Technorati tags: , , , , ,

Funny Video - Apple’s iPhone Commercial

Sunday, February 18th, 2007

Cricket World Cup 2007 - Buy tickets for West Indies World Cup

Thursday, February 15th, 2007

The worldticketshop.com portal is selling tickets for the Cricket World Cup 2007, so buy tickets online and watch your favorite team battle out.

tags: , , ,

How to log SOAP messages for a Tomcat/Axis Web Service

Friday, February 9th, 2007

If you have a web service running under Tomcat using Axis framework and you would like to log all the soap requests and responses, and this can be done by adding the following entries in the sever-config.wsdd file

Add Handler entries

<handler name=”log” type=”java:org.apache.axis.handlers.LogHandler”> <parameter name=”LogHandler.fileName” value=”axis.log” /> </handler>

under Global Configuration tag

<parameter name=”disablePrettyXML” value=”false” />

<requestFlow> <handler type=”log” />

</requestFlow> <responseFlow>

 <handler type=”log” />

 </responseFlow>

transport elements

<transport name=”http” pivot=”java:org.apache.axis.transport.http.HTTPSender” /> <transport name=”local” pivot=”java:org.apache.axis.transport.local.LocalSender” /> <transport name=”java” pivot=”java:org.apache.axis.transport.java.JavaSender” />

The axis.log will get created under the tomcat/bin directory.

tags: , , , , , ,