The XML of a trend is fully documented?

Guys,

I know the doc online that tries to explain the structure of the XML file that is used to add a trend, but I need an explanation best and most complete of the length and breath of what is possible. The document does not limit or available values. I need to understand the following:

  1. How many graphics can go on a page? The doc online is vague and has written 2 or 3, but what happens if I need more? Do I have to create new tests to allow most trends?
  2. How do we do more than a trend line appear in a unique xy chart? What are the permitted colours? (the doc lists as red).
  3. How treat the graphic process 7 days, months, etc.? Are what the data in files separated? Or the process selects just given to a larger interval (decimation of data)?
  4. Is it possible to change the color over time as a way to show if a limit is exceeded? Since color is sent with each data point, what happens when you change color over time?

I have several older BB tests that I would like to add XML data, but the example given does not give me enough to go and it seems to be a proposal, all or nothing. I've experimented with code to try to reverse engineer how to send data from trend, but most of my tests don't produced no data on the BB perf directory server and no way to tell what I was doing wrong. I got a few trends for work by drawing traffic from BBNT, but this is NOT a good way to proceed and don't tell me that that I may or may not do.

Any help would be appreciated. Doc

Jim Graczyk

PS - I posted a similar message at the end of one of the sons mentioned that I had participated who had the doc mentioned online. This message replaces this message.

(1) I don't know what you're asking. Can you be more explicit?

(2) colors are collected by the library. A new color is used for each trendline in a chart. The available colors are defined in skins/eng/amcharts_settings/settings.xml ( entries)

(3) times are calculated on the fly. The software tries to create data points about 350 at the time. Graphic annual calculates about 1 day per data point. Monthly is about 2 hours of data points, etc...

(4) for the time being the colors defined in the xml document are unused (AFAIK). They may be in the future.

multiple trendlines, you can do the following (say % used by the player on a server, and there are 2 disks; C and D)

4.60

Put the hostname here

Put a name of service here

regardless of the color generated by your test for this host.service

C

color for this player

% used

75

D

color for this player

% used

60

This should create the trend under bbvar/perf/hostname/service two files, C.%used and D.%used and when you view the log of the State host.service, and you, there should be a single graph with two Trendlines (a to C) and the other for D. Each player is set in a block. As far as I KNOW, there is no limit on the number of graphs, also, there is no limit on the trendlines on a single graph but if values differ too much (for example a line returns GB and all other return MB (a factor of 10)), you may not be able to properly view some trendlines.

Good bye

Tags: Dell Tech

