Jump to content

Lavonio

Members
  • Posts

    9
  • Joined

  • Last visited

Lavonio's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Hi, I have a script that downloads attachments from Outlook accounts for processing, but I have run into a problem, sometimes these attachments are themselves messages (they appear as .msg files after downloading) How do I open them so that I can extract the attachments in those .msg files? Thanks in advance for your ideas.
  2. Hi, I'm new to this udf, and I have a question, is it possible to edit existing pdf files? If not, do you know of another udf or a way to edit existing files? Thanks for your reply
  3. That gets the problem, THANKS!!!
  4. What I need to retrieve are the values of attributes in node "Comprobante", no need to use _XMLDomWrapper, I tried adding the following two lines to your script: $comprobante = $oXML.selectNodes("/root/Comprobante") ConsoleWrite("Comprobante = " & $comprobante & @CR) Still nothing, thanks for the tip
  5. I need some help with opening xml files. The script I am writing has to get data from a couple of attributes in the xml files, currently my problem is that I receive two types of xml. I do not know which type of xml I am receiving, and on opening the xml, if it is one of the types (version = 3.2) I can read it ok, but I don't seem to be able to open the other version to extract the data I need. I am using _XMLDomWrapper, so far this is the code: Global $objDoc = 0 #include <_XMLDomWrapper.au3> $sXMLFile = "B22.xml" ConsoleWrite("Opening " & $sXMLFile & "..." ) $result = _XMLFileOpen($sXMLFile, 'xmlns:cfdi="http://www.sat.gob.mx/cfd/3"') ConsoleWrite( "$result = " & $result & "...") If $result = -1 Then ConsoleWrite("Error opening xml file" & $sXMLFile & @CR) Exit EndIf $version = _XMLGetAttrib("/cfdi:Comprobante", "version") ConsoleWrite("Version " & $version & " Error: " & @error & @CR) If $version = "3.2" Then $rfc = _XMLGetAttrib("/cfdi:Comprobante/cfdi:Emisor", "rfc") $raz = _XMLGetAttrib("/cfdi:Comprobante/cfdi:Emisor", "nombre") Else $objDoc = 0 ConsoleWrite( @CR & "File is 2.2, opening: " & $sXMLFile & "..." & @CR ) $result = _XMLFileOpen($sXMLFile, 'xmlns="http://www.sat.gob.mx/cfd/2"') ConsoleWrite( "$result = " & $result & "...") $version = _XMLGetAttrib("/Comprobante", "version") ConsoleWrite("Version " & $version & " Error: " & @error & @CR) If $result = -1 Then ConsoleWrite("Error opening xml file" & $sXMLFile & @CR) Exit EndIf $rfc = _XMLGetAttrib("/Comprobante/Emisor", "rfc") $raz = _XMLGetAttrib("/Comprobante/Emisor", "nombre") EndIf ConsoleWrite("RFC: " & $rfc & " Nombre: " & $raz & @CR ) When I use it with file A32.xml it correctly displays the data, but when using file B22.xml I only get "-1" Thanks in advance for your help A32.xml B22.xml
  6. Sorry for the delay, I had no time to test other options and was involved in other things. $objDoc = 0 indeed closes the file when it is open by the script, tested in another script and works fine. What I think is happening is that another application that I send the xml file to is locking it, so I can not move it. Solved this by moving the file first and then sending it to the application. Thanks for your help and time
  7. Thanks for the tip, but releasing $objDoc did not work ¿any other suggestions?
  8. Is there any way to close an open xml file? I made a script that needs to move the file to a new folder and since it was open, the move command did not work.
×
×
  • Create New...