The only thing holding me back is that the client I would use this for is in the medical industry and security is a major concern. I would need to do all of the authentication and data transfer using SSL which isn't available in Rev yet. Have you had to address security concerns with any of your current implementations?
Thanks,
-- Trevor DeVore Blue Mango Multimedia [EMAIL PROTECTED]
On Jan 15, 2004, at 12:07 PM, Jerry Daniels wrote:
I'll jump in here a sec, too...Chipp can talk about how we get data TO the server, perhaps?
I like "JML", my own circumstance-driven approach to minimal self-describing data:
<b64405633704> -- unique identifier (char 1 = year; the integer is the ticks at time of creation of record)
<first_name>Jerry</first_name>
<last_name>Daniels</last_name>
<user_name>mato.kola</user_name>
<password>123</password>
<email>[EMAIL PROTECTED]</email>
<picture>false</picture>
<home_phone>512-xxx-xxxx</home_phone>
<mobile_phone>512-698-MATO</mobile_phone>
<work_phone>512-288-1485</work_phone>
<ext_phone></ext_phone>
<address>5 Concord Circle</address>
<city>Austin</city>
<state>TX</state>
<zip>78737</zip>
<country>USA</country>
<contacts>EV</contacts>
</b64405633704>
This is data coming back from PHP to Rev.
I extract particular tagged data with this handler:
function getTagData theTagData,theTagName
filter theTagData with "<" & theTagName & ">*"
replace "<" & theTagName & ">" with "" in theTagData
replace "</" & theTagName & ">" with "" in theTagData
replace "|" with tab in theTagData
replace "\" with return in theTagData
replace "/***---***/" with return in theTagData --> Chipp likes this one
return theTagData
end getTagData
_______________________________________________ use-revolution mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/use-revolution