Similar Questions

  • repair of iTunes - fusion of the xml files or combine libraries

    My iTunes xml I messed up a little bit and now all my old songs have the same Date added date, if they have been added to 4 years ago or on 02/07/15.

    Titles added after 02/07/15 have correct dates.

    I am trying to find the better (not necessarily the easiest) way to fix them.

    It is important for me because I sort my titles by date added.

    I have a huge library and can change them one by one in the xml file.

    I think that the ideal way to change the dates maybe with a script that would take the correct dates back to the old xml and replace the incorrect in the xml of the last.

    However, I do not have such a script, and I don't know how to write one.

    So my other option is to merge libraries.

    I will do this on a separate drive in order not to spoil the libraries either old or new.

    I have a bunch of backups, but had not noticed the problem posed by the until after all the backups had already been updated with new and incorrect files.

    I also have a fully functional library on a player removed from my MBP dead last year.

    So I now several copies of a messed library and an obsolete library containing the correct information.

    If I had to start with the old library I would need then to add all new titles that were added last year on my new computer.

    I can sort of filter by modification Date to clear the majority of them.

    I know that iTunes has a feature to add to the library , but before I use it I want to make sure that will accomplish what I am trying to do.

    I hope that someone with real experience in doing that reads my post.

    Useful suggestions of someone else is appreciated.

    Too bad (as if someone was actually going to answer).

    I have since discovered that the added Date cannot be changed.

    So now I have copied the old library on an external drive, made iTunes open this library, and then added everything in my current library which was not in the old library. I now have a library with the correct dates for the majority of the files, but all my files since August 2014 have now to the current Date added date.

    Better to have 16 months from the incorrect dates of 6 years.

  • Saving to and read the XML code

    Hi, I wanted to just record in XML data and display it in the list. That's what I tried:

    #include "applicationui.hpp"
    
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    
    using namespace bb::cascades;
    using namespace bb::data;
    
    ApplicationUI::ApplicationUI(bb::cascades::Application *app) :
            QObject(app)
    {
    
        QVariantMap firstEmployee, secondEmployee;
    
        firstEmployee["firstName"] = QVariant("Mike");
        firstEmployee["lastName"] = QVariant("Chepesky");
        firstEmployee["number"] = QVariant("51649875");
        secondEmployee["firstName"] = QVariant("Westlee");
        secondEmployee["lastName"] = QVariant("Barichak");
        secondEmployee["number"] = QVariant("63257801");
    
        QVariantList myEmployeeList = QVariantList() << QVariant(firstEmployee)
                                   << QVariant(secondEmployee)
    
        QVariantMap topLevelEmployeeMap;
        topLevelEmployeeMap[".root"] = QVariant("employees");
        topLevelEmployeeMap["employee"] = QVariant(myEmployeeList);
        QVariant myData = QVariant(topLevelEmployeeMap);
    
        QTemporaryFile file("myXMLFile.xml");
    
        if (file.open()) {
    
            XmlDataAccess xda;
            xda.save(myData, &file);
        }    Page *root = new Page;
        ListView *listView = new ListView;
    
        GroupDataModel *model = new GroupDataModel(QStringList() << "firstName"
                                                   << "lastName");
    
        XmlDataAccess xda;
        QDir temp = QDir::tempPath();
        QVariant list = xda.load(temp.absoluteFilePath("myXMLFile.xml"),
                                 "/employees/employee");
    
        model->insertList(list.value());
    
        listView->setDataModel(model);
    
        root->setContent(listView);
        app->setScene(root);
    }
    

    Reference: https://developer.blackberry.com/native/documentation/cascades/device_platform/data_access/working_w...

    But this does not seem to display the items in the XML file. any thoughts?

    QFile use instead of QTemporaryFile, that the file could be deleted after the close() call:

        QVariantMap firstEmployee, secondEmployee;
    
        firstEmployee["firstName"] = QVariant("Mike");
        firstEmployee["lastName"] = QVariant("Chepesky");
        firstEmployee["number"] = QVariant("51649875");
        secondEmployee["firstName"] = QVariant("Westlee");
        secondEmployee["lastName"] = QVariant("Barichak");
        secondEmployee["number"] = QVariant("63257801");
    
        QVariantList myEmployeeList = QVariantList() << QVariant(firstEmployee)
                                   << QVariant(secondEmployee);
    
        QVariantMap topLevelEmployeeMap;
        topLevelEmployeeMap[".root"] = QVariant("employees");
        topLevelEmployeeMap["employee"] = QVariant(myEmployeeList);
        QVariant myData = QVariant(topLevelEmployeeMap);
    
        QFile file(QDir::temp().absoluteFilePath("myXMLFile.xml"));
    
        if (file.open(QIODevice::WriteOnly | QIODevice::Text)) {
    
            XmlDataAccess xda;
            xda.save(myData, &file);
        }
        file.close();
        Page *root = new Page;
        ListView *listView = new ListView;
    
        GroupDataModel *model = new GroupDataModel(QStringList() << "firstName"
                                                   << "lastName");
    
        XmlDataAccess xda;
        QDir temp = QDir::temp();
        QVariant list = xda.load(temp.absoluteFilePath("myXMLFile.xml"),
                                 "/employees/employee");
        model->insertList(list.value());
    
        listView->setDataModel(model);
    
        root->setContent(listView);
    
  • Can not get the XML save data to work

    I'm trying to store data in an XML file.

    I want to create and store this XML file, I copied this example directly from the documentation (http://developer.blackberry.com/cascades/documentation/device_platform/data_access/working_with_xml... but it does not work):

    // Create QVariantMap objects to contain the data for each employee
            QVariantMap firstEmployee;
    
            // Populate each object with data
            firstEmployee["firstName"] = QVariant("Mike");
            firstEmployee["lastName"] = QVariant("Chepesky");
            firstEmployee["number"] = QVariant("51649875");
    
            // Add each employee to a QVariantList
            QVariantList myEmployeeList = QVariantList() << QVariant(firstEmployee);
    
            // Add the employee list to a top-level QVariantMap, then wrap it in a QVariant
            QVariantMap topLevelEmployeeMap;
            topLevelEmployeeMap[".root"] = QVariant("employees");
            topLevelEmployeeMap["employee"] = QVariant(myEmployeeList);
            QVariant myData = QVariant(topLevelEmployeeMap);
    
            // Retrieve the working directory, and create a temporary .xml file in that
            // location
            QDir home = QDir::home();
            QTemporaryFile file2(home.absoluteFilePath("myXMLFile.xml"));
            qDebug() << "Came here";
            qDebug() << home.absoluteFilePath("myXMLFile.xml");
            // Open the file that was created
            if (file2.open()) {
                // Create an XmlDataAccess object and save the data to the file
                qDebug() << "I came in this if statement";
                XmlDataAccess xda;
                xda.save(myData, &file2);
            }
            else
                qDebug() << "I didn't come in this if statement";
    

    After having tried everything, I can't see the .xml file to display in the file Explorer. The print statement that prints the location... /data/ and the second print statement shows he's going in the case.

    I can not even an XML base to save, so I wonder if I'm doing something wrong.

    Thank you

    Hey there,

    Well, the thing is that she is using an object QTemporaryFile (file2) and according to the description of the class QTemporaryFile:

    ".... QTemporaryFile is used to create unique temporary files safely. The file itself is created by calling ( Open). The temporary file name is guaranteed to be unique (that is, you are guaranteed to not overwrite an existing file), and the file will be deleted eventually to the destruction of the object QTemporaryFile... »

    If the object of File2 is destroyed in your application, that would be your problem...  You check in the file while the application is running?  Otherwise, you must use QFile instead so that the file will still be there at the end of your app... etc. etc.

    https://developer.BlackBerry.com/Cascades/reference/QFile.html

  • HTTP Communication tutorial - parsing of the XML file error

    Hello again,

    I went through the tutorial of HTTP Communication today is here. Built just fine and it loaded into the Simulator, however when I hit refresh to load the XML from an HTTP network call I get the error:

    XmlDataModel: Analysis of the file error... /... /.. /Data/model.XML on line 14, column 8: "unexpected character.

    After the end of the XML file, given the location of the character of line 14, column 8 is that it really confused me.

    Any thoughts on how to bypass this?

    The XML file can be found at https://developer.blackberry.com/cascades/files/documentation/device_platform/networking/model.xml

    try changing the url https://developer.blackberry.com/cascades/files/documentation/device_platform/networking/model.xml

  • Impossible to analyze the xml.aspx contained in the main.js.Iam get the following error"could not obtain XML document, and the connection has failed: status 500

    Impossible to analyze the xml.aspx contained in the main.js.Iam get the following error"could not obtain XML document, and the connection has failed: status 500

    My main.js resembles

    xmlDataSource var = {}
     
    URL: 'dcds. - symbianxml.aspx", etc. (sample).
     
    init: function() {}
    URL, successful reminder, the reminder of failure
    This.Connect (this.) (URL, this.responseHandler, this.failureHandler);
    },
     
    /**
    * Analyzes the XML document in an array of JS objects
    @param xmlDoc XML Document
    * @returns {table} array of objects of the device
    */
    parseResponse: {function (xmlDoc)}
        
    var chElements = xmlDoc.getElementsByTagName ("channel");
       
    channels of var = [];
      
    Console.log (chElements.Length);
      
    for (var i = 0; i)< chelements.length;="">
        
    var channel = {};
       
    for (var j = 0; j)< chelements[i].childnodes.length;="">
        
    var node = Sublst.ChildNodes(1).ChildNodes(0) chElements [i] [j];
                
    If (node.nodeType! = 1) {//not an element node}
    continue;
    }
           
    Channel [node. TagName] = node.textContent;
    }
       
    Channels.push (Channel);
    }
    Console.log (Channels.Length);
    return the strings;
    },
     
    /**
    Manages the response and displays the data from device web app
    @param xmlDoc
    */
    responseHandler: {function (xmlDoc)}
      
    var channel = this.parseResponse (xmlDoc);
    var markup = "";
       
    for (i = 0; i< channels.length;="">
       
    markup += this.generateHTMLMarkup (i, channels [i]);
    }
    document.getElementById("accordian").innerHTML = mark-up;
    },
     
    /**
    Generates HTML tags to insert in to the DOM Web App.
    * @index i, index of the device
    @param device, device object
    */
    /*
    generateHTMLMarkup: function (i, channel) {}
      
    var str ="";
    "Str += '.


    ' onclick =-"mwl.setGroupTarget ('#accordian ',' #items_" + i + "', 'ui-show ',' ui - hide');" + ".
    "mwl.setGroupTarget ('#accordian ',' item_title_ #" + i + "', 'ui-open', 'ui-farm'); Returns false; \ » > » ;
    "" Str += "" + channel ['name'] + ' ";
    "Str += '.
    ";
    "Str += '.
    ";
    "Str += '.
    "+" id: "+ channel ['id'] +" ' "
    ";
    "Str += '.
    "+" type: "+ channel ['type'] +" ' "
    ";
    "Str += '.
    "+" language: "+ channel ['language'] +" ' "
    ";
    "Str += '.
    «+ "bandwidth:" + "fast" channel + "»»
    ";
    "Str += '.
    "+" cellnapid: "+ channel ["cellnapid"] +". "
    ";
    "Str += '.
    «+ ' link: '+'start the video »»
    ";
    "Str += '.
    ";
    return str;
    },*/
    generateHTMLMarkup: function (i, channel) {}
       
    var str ="";
    "Str += '.
    ";
    str +=  "" +
    "" + channel ['name'] + ""+""
    ";
    "Str += '.
    «+ ' link: '+'start the video »»
    ";
         
    return str;

    },
     
    failureHandler: {function (reason)}
    document.getElementById("accordian").innerHTML = "could not get XML document.
    '+ reason;
    },
     
    /**
    Retrieves a resource XML in the given URL using XMLHttpRequest.
    @param url URL of the XML resource to retrieve
    @param called successCb, in the XML resourece is recovered successfully. Retrieved XML document is passed as an argument.
    @param failCb called, if something goes wrong. Reasons, in text format, is passed as an argument.
    */

    Connect: {function (url, successCb, failCb)
      
    var XMLHTTP = new XMLHttpRequest();
      
    XMLHTTP. Open ("GET", url, true);

    xmlhttp.setRequestHeader("Accept","text/xml,application/xml");
    xmlhttp.setRequestHeader ("Cache-Control", "non-cache");
    xmlhttp.setRequestHeader ("Pragma", "non-cache" "");
      
    var that = this;
    XMLHTTP.onreadystatechange = function() {}
       
    If (xmlhttp.readyState == 4) {}
        
    If (XMLHTTP. Status == 200) {}
         
    {if (!) XMLHTTP.responseXML)}
    try {}
    If server has not responded with good an XML MIME type.
    var domParser = new DOMParser();
    var xmlDoc = domParser.parseFromString(xmlhttp.responseText,"text/xml");
           
    successCb.call (that, xmlDoc);
           
    } catch (e) {}
    failCb.call (, "answer was not in an XML format.");
    }
              
    } else {}
    successCb.call (that, xmlhttp.responseXML);
    }
    } else {}
    failCb.call (this, "connection failed: status"+ xmlhttp.status ");
    }
    }
    };
    XMLHTTP. Send();
    }
    };

    Please see the content in main.js is fully analyzed.

    Forward for the solution to my request all members of the community...

  • Load the XML file into Oracle external Table


    I load the data from the XML file into an intermediate table Oracle using external Tables.

    Let's say below, it is my XML file

    < header >
    < A_CNT > 10 < / A_CNT >
    < E_CNT > 10 < / E_CNT >
    < AF_CNT > 10 < / AF_CNT >
    < / header >
    < student >
    <>students-details
    < Student_info >
    < Single_Info >
    < ID > 18 / < ID >
    New York < City > < / City >
    < country > United States < / country >
    < Name_lst >
    < Student_name >
    Samuel < name > < / name >
    Paul < Last_name > < / Last_name >
    < DOB > 19871208 < / DOB >
    Aware of < RecordStatus > < / RecordStatus >
    < / Student_name >
    < Student_name >
    Samuel < name > < / name >
    Paul < Last_name > < / Last_name >
    < DOB > 19871208 < / DOB >

    < TerminationDt > 20050812 < / TerminationDt >
    History of < RecordStatus > < / RecordStatus >
    < / Student_name >
    < / Name_lst >
    < Personal_Info >
    <>men < / Type >
    < 27 > < / Age >
    < / Personal_Info >
    < / Single_Info >
    < / Student_info >

    < student - register >
    class < A >
    < info >
    < detail >
    < ID student > 18 < / student >
    EE < major > < / Major >
    < course-Grades >
    < course > VLSI < / course >
    < degree > 3.0 < / Grade >
    < / course-Grades >
    < course-Grades >
    < course > nanotechnology < / course >
    < degree > 4.0 < / Grade >
    < / course-Grades >
    < / details >
    < detail >
    < ID student > 18 < / student >
    THIS < major > < / Major >
    < / details >
    < / info >
    class < A >
    < Student_Enrol >
    <>students-details
    < student >

    I load this XML data file into a single table using an external Table. Could someone help me please with coding.

    Thank you

    Reva

    Could you please help me how to insert my XML content into that.

    Same as before, try a plain old INSERT:

    insert into xml_pecos

    values)

    XmlType (bfilename ('XML_DIR', "test.xml"), nls_charset_id ('AL32UTF8'))

    );

    But you'll probably hit the same limitation as with the binary XMLType table.

    In this case, you can use FTP to load the file as a resource in the XML DB repository.

    If the XML schema has been registered with the hierarchy enabled then the file will be automatically inserted into the table.

    Could you post the exact statement that you used to save the scheme?

    In the meantime, you can also read this article, I did a few years ago, it covers the XML DB features that may be useful here, including details on how to load the file via FTP:

    https://odieweblog.WordPress.com/2011/11/23/Oracle-XML-DB-a-practical-example/

    And documentation of the course: http://docs.oracle.com/cd/E11882_01/appdev.112/e23094/xdb06stt.htm#ADXDB4672

  • Access to the XML schemas from the connection manager?

    The connection manager for a connection opened in version 4 is no longer an 'XML Schémas' icon (Java and XML patterns seem to have been deleted between versions 3 and 4). Is there a definition that can return the XML schemas?

    Using lists yet... »

    XML schemas

    XML schemas are definitions of schema, written in XML, that describe the structure and various other semantics of XML instance documents. For conceptual and information on the use of XML schemas, see the Guide of Oracle XML DB Developer in the Oracle database documentation library.

    You can change an XML schema by right clicking in the connections Navigator XML schema name and selecting open from the menu. You can delete a selected schema by selecting the Drop Schema menu. » ...

    The XML node drawings missing in the connections Navigator is a known issue for the 4.0.1.  The 4.0.2 patch is a fix.

    Regarding the Java node, it seems to me in all versions 4.0.x.  Maybe your Preferences... > Database > Navigation filter turned it off?

    Kind regards
    Gary

    SQL development team

  • Im trying to list the xml files in netdevices - plugin.jar BUT can't find it

    Im trying to list the xml files in netdevices - plugin.jar BUT can't find the jar command...
    It is integrated by hyperic 4.1.1? on the unbuntu Linux systems

    I want to get a copy of the Cisco IOS platform XML to build one of my own to monitor environmental elements such as the status of temp sweetheart etc.

    Maybe the hq - plugin.xml will also help.

    How can I get a list of the Cisco IOS platform xml or AC - plugin.xml is preferable to follow in the construction of my own xml plugin

    Mike,

    A pot is just a zip file, so if you don't have the available jar command, you can use the decompression tool.

    Unzip netdevice - plugin.jar, etc./hq-plugin.xml

    Who will draw just the file etc/hq - plugin.xml.  There is good documentation for an SNMP plugin at http://support.hyperic.com/display/DOC/SNMP+Plugin

  • Help to download the xml of the oracle table below

    Dear all,

    I tried best to download the below xml to oracle table but giving the link between the tables is very difficult for me. can someone help me to import the XML below for oracle table

    <? XML version = "1.0" encoding = "utf-8"? >
    < Claim.Submission xmlns:tns = "http://www.haad.ae/DataDictionary/CommonTypes" xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" xsi: noNamespaceSchemaLocation = "http://www.haad.ae/DataDictionary/CommonTypes/ClaimSubmission.xsd" >
    < header >
    MF65 < SenderID > < / SenderID >
    C014 < ReceiverID > < / ReceiverID >
    < TransactionDate > 03/12/2012 10:40 < / TransactionDate >
    < RecordCount > 1 < / RecordCount >
    < DispositionFlag > PRODUCTION < / DispositionFlag >
    < / header >
    < claim >
    < ID > 23112 / < ID >
    < MemberID > 100000874 < / MemberID >
    A022 < PayerID > < / PayerID >
    MF65 < ProviderID > < / ProviderID >
    < EmiratesIDNumber > 111-1111-1111111-1 < / EmiratesIDNumber >
    < raw > 115 < / gross >
    < PatientShare > 20 < / PatientShare >
    < net > 95 < / Net >
    < meeting >
    MF65 < FacilityID > < / FacilityID >
    < type > 1 < / Type >
    < > 47685 PatientID < / PatientID >
    < Start > 02/11/2012 12:00 < / Start >
    < / meeting >
    < Diagnostics >
    Principal of < type > < / Type >
    < code > < code > 461.9
    < / Diagnosis >
    < Diagnostics >
    Secondary < type > < / Type >
    < code > < code > 462
    < / Diagnosis >
    < activity >
    23112_1 < ID > < /ID >
    < Start > 02/11/2012 12:00 < / Start >
    < type > 3 < / Type >
    < code > < code > 99202
    < quantity > 1 < / quantity >
    < net > 95 < / Net >
    D1310 < clinician > < / clinician >
    < / activity >
    < / claim >
    < Claim.Submission >

    Pls tell me how I can get

    Have you considered using the storage relational object for this?
    Since you have patterns, you could record in the database, which will automatically create storage appropriate for your XML documents as well as validate at the time of insertion.
    You can then create individual views to query the nested parts of the document and finally insert the data into relational tables final.

    See the documentation for an introduction to the concepts:
    http://docs.Oracle.com/CD/E11882_01/AppDev.112/e23094/partpg2.htm#g997354

    You will find examples on the {forum: id = 34} forum and its FAQ: {: identifier of the thread = 410714}

  • OSB: How to read the xml file, which is in OSB project

    Hello

    We have a generic proxy (PG1) reporting and deals alerts, this proxy is called in the pipelines of proxies anothers (P1... PN) in several projects. Each client proxy (P1... PN) PN) before call proxy PG1, configures a variable with syntactic alert or report.

    We thought it would be a good idea to store the specifications for all the proxies of a project as an xml file, so that the proxy PG could read the xml file. This file will be in the OSB project.

    The questions are:
    -proxy can read a xml file that is in the OSB project?
    S ' Please, are all the documentation for this?

    Thank you

    Kind regards

    You can always do customization to work with the properties defined in a XML xquery. The key to this is to use the customization of reference instead of find and replace the customization, similar to the service account customizations.
    Keep your real estate to as properties_dev of env xquery specific xmls, properties_sit etc then apply customization of service proxy xquery reference reference specific correct env.

  • No PDF file created when used section break and no data in the XML group

    I have this problem that Tim Dexter documented on a few years back...

    http://blogs.Oracle.com/XmlPublisher/output_formats/

    "When you use @section in your model for orders,"for-each"or" each group"- (e.g. <?). for-each@section:...? >), then a vacuum/invalides PDF can be generated if the XML data file has no data for this foreach loop. »

    That's my exact problem. Yet the instructions do not completely solve my problem. I add another section at the end of my RTF break and he gets the page to see... but I get an extra page at the end of all the populated xmls

    Is it possible to delete this page?

    Hi Jason,
    I would like to see your model and data.

    You use @section and add condition to make the page without data.

  • Using the XML API

    Hi all.

    I'm brand new contract management module and the api XML. I going through the XMLAPI.chm but could not understand where to start. If anyone can help me with a simple program that I can run to understand the API XML which will help. Any pointer will help you.

    Thanks in advance.
    Sachin

    Hello, the API is just a servlet which receive a XML, using XMLAPI especified.
    To call the api, you must call a call on this http://server/exponline/XmlServlet with the parameter xmlQuery post url

    Here's an example of my method of connector

    public InputStream sendRequisition (XmlRequest xml) throws IOException {}

    If (conn == null) {}
    throw new RuntimeException ("not connected.");
    }

    OutputStreamWriter out = new OutputStreamWriter (conn.getOutputStream ());
    out. Flush();
    out. Write ("xmlQuery =" + xml.encode ());
    out. Close();

    Return conn.getInputStream ();
    }

    the XmlRequest is just an XML encoder, a subclass of my xml queries (I do classes to the best use)
    all you have to do is analyze the XML InputStream it returns.

    Request login example

    xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance" xsi: schemaLocation = "http://app.expedition.com/ http://127.0.0.1/exponline/xml-schemas/loginrequest.xsd" >

    EXP

    EXP

    CMPROJ

    applications must sessionId, that his return to the connect call, but this is especified on Documentation

    Good luck

    Published by: user12718422 on 03/03/2010 05:22

  • Select in the XML schema

    I hope this is the right forum to post. I was wondering if there is any good tutorials or books on SQL in XML format?
    Basically, I need to interrogate the accounts of North Carolina who received a document given in the past day. This is a very easy task to do, in SQL, however, the State of North Carolina wants us to share our findings in a specific XML schema using nodes.

    Fortunately, I have the pattern that was given by the State of NC but don't know how to get my application to fit in the XML schema. I was wondering in a beginners perspective.

    Sorry for the newbie questions.

    Don't know if you're aware of this, or if it does not meet your definition of "user friendly".
    http://www.Oracle.com/technology/documentation/index.html

    Also fly over the intro or first chapter for the DB XML (research in your appropriate version) can be a good thing to do.

    I'm not sure what your analyst is trying to say. In the example I've provided, root and the neck are nodes in the XML document. Most of the things in XML are nodes.

  • Behavior of the XML in Flex vs Flex/AIR class

    Hi, I created a small application without AIR which simply wraps the text value of a TextArea in a XML tags using the XML class (and the 'escape()' function) as shown in the attached code (see "application not PNEUMATIC").

    The resulting XML is as follows (when seen in the debugger and recorded by the PHP script):
    < list >
    < element >... .text value of TextArea... < / point >
    < / list >

    In my real application, I then sends this via an HTTPService to a PHP script on my server. The PHP script receives the XML code in its entirety, no problem.

    When I wrote an equivalent (same code) AIR application (see "AIR Application" in the attached code), the XML formatting becomes (when seen in the debugger and recorded by the PHP script):
    < list >
    & lt; point & gt;... text value of TextArea... & lt; / point & gt;
    < / list >

    When you send this through the HTTPService, the parent < list > tag is removed, which causes the PHP script to fail.

    Is this a normal behavior and is there a way to get around this? I looked in the forums, but any reference to this strange behavior between AIR and no AIR Flex change is not found.

    Anyone else has the same problem?

    Thank you

    Marc

    Hi rtalton and thanks for the thoughts. This got me thinking about how the XML class constructor and appendChild methods should be called and found the question.

    It seems that appeal to the "appendChild" method AIR produces a result different than when not in the AIR, which is curious in itself.

    However, I changed my code to be 'good' according to the documentation, and it worked under AIR and airless. Here's what I changed:

    The appendChild method is now called as follows:

    list.appendChild ({escape (taText.text)});

    The quotes have been removed and I'm dealing is no longer the XML as a string.

    So, while I was there, I changed the call to the constructor as follows:

    list = new XML ();

    Same here, no longer treat the XML as a string.

    Thank you

    Marc

