Re: Help With XML

2006-12-07 Thread Daniele Corti
Hi Gino, why don't you try to use the javax.xml.parsers package? When you have the xml file in a string write it in a File object myXml, then do: DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance(); DocumentBuilder db = dbf.newDocumentBuilder(); Document doc = db.parse(myXml); t

Help With XML

2006-12-06 Thread Gino Pacitti
Hi All I am working with an SMS company that supplies a Base64 encoded image as part of an XML form submitted to my app. If I am off track please point me in the right direction. I am having it sent to a Direct Action but I am not sure what type of data type I should have... It is being se