Sunday, January 31, 2010

Upgrade Nokia 5800 (RM-428) firmware to v 40

1. Use NSS to Switch product code to 0559682

2. Use NSU to update/re-install your firmware to 31.2.101. (I had to reinstall. It did not work without reinstall)

3. After you have updated, type *#0000# into your phone's dialer and select "Check for updates" from the options menu of the page that appears. If your phone is configured correctly, it will find v40.2.005 and ask if you would like to update. If so, you're done, congratulations.

Monday, March 17, 2008

Call a web service from Rational ClearQuest hook

Dim oXMLDoc, oXMLHTTP

Set oXMLHTTP = CreateObject("MSXML2.XMLHTTP.3.0")

Set oXMLDoc = CreateObject("MSXML2.DOMDocument")

' oXMLHTTP.onreadystatechange = getRef("HandleStateChange")

call oXMLHTTP.open("POST","http://localhost:3166/CQWS.asmx/InsertBaseCM2",False)

call oXMLHTTP.setRequestHeader("Content-Type","application/x-www-form-urlencoded")

call oXMLHTTP.send("basecmdata=TEST")
if(oXMLHTTP.readyState = 4) then

dim szResponse: szResponse = oXMLHTTP.responseText

' Msgbox(oXMLHTTP.responseText)
call oXMLDoc.loadXML(szResponse)

if(oXMLDoc.parseError.errorCode <> 0) then

call msgbox(oXMLDoc.parseError.reason)

else

call msgbox(oXMLDoc.getElementsByTagName("string")(0).childNodes(0).text)

end if

end if

Saturday, March 15, 2008

A Rational ClearQuest web service in VB.NET

A web service to submit and/or modify records in IBM Rational ClearQuest.

Download the web service application and a sample client application:
http://rapidshare.com/files/100304234/CQWS.zip.html