Maybe you are looking for

  • Satellite x 200-25 h does not read the recovery disk

    Hello I bought my laptop less than a year ago and I wanted to format.I tried to use the product recovery disc, but it seems that it will not read.My laptop reads all CDs, but the recovery one. I put the cd in the machine, stop, turn and press F12. It

  • iTunes crashes when syncing the iPhone and iPad

    I was not able to sync to my iPhone 6s or iPad 2 since the new version of iTunes. iTunes works fine until I connect iPhone or iPad and then it freezes. I have iOS on both and OS X 10.11.2 and 12.3.2.35 iTunes 9.2

  • How to run the DAQmxGetTaskChannels command

    I'm reading the attributes of task of MAX by using various DAQmx with VB6 controls.  I found that a simple task of load (DAQmxLoadTask) generates a valid taskhandle of a known in MAX taskname that can be used to get the measurement data using the ana

  • Error code "STOP: c000021a" with "0 x 00000080 (0x00000000 0x00000000).

    I recently had a blue screen of death error. I looked at the error on the microsoft Web site and the help file describes the solution had it used xp cd and repair of windows. I don't remember the exact error code, but it is a missing or damaged *.dll

  • Why do I need to reactivate Windows because of hardware changes?

    My computer has suddenly come up with a strange message for me. Start the computer and sign in this message is displayed on my screen. "Since windows was first activated on this computer, the computer hardware has changed. Because of these changes, w