Saturday, September 22, 2007

Sync Google Calendar with Calendar on Pocket PC

ActiveGcSync Project Page

ActiveGcSync is a free utility that synchronizes Google Calendar to a Windows Mobile device. Two-way synchronization is done, and ActiveGcSync supports running in the background and auto-updating the calendars on a schedule.

ActiveGcSync has been tested on Windows Mobile 5 and Windows Mobile 6. It runs on both Smartphones (no touch screen) and Pocket PCs (with touch screen).

ActiveGcSync includes support for recurring events and exceptions to recurring events. It supports mulitple time zones for all events. As of version 1.2, ActiveGcSync only supports one Google Calendar to be synchronized.

Thursday, September 20, 2007

I-Style PIC Microcontroller Learning Kit

Sorry. This post was not available in English.
คลิกที่ เพื่ออ่านบทความเป็นภาษาไทย















Thursday, September 13, 2007

NuSOAP & PHP 5.2.2 problem

NuSOAP has problem with PHP 5.2.2. It won't work with this version of PHP.

At first, it didn't go into webservice's function.
So I fixed it according to this post.
http://www.jamesnetherton.com/blog/index.cfm/2007/6/6/HTTPRAWPOSTDATA-with-nusoap-on-PHP-522
HTTP_RAW_POST_DATA with nusoap on PHP 5.2.2

Posted by James Netherton | Wednesday 06 June 2007 1:02 PM | In PHP

I just fixed a weird issue where I had a Flex client invoking a PHP Nusoap SOAP web service.

Whenever the client was making requests to the PHP page, I kept getting the SOAP service overview HTML content being returned. I var_dumped the $HTTP_RAW_POST_DATA and it was returning NULL.

I had to change:
$HTTP_RAW_POST_DATA = isset($HTTP_RAW_POST_DATA) ? $HTTP_RAW_POST_DATA : ”;


to:
$HTTP_RAW_POST_DATA = file_get_contents(”php://input”);


Everything started working correctly after making this change.

Apparently there is a bug in PHP 5.2.2 with HTTP_RAW_POST_DATA and SOAP


Now it can go into websevice's function, but still didn't return the result.
(It has no problem with PHP 5.2.1)

So I upgraded to PHP 5.2.4 from http://remi.collet.free.fr
Now NuSOAP works fine.