Does creation of new xml file captures latest value?

HI All,
say for instance, if web port has been changed from 8000 to 80 and after this change xml file gets corrupted in apps tier...
Does creation of new xml file in apps tier captures latest value of web port 80 and all other latest changes made so far?
Thanks for your time...

HI All,
say for instance, if web port has been changed from
8000 to 80 and after this change xml file gets
corrupted in apps tier...
Does creation of new xml file in apps tier captures
latest value of web port 80 and all other latest
changes made so far?
Thanks for your time...If autoconfig is not run after the changes are made to the context file, and the file is lost then the changes are lost.

Similar Messages

  • Help with creating a new XML file from an existing DOM tree!!

    i want to create a new XML file from an existing DOM tree
    i used this code to create a new document:
    static public Document createDocument(String fileName) throws ParserConfigurationException//,IOException,SAXException
              try {
                   DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                   factory.setIgnoringComments(true);
                   factory.setIgnoringElementContentWhitespace(true);
                   factory.setValidating(true);
                   DocumentBuilder builder =factory.newDocumentBuilder();
                   return builder.newDocument();
    //          handle exception creating DocumentBuilder
              catch ( ParserConfigurationException parserError ) {
                        throw new ParserConfigurationException();
              }then i used this code to transform the DOM :
    public void exportDocument(Document document) {
              try {
                   Source xmlSource = new DOMSource( document );
                   Result result = new StreamResult( System.out );
                   TransformerFactory transformerFactory =
                        TransformerFactory.newInstance();
                   Transformer transformer =transformerFactory.newTransformer();
                   transformer.setOutputProperty( "indent", "yes" );
                   transformer.transform( xmlSource, result );
           //then catching the exceptions
    But the file was not created and i didn't find where can i specify the DTD that the XML file should use and where can i enter the name of the XML file itself
    Another questoin can i write a DTD file dynamically during the execution of the program??

    Cross-post: http://forum.java.sun.com/thread.jspa?threadID=784467&messageID=4459240#4459240

  • How to create new XML file using retreived XML content by using SAX API?

    hi all,
    * How to create new XML file using retreived XML content by using SAX ?
    * I have tried my level best, but output is coming invalid format, my code is follows,
    XMLFileParser.java class :-
    import java.io.StringReader;
    import java.io.StringWriter;
    import javax.xml.transform.OutputKeys;
    import javax.xml.transform.Transformer;
    import javax.xml.transform.TransformerConfigurationException;
    import javax.xml.transform.TransformerException;
    import javax.xml.transform.TransformerFactory;
    import javax.xml.transform.dom.DOMResult;
    import javax.xml.transform.sax.SAXSource;
    import javax.xml.transform.sax.SAXTransformerFactory;
    import javax.xml.transform.sax.TransformerHandler;
    import javax.xml.transform.stream.StreamResult;
    import org.w3c.dom.Document;
    import org.xml.sax.Attributes;
    import org.xml.sax.InputSource;
    import org.xml.sax.SAXException;
    import org.xml.sax.helpers.XMLFilterImpl;
    public class PdfParser extends XMLFilterImpl {
        private TransformerHandler handler;
        Document meta_data;
        private StringWriter meta_data_text = new StringWriter();
        public void startDocument() throws SAXException {
        void startValidation() throws SAXException {
            StreamResult streamResult = new StreamResult(meta_data_text);
            SAXTransformerFactory factory = (SAXTransformerFactory) SAXTransformerFactory.newInstance();
            try
                handler = factory.newTransformerHandler();
                Transformer transformer = handler.getTransformer();
                transformer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");
                transformer.setOutputProperty(OutputKeys.INDENT, "yes");
                handler.setResult(streamResult);
                handler.startDocument();
            catch (TransformerConfigurationException tce)
                System.out.println("Error during the parse :"+ tce.getMessageAndLocation());
            super.startDocument();
        public void startElement(String namespaceURI, String localName,
                String qualifiedName, Attributes atts) throws SAXException {
            handler.startElement(namespaceURI, localName, qualifiedName, atts);
            super.startElement(namespaceURI, localName, qualifiedName, atts);
        public void characters(char[] text, int start, int length)
                throws SAXException {
            handler.characters(text, start, length);
            super.characters(text, start, length);
        public void endElement(String namespaceURI, String localName,
                String qualifiedName) throws SAXException {
            super.endElement("", localName, qualifiedName);
            handler.endElement("", localName, qualifiedName);
        public void endDocument() throws SAXException {
        void endValidation() throws SAXException {
            handler.endDocument();
            try {
                TransformerFactory transfactory = TransformerFactory.newInstance();
                Transformer trans = transfactory.newTransformer();
                SAXSource sax_source = new SAXSource(new InputSource(new StringReader(meta_data_text.toString())));
                DOMResult dom_result = new DOMResult();
                trans.transform(sax_source, dom_result);
                meta_data = (Document) dom_result.getNode();
                System.out.println(meta_data_text);
            catch (TransformerConfigurationException tce) {
                System.out.println("Error occurs during the parse :"+ tce.getMessageAndLocation());
            catch (TransformerException te) {
                System.out.println("Error in result transformation :"+ te.getMessageAndLocation());
    } CreateXMLFile.java class :-
    Sax.startDocument();
    Sax.startValidation();
    Sax.startElement("", "pdf", "pdf", new AttributesImpl());
    Sax.startElement("", "basic-metadata", "basic-metadata", new AttributesImpl());          
    String xmp_str = new String(meta_data.getByteArray(),"UTF8");
    char[] xmp_arr = xmp_str.toCharArray();
    Sax.characters(xmp_arr, 0, xmp_arr.length);
    Sax.endElement("", "pdf", "pdf");
    Sax.endValidation();
    Sax.endDocument();
    Sax.endElement("", "basic-metadata", "basic-metadata");* In CreateXMLFile.java
    class, I have retreived the xml content in the meta_data object, after that i have converted into character array and this will be sends to SAX
    * In this case , the XML file created successfully but the retreived XML content added as an text in between basic-metadata Element, that is, retreived XML content
    is not an XML type text, it just an Normal text Why that ?
    * Please help me what is the problem in my code?
    Cheers,
    JavaImran

    Sax.startDocument();
    Sax.startValidation();
    Sax.startElement("", "pdf", "pdf", new AttributesImpl());
    Sax.startElement("", "basic-metadata", "basic-metadata", new AttributesImpl());          
    String xmp_str = new String(meta_data.getByteArray(),"UTF8");
    char[] xmp_arr = xmp_str.toCharArray();
    Sax.characters(xmp_arr, 0, xmp_arr.length);
    </code><code>Sax.endElement("", "basic-metadata", "basic-metadata");</code>
    <code class="jive-code jive-java">Sax.endElement("", "pdf", "pdf");
    Sax.endValidation();
    Sax.endDocument();     
    * I HAVE CHANGED MY AS PER YOUR SUGGESTION, NOW SAME RESULT HAS COMING.
    * I AM NOT ABLE TO GET THE EXACT OUTPUT.,WHY THAT ?
    Thanks,
    JavaImran{code}

  • Automate creation of web.xml file for tomcat 4.1.29

    hi , this is with ref to Tomcat 4.1.29, if i am correct, each Servlet in the application has to be mentioned in the web.xml file for the Tomcat to know about it. Is there any way to automate the creation of web.xml file , depending on the contents of the Servlet folder of the application. Any way to escape from writing each Servlet name in web.xml file.
    rc

    Hello,
    Maybe you should check if you can use Ant tool to do
    that. I am not sure if it can help u.
    Zeph.
    http://ant.apache.org/
    It will, specially if used in conjunction with XDoclets :
    http://xdoclet.sourceforge.net/
    XDoclet has Ant tasks to generate web.xml files.

  • How fast does Apple produce new RAW files for new cameras? I want to buy a D7100 wich is not supported in the present version?

    How fast does Apple produce new RAW files for new cameras? I want to buy a D7100 wich is not supported in the present version?

    Jeannot7 wrote:
    I'm interested in seeing who gets the D7100 support first? Apple or Adobe!! I will go with the one that gets it out first.
    FWIW,
    Adobe keeps a quarterly release schedule for RAW updates. The current Lightroom 4.4 RC expires on 5/31/2013 which typically is an indication that the official release will be close to that date. According to the current list of new supported cameras, the Nikon D7100 is not slated to be supported (but that could change on release).
    http://labs.adobe.com/technologies/lightroom4-4/?tabID=details#tabTop
    The most likely time frame for Adobe support of the D7100 will be sometime in August or September 2013 (although there will probably be a Lightroom 4.5 RC available prior to that for testing purposes).

  • SAX: How to create new XML file using SAX parser

    Hi,
    Please anybody help me to create a XML file using the Packages in the 5.0 pack of java. I have successfully created it reading the tag names and values from database using DOM but can i do this using SAX.
    I am successful to read XML using SAX, now i want to create new XML file for some tags and its values using SAX.
    How can i do this ?
    Sachin Kulkarni

    SAX is a parser, not a generator.Well,
    you can use it to create an XML file too. And it will take care of proper encoding, thus being much superior to a normal textwriter:
    See the following code snippet (out is a OutputStream):
    PrintWriter pw = new PrintWriter(out);
          StreamResult streamResult = new StreamResult(pw);
          SAXTransformerFactory tf = (SAXTransformerFactory) TransformerFactory.newInstance();
          //      SAX2.0 ContentHandler.
          TransformerHandler hd = tf.newTransformerHandler();
          Transformer serializer = hd.getTransformer();
          serializer.setOutputProperty(OutputKeys.ENCODING, "UTF-8");//
          serializer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM,"pdfBookmarks.xsd");
          serializer.setOutputProperty(OutputKeys.DOCTYPE_SYSTEM,"http://schema.inplus.de/pdf/1.0");
          serializer.setOutputProperty(OutputKeys.METHOD,"xml");
          serializer.setOutputProperty(OutputKeys.INDENT, "yes");
          hd.setResult(streamResult);
          hd.startDocument();
          //Get a processing instruction
          hd.processingInstruction("xml-stylesheet","type=\"text/xsl\" href=\"mystyle.xsl\"");
          AttributesImpl atts = new AttributesImpl();
          atts.addAttribute("", "", "someattribute", "CDATA", "test");
          atts.addAttribute("", "", "moreattributes", "CDATA", "test2");
           hd.startElement("", "", "MyTag", atts);
    String curTitle = "Something inside a tag";
              hd.characters(curTitle.toCharArray(), 0, curTitle.length());
        hd.endElement("", "", "MyTag");
          hd.endDocument();
    You are responsible for proper nesting. SAX takes care of encoding.
    Hth
    ;-) stw

  • Multitrack Audio - save as does not create marker xml file

    Hi,
    I'm new to Flash and have been following the quick starts, forums etc.I'm currently trialling CS 4 and Soundbooth.
    I want to create a swf with an flvplayer. The flv file that I want to import contains audio only.
    I have created an asnd file - which is a compilation of 16 audio tracks (so multitrack) but have placed all the tracks on one audio panel.
    Each of the individual asnd files have a navigation marker inserted at the start of the file.
    when I play the compilation in Soundbooth I can jump to the start of the next track by clicking the fast forward button.
    after encoding the asnd file to flv using media encoder, and then using import video in Flash, the media player does not respond to the navigation markers, which should have become cue points if I am following the tutorials correctly.
    Also in Soundbooth I do not have the option to save as - flv file.
    if I open an individual track and then navigate to Export -> markers, an xml file is created for that track only.
    when I try to export -> markers on the multi track file this option is greyed out (disabled)
    I did try the Export -> MultiTrack Mixdown, which gives me a wav file but no xml file.
    Inserting cue points in Flash only allows me to use action script. I cannot insert navigation points.
    Please can you guide me as to what I'm doing wrong, and how best to resolve this issue?
    thanks
    Helen

    Hi again,
    I've found a work around - and thought I'd post it in case anyone else runs into this problem.
    Markers cannot be added to the multitrack file - only to each sound clip.
    So I saved the file as mp3 and then exported the markers from the mp3 version.
    then in Media Encoder, when encoding the mp3 file, I selected the settings tab - unchecked video and imported the marker xml file before encoding.
    now the navigation cue points work in the flvplayer.
    Helen

  • Adobe not allowing import of XML file captured from Media Express through Black Magic capture card

    I have been going crazy trying to find a way to import the XML files to fix the digitized look Adobe capture gave my footage. Someone help me
    These are not XML from Final Cut. They are files saved from Media Express, a Black magic design program used for Capturing.
    THANK YOU.
    Please email me if you know how to fix this
    [email protected]
    THANKS AGAIN!

    Wouldn't it be more appropriate to open the actual media files captured with the program?

  • Does FC Express import XML files?

    I just want to be ABSOLUTELY clear when I go to the client.
    I have a FCP HD2 project (the most recent FCP) that has only just been started. Simple butt edits, no effects, no transitions. If I create an XML file, with the lowest settings, can I import that into FC Express without loosing to much?

    No. FCE does not support XML, nor does it support importing projects from FCPro.

  • Resisting the creation of new log files when SQL SERVER is restarted

    Hi,
    I know that when SQL server is restarted new log files are created. But is it possible to resist creating new log fils and insert log data in the existing log files that are used before restarting the sql server

    Hello,
    I guess Raghvendra answered your question. And as per your previous post its not clear what you want to ask an you did not revert. Again if your issue is solved appreciate if you can please mark the answer and vote the posts helpful.
     Can I continue to log in the same file.?
    What does this line mean exactly ? Yes SQL Server will continue to use same transaction log file(LDF file) for writing information as it was using before shutdown. If you are talking about errorlog file a new errorlog file would be created which you can
    read using
    sp_readerrorlog
    Even if you stopped SQL Server service mistakenly its not that server is gone. Yes when you stopped the server all inflight transactions are rolled back. And when SQL Server would come online it would undergo crash recovery and would bring all the databases
    online by reading transaction log file and performing redo and undo of information. All committed transaction would be rolled forward and uncommitted would be rolled back.
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it
    My Technet Wiki Article
    MVP

  • Creation of hierarchical XML file

    Hi,
    I  have a requirement to create hierarchical XML file... the levels are mentioned...
    any idea whihc FM to be used here?
    Regards,
    Poonam

    Hi Poonam,
    Please describe the problem in detail...
    The post is really leads nowhere... nobody can understand what exactly u r loking for
    Babu

  • Error While doing reverse engineering on XML file

    I am getting the error when I try to do reverse-engineering on a xml file.
    I have set up topology like this:
    JDBC Driver: com.sunnopsis.jdbc.driver.xml.SnpsXmlDriver
    JDBC URL: jdbc:snps:xml?file=c:\Temp\hoy\CRM_CR_CURRENCY.xml&dtd=C:\Temp\hoy\ServiciosSerivaConsultasTypes0.xsd
    The XSD file:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <xs:schema xmlns:s3="http://www.openuri.org/2006/12/wsdl/upgradedJWS" xmlns:s0="http://schemas.xmlsoap.org/wsdl/" xmlns:s1="http://co/com/bancodecredito/eai/serviciosLinea/seriva" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:tns="http://co/com/bancodecredito/eai/serviciosLinea/seriva/impl" xmlns:s2="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="" targetNamespace="http://co/com/bancodecredito/eai/serviciosLinea/seriva/impl" attributeFormDefault="unqualified" elementFormDefault="qualified">
    <xs:element name="indicadoresResponse">
    <xs:complexType>
    <xs:sequence>
         <xs:element name="WS_ResultadoConsultaIndicadores">
              <xs:complexType>
                   <xs:sequence>
                        <xs:element name="Error" type="xs:string"/>
                        <xs:element name="Descripcion" type="xs:string"/>
                        <xs:element name="indicadores" maxOccurs="unbounded" minOccurs="0">
                        <xs:complexType>
                             <xs:sequence>
                                  <xs:element name="fecha" type="xs:string"/>
    <xs:element name="descripcion" type="xs:string"/>
    <xs:element name="tipoIndicador" type="xs:int"/>
    <xs:element name="codigoIndicador" type="xs:int"/>
    <xs:element name="codigoVertice" type="xs:int"/>
    <xs:element name="plazo" type="xs:int"/>
    <xs:element name="valor" type="xs:double"/>
    <xs:element name="comportamiento" type="xs:int"/>
    <xs:element name="formato" type="xs:int"/>
                             </xs:sequence>
                             </xs:complexType>
                        </xs:element>
                   </xs:sequence>
              </xs:complexType>
         </xs:element>
    </xs:sequence>      
    </xs:complexType>
    </xs:element>
    </xs:schema>
    and the xml file:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <m:indicadoresResponse xmlns:m="http://co/com/bancodecredito/eai/serviciosLinea/seriva">
    <ns0:WS_ResultadoConsultaIndicadores xmlns:ns0="http://co/com/bancodecredito/eai/serviciosLinea/seriva/impl">
    <ns0:Error>0</ns0:Error>
    <ns0:Descripcion>Transacción exitosa</ns0:Descripcion>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>VALORACION (TRM VIGENTE) UVR/UVR</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>312</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>196.9975</ns0:valor>
    <ns0:comportamiento>1</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>COMPRA (BID) UVR/UVR</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>313</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>196.9975</ns0:valor>
    <ns0:comportamiento>1</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>VENTA (ASK) UVR/UVR</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>314</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>196.9975</ns0:valor>
    <ns0:comportamiento>1</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>BID BANCO REPUBLICA EUR/EUR</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>396</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>1.4367</ns0:valor>
    <ns0:comportamiento>1</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>ASK BANCO REPUBLICA EUR/EUR</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>397</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>1.4367</ns0:valor>
    <ns0:comportamiento>1</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>TRM BANCO REPUBLICA EUR/EUR</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>398</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>1.4367</ns0:valor>
    <ns0:comportamiento>1</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>BID BANCO REPUBLICA UVR/UVR</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>432</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>196.9975</ns0:valor>
    <ns0:comportamiento>1</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>ASK BANCO REPUBLICA UVR/UVR</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>433</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>196.9975</ns0:valor>
    <ns0:comportamiento>1</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>TRM BANCO REPUBLICA UVR/UVR</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>434</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>196.9975</ns0:valor>
    <ns0:comportamiento>1</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>BID BANCO REPUBLICA USD/USD</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>390</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>1800.7300</ns0:valor>
    <ns0:comportamiento>2</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>ASK BANCO REPUBLICA USD/USD</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>391</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>1801.2100</ns0:valor>
    <ns0:comportamiento>2</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>TRM BANCO REPUBLICA USD/USD</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>395</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>1800.9700</ns0:valor>
    <ns0:comportamiento>2</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>VALORACION (TRM VIGENTE) EUR/EUR</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>241</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>1.4267</ns0:valor>
    <ns0:comportamiento>1</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>VALORACION (TRM VIGENTE) USD/USD</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>246</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>6.4573</ns0:valor>
    <ns0:comportamiento>2</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>VALORACION (TRM VIGENTE) USD/USD</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>251</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>4.3000</ns0:valor>
    <ns0:comportamiento>0</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>VALORACION (TRM VIGENTE) USD/USD</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>256</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>0.9913</ns0:valor>
    <ns0:comportamiento>1</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>VALORACION (TRM VIGENTE) USD/USD</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>261</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>12.4332</ns0:valor>
    <ns0:comportamiento>1</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>VALORACION (TRM VIGENTE) USD/USD</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>272</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>77.2692</ns0:valor>
    <ns0:comportamiento>2</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>VALORACION (TRM VIGENTE) GBP/GBP</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>277</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>1.6341</ns0:valor>
    <ns0:comportamiento>2</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>VALORACION (TRM VIGENTE) USD/USD</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>282</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>5.2216</ns0:valor>
    <ns0:comportamiento>2</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    <ns0:indicadores>
    <ns0:fecha>2011-08-10 00:00:00.0</ns0:fecha>
    <ns0:descripcion>VALORACION (TRM VIGENTE) AUD/AUD</ns0:descripcion>
    <ns0:tipoIndicador>3</ns0:tipoIndicador>
    <ns0:codigoIndicador>340</ns0:codigoIndicador>
    <ns0:codigoVertice>0</ns0:codigoVertice>
    <ns0:plazo>0</ns0:plazo>
    <ns0:valor>1.0198</ns0:valor>
    <ns0:comportamiento>2</ns0:comportamiento>
    <ns0:formato>3</ns0:formato>
    </ns0:indicadores>
    </ns0:WS_ResultadoConsultaIndicadores>
    </m:indicadoresResponse>
    When I try do reverse engineering I get:
    java.sql.SQLException: class java.sql.SQLException
    com.sunopsis.tools.core.exception.SnpsRuntimeException: ODI-40798 Tipo Desconocido: {0}element
    What is the issue ?
    When I change the xml file , and I remove the namespaces, so that xml file is changed like this:
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <indicadoresResponse >
    <WS_ResultadoConsultaIndicadores >
    <Error>0</Error>
    <Descripcion>Transacción exitosa</Descripcion>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>VALORACION (TRM VIGENTE) UVR/UVR</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>312</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>196.9975</valor>
    <comportamiento>1</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>COMPRA (BID) UVR/UVR</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>313</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>196.9975</valor>
    <comportamiento>1</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>VENTA (ASK) UVR/UVR</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>314</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>196.9975</valor>
    <comportamiento>1</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>BID BANCO REPUBLICA EUR/EUR</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>396</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>1.4367</valor>
    <comportamiento>1</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>ASK BANCO REPUBLICA EUR/EUR</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>397</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>1.4367</valor>
    <comportamiento>1</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>TRM BANCO REPUBLICA EUR/EUR</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>398</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>1.4367</valor>
    <comportamiento>1</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>BID BANCO REPUBLICA UVR/UVR</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>432</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>196.9975</valor>
    <comportamiento>1</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>ASK BANCO REPUBLICA UVR/UVR</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>433</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>196.9975</valor>
    <comportamiento>1</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>TRM BANCO REPUBLICA UVR/UVR</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>434</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>196.9975</valor>
    <comportamiento>1</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>BID BANCO REPUBLICA USD/USD</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>390</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>1800.7300</valor>
    <comportamiento>2</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>ASK BANCO REPUBLICA USD/USD</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>391</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>1801.2100</valor>
    <comportamiento>2</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>TRM BANCO REPUBLICA USD/USD</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>395</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>1800.9700</valor>
    <comportamiento>2</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>VALORACION (TRM VIGENTE) EUR/EUR</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>241</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>1.4267</valor>
    <comportamiento>1</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>VALORACION (TRM VIGENTE) USD/USD</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>246</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>6.4573</valor>
    <comportamiento>2</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>VALORACION (TRM VIGENTE) USD/USD</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>251</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>4.3000</valor>
    <comportamiento>0</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>VALORACION (TRM VIGENTE) USD/USD</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>256</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>0.9913</valor>
    <comportamiento>1</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>VALORACION (TRM VIGENTE) USD/USD</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>261</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>12.4332</valor>
    <comportamiento>1</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>VALORACION (TRM VIGENTE) USD/USD</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>272</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>77.2692</valor>
    <comportamiento>2</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>VALORACION (TRM VIGENTE) GBP/GBP</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>277</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>1.6341</valor>
    <comportamiento>2</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>VALORACION (TRM VIGENTE) USD/USD</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>282</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>5.2216</valor>
    <comportamiento>2</comportamiento>
    <formato>3</formato>
    </indicadores>
    <indicadores>
    <fecha>2011-08-10 00:00:00.0</fecha>
    <descripcion>VALORACION (TRM VIGENTE) AUD/AUD</descripcion>
    <tipoIndicador>3</tipoIndicador>
    <codigoIndicador>340</codigoIndicador>
    <codigoVertice>0</codigoVertice>
    <plazo>0</plazo>
    <valor>1.0198</valor>
    <comportamiento>2</comportamiento>
    <formato>3</formato>
    </indicadores>
    </WS_ResultadoConsultaIndicadores>
    </indicadoresResponse>
    It works!!!! I can do reverse engineering....What is the issue? I am running everthing with agent as Local
    I really appreciate any hints.
    Thanks in advance,
    Deibys

    Hi,
    Try specifying the "re" (Root Element) parameter in the URL. For example re=indicadoresResponse
    If it still fails could you post the full java error stack?
    Good luck!
    Jose

  • Simulate Acquisition does not include new image file created after first call

    For example, I have 5 images in a folder.
    I call Simulate Acquisition.
    It cycles through all 5 images.
    Now If I include 1 more image it does not include this image in the "cycle". I need to reload this step by clicking Main\path\browse button and select any image in the folder and then it cycles through all 6 images.
    Is there anyway to automatically include new images added to the folder after the step has been created?
    Thanks.
    CVI 2010
    LabVIEW 2011 SP1
    Vision Builder AI 2011 SP1

    Here's a sample inspection and VI to illustrate how you could do this. I used an image variable and passed this into the Run LV step so the VI could read the file and update the image variable and then I used the Select Image step to get the image variable into the VBAI script so you can process it. I also added a delete option in the VI so you can delete the previous image when you read the next available image. Make sure to go to the Setup State and initialize the path variable to where your image files will live (to access the Setup State, go to View>>View Complete Inspection and select on the Setup option on the left hand side. I initialized it to c:\Image Folder
    Hope this helps,
    Brad
    Attachments:
    Read Dynamic Image File.zip ‏15 KB

  • Can spry save the xml data that changes in the webpage into a new xml file to store in the computer?

    I'm very new to spry, after some work time, I have another
    question:
    If the user create their own xml data (using some spry data
    actions) and want to save it to the computer (an xml or txt file),
    can spry do this?
    Thanks for all your help.

    Hi,
    Please check then note mentioned below.
    Note 1227887 - CCMS: Error messages in SM21 and SOAMANAGER (SCS)
    Thanks
    Rishi Abrol

  • How to write xml files

    I have a simple jsp page having name and id field, when user submits the page, it will create a xml file having datas of the user entered.and later if another user add his data, then it will update the xml file

    Extract the name, id whatever fields from the jsp page into a bean after submit. Then you can use DOM or SAX parser implementation to create a new xml file for the values you are now in your bean from jsp page.
    You can create the XML using DOM or SAX parsers. The implementation of those are almost easy. For better work you can also use JAXB if the application is complex or the XML format is complex and huge.
    -Sachin
    I have a simple jsp page having name and id field,
    when user submits the page, it will create a xml
    file having datas of the user entered.and later if
    another user add his data, then it will update the
    xml file

Maybe you are looking for