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.
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.
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
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.