For anyone who is interested in this kind of thing, I found a solution that works, using cfhttp. I think I could push content using something like this too but I haven't got that far yet.
<!---use a post method to send to address of Blackberry Enterprise Server, using whatever port is setup for MDS (8080 by default) and setting email address or pin for destination, receiving port 7874 by default----> <cfhttp method="post" url="http://myServerIP/[EMAIL PROTECTED]&PORT=7874&REQUESTURI=/" port="8080"> <!---set headers as needed, complete list of header descriptions at http://tinyurl.com/84x5e---> <cfhttpparam type="header" name="X-Rim-Push-Type" value="Browser-Channel"> <cfhttpparam type="header" name="Content-Location" value="http://mySite/myPage"> <cfhttpparam type="header" name="X-Rim-Push-Title" value="Title"> <cfhttpparam type="header" name="X-Rim-Push-Channel-ID" value="UniqueID"> <cfhttpparam type="header" name="X-Rim-Push-Read-Icon-URL" value="http://mySite/myPngFile"> <cfhttpparam type="header" name="X-Rim-Push-Unread-Icon-URL" value="http://mySite/myPngFile"> <cfhttpparam type="header" name="X-Rim-Push-Ribbon-Position" value="1"> </cfhttp> then if you want to later delete it, you can do that by using the same type of thing only specify Browser-Channel-Delete and use the Push-Channel-ID to delete. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Message: http://www.houseoffusion.com/lists.cfm/link=i:4:232614 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

