Hi, this my function
Function login()
searchRequest=CreateObject(“roUrlTransfer”)
searchRequest.SetURL(host() + “?xid=start”)
result = searchRequest.GetToString()
return result
i call it as print login() the debuger looks like…from the request to my host,
<?xml version='1.0' encoding='iso-8859-1'?>
text
username
Hi im active.
but wow can i access to the elements. i try this way,
myxml = login()
list = CreateObject(“roXMLElement”)
list.Parse(myxml)
print list.user.Uname.GetText()
print list.Uname.GetText()
Thank for the help.
