Wednesday, December 03, 2008    
Home My Books Blog ColdFusion About Me Back    

Calendar
<< Oct 2008 >>
S M T W T F S
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31  

Search

Categories
 • Acrobat (2) [RSS]
 • Adobe (71) [RSS]
 • AdobeMAX06 (45) [RSS]
 • AdobeMAX07 (59) [RSS]
 • AdobeMAX08 (57) [RSS]
 • AdobeMAX09 (1) [RSS]
 • AIR (148) [RSS]
 • Appearances (140) [RSS]
 • Books (69) [RSS]
 • CFEclipse (14) [RSS]
 • ColdFusion (1179) [RSS]
 • Data Services (20) [RSS]
 • Fish Tank (2) [RSS]
 • Flash (112) [RSS]
 • Flex (385) [RSS]
 • Home Automation (3) [RSS]
 • Jobs (101) [RSS]
 • JRun (13) [RSS]
 • Labs (29) [RSS]
 • LiveCycle (23) [RSS]
 • MAX (189) [RSS]
 • Regular Expressions (15) [RSS]
 • RIA (13) [RSS]
 • SQL (38) [RSS]
 • Stuff (506) [RSS]
 • Tips (CF Studio) (80) [RSS]
 • Tips (CF) (795) [RSS]
 • Tips (Dreamweaver) (91) [RSS]
 • Tips (Flex Builder) (2) [RSS]
 • Using CF (140) [RSS]
 • Wireless (100) [RSS]

Other BLOGs
 • Charlie Arehart
 • Lee Brimelow
 • Ray Camden
 • Christophe Coenraets
 • Sean Corfield
 • Mihai Corlan
 • Cornel Creanga
 • John Dowdell
 • Danny Dura
 • Enrique Duvos
 • Steven Erat
 • Kevin Hoyt
 • Serge Jespers
 • Adam Lehman
 • Duane Nickull
 • Miti Pricope
 • Andrew Shorten
 • Ryan Stewart
 • James Ward
 • Greg Wilson
 • Full As A Goog

RSS Feeds
 • Feed
 • Subscribe

Join my mailing list and find out about new books and other topics of interest.

Thoughts, ideas, tips, musings, and pontifications (not necessarily in that order) by Ben Forta ...
NOTE: This is my personal blog, and the opinions and statements voiced here are my own.

Viewing By Entry / Main
October 8, 2008

Update Samsung BlackJack II To Windows Mobile 6.1

Samsung BlackJack II first shipped with Windows Mobile 6, and newer devices now come with 6.1 pre-installed. Samsung is now providing a 6.1 update for those early BlackJack II devices. One of the most important differences is a dramatically improved SMS client that features message threading (finally). Other improvements include enhancements to the GPS software, homepage customization, and voice command support.

Related Blog Entries

TrackBacks
There are no trackbacks for this entry.

No trackback URL. Trackbacks are only allowed via interactive form.

Comments
I really like 6.1 and have been using it for several weeks now. Having a HTC Tilt I am able to load a cooked ROM and take out all the crap that the providers put in. It's like streamlining XP.

On another note, have you any examples of the socketgateway? I'm thinking that is the way I want to go to have ColdFusion subscribe to the ISY.
# Posted By Gary Funk | 10/8/08 7:55 PM
Gary, glad to hear you got it working. I tried briefly yesterday, but the xfer kept timing out. Will have to try again.

As for a socket gateway, all I have is this (very brief) post: http://www.forta.com/blog/index.cfm?mode=entry&...

How are you liking the ISY?

--- Ben
# Posted By Ben Forta | 10/9/08 11:58 PM
Ben, I did get it working and it gets the data with one small problem. The data is not written to the log file in the proper order.

Here is the gateway CFC I use. The config file has port=1226

cfcomponent
cffunction name="onIncomingMessage" returntype="struct" access="public" output="false"
cfargument name="cfevent" type="struct" required="true" hint="
cfset data = cfevent.data
cfset message = data.message
cflock scope = "Application" timeout = "30" type = "Exclusive"
cffile action = "append" file = "d:\www\isy\log.txt" output = "#message#" addNewLine = "yes"
/cflock
/cffunction
/cfcomponent

Subscribing is easy.

cffunction name="subscribe" access="public" returnType="struct" output="false">

cfset var resp = "" />
cfset var wsStruct = structNew() />
cfset var aSubscriptionParam = StructNew() />
cfset aSubscriptionParam.reportURL = "http://192.168.0.20:1226/" />
cfset aSubscriptionParam.duration = "infinite" />
cfinvoke
webservice="#variables.obj_isy#"
method="subscribe"
username="#variables.username#"
password="#variables.password#">

cfinvokeargument name="subscribe" value="#aSubscriptionParam#" />
/cfinvoke>
cfset resp = getSOAPResponse(variables.obj_isy) />
cfset theVal = xmlSearch(resp,"//s:Body") />
cfset wsStruct = application.xml2struct.ConvertXmlToStruct(theVal[1], StructNew())>
cfreturn wsStruct />
/cffunction>

I would love to work with you on the ISY (ColdFusion and AIR) and would very much like your help on getting the data from the ISY in the proper order. I'm stuck at this point but I continue to work on it hourly.
# Posted By Gary Funk | 10/10/08 2:42 PM

  © Copyright 1997-2008 Ben Forta, All Rights Reserved