XML Data Mapping Disappear when Reopening xlf - Xcelsius

Hi,,,
I have created one xcelsius with XML Data maps which works fine. But when I re-open this XLF, the XML data mapping disappear from XML source screen of Excel. It's so much enoying, so every time when i re-open the xlf. I have to map xml data again and then do some formating. after that it works fine.
I guess i have missed some setting. Does anyone has faced such a weired problem with xcelsius.
your quick help in this will be really appreciated.
Regards,
Ashish

Hi,
Its a Fixed Issue ,It has been solved
For Futher Details
http://alteksolutions.com/wp/index.php/2010/10/xcelsius-2008-sp-3-fix-pack-3-now-available/
XML Data Maps Disappear when Reopening xlf
Regards
Naveen

Similar Messages

  • XML Schema mapping error when generating web service

    I have created a method in java that returns an array of an object type (a user defined class). When tried to generate a web service JDeveloper did not allow me to select the method, giving the following "Why not.." explanation: "One or more parameters did not have an XML Schema mapping and/or serializer specified".
    Can anyone help me in this?
    Thanks
    Alina

    Thanks Mike for your advice it did work when I changed the setters and getters names, and managed to create a web service with Apache Soap profile. I created the client stub and client application to run the web service but it keep coming with soap-env error messages.
    Error message I get when running the client side:
    F:\JDev9i-0-3\jdk\bin\javaw.exe -ojvm -classpath F:\JDev9i-0-3\jdev\mywork\OrbatListArray\OrbatClient\classes;F:\JDev9i-0-3\jdev\lib\jdev-rt.jar;F:\JDev9i-0-3\jdev\lib\jdev-rt.jar;F:\JDev9i-0-3\soap\lib\soap.jar;F:\JDev9i-0-3\lib\xmlparserv2.jar;F:\JDev9i-0-3\jlib\javax-ssl-1_2.jar;F:\JDev9i-0-3\jlib\jssl-1_2.jar;F:\JDev9i-0-3\j2ee\home\lib\activation.jar;F:\JDev9i-0-3\j2ee\home\lib\mail.jar;F:\JDev9i-0-3\j2ee\home\lib\http_client.jar orbatclientpackage.OrbatListArrayClient
    [SOAPException: faultCode=SOAP-ENV:Server.BadTargetObjectURI; msg=Unable to resolve target object(orbatlistarraypackage.OrbatListArray): orbatlistarraypackage.OrbatListArray [java.lang.ClassNotFoundException]]     orbatlistarraypackage.OrbatType[] orbatclientpackage.OrbatListArrayStub.getOrbatListArray()          OrbatListArrayStub.java:63     void orbatclientpackage.OrbatListArrayClient.main(java.lang.String[])          OrbatListArrayClient.java:19Exception in thread main
    Process exited with exit code 1.
    My wsdl file is:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!--Generated by the Oracle9i JDeveloper Web Services WSDL Generator-->
    <!--Date Created: Wed Oct 23 11:16:29 BST 2002-->
    <definitions
    name="OrbatListArray"
    targetNamespace="http://orbatlistarraypackage/OrbatListArray.wsdl"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns="http://orbatlistarraypackage/OrbatListArray.wsdl"
    xmlns:ns1="http://orbatlistarraypackage/IOrbatListArray.xsd">
    <types>
    <schema
    targetNamespace="http://orbatlistarraypackage/IOrbatListArray.xsd"
    xmlns="http://www.w3.org/2001/XMLSchema"
    xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
    <complexType name="ArrayOfOrbatType" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
    <complexContent>
    <restriction base="SOAP-ENC:Array">
    <attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="ns1:orbatlistarraypackage_OrbatType[]"/>
    </restriction>
    </complexContent>
    </complexType>
    <complexType name="orbatlistarraypackage_OrbatType" jdev:packageName="orbatlistarraypackage" xmlns:jdev="http://xmlns.oracle.com/jdeveloper/webservices">
    <all>
    <element name="OrbatName" type="string"/>
    <element name="OrbatID" type="int"/>
    </all>
    </complexType>
    </schema>
    </types>
    <message name="getOrbatListArray0Request"/>
    <message name="getOrbatListArray0Response">
    <part name="return" type="ns1:ArrayOfOrbatType"/>
    </message>
    <portType name="OrbatListArrayPortType">
    <operation name="getOrbatListArray">
    <input name="getOrbatListArray0Request" message="tns:getOrbatListArray0Request"/>
    <output name="getOrbatListArray0Response" message="tns:getOrbatListArray0Response"/>
    </operation>
    </portType>
    <binding name="OrbatListArrayBinding" type="tns:OrbatListArrayPortType">
    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="getOrbatListArray">
    <soap:operation soapAction="" style="rpc"/>
    <input name="getOrbatListArray0Request">
    <soap:body use="encoded" namespace="orbatlistarraypackage.OrbatListArray" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </input>
    <output name="getOrbatListArray0Response">
    <soap:body use="encoded" namespace="orbatlistarraypackage.OrbatListArray" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
    </output>
    </operation>
    </binding>
    <service name="OrbatListArray">
    <port name="OrbatListArrayPort" binding="tns:OrbatListArrayBinding">
    <soap:address location="http://192.9.200.200:8888/soap/servlet/soaprouter"/>
    </port>
    </service>
    </definitions>
    My OrbatListArrayDescriptor.dd file:
    <?xml version = '1.0' encoding = 'windows-1252'?>
    <!--Generated by the Oracle9i JDeveloper Web Services Deployment Descriptor Generator-->
    <!--This Deployment Descriptor file is for use with the Oracle9iAS Release 2 / Apache 2.2 SOAP Server SOAP Server-->
    <!--Date Created: Wed Oct 23 11:16:29 BST 2002-->
    <isd:service
    id="orbatlistarraypackage.OrbatListArray"
    xmlns:isd="http://xml.apache.org/xml-soap/deployment">
    <isd:provider
    type="java"
    methods="getOrbatListArray"
    scope="Request">
    <isd:java class="orbatlistarraypackage.OrbatListArray" static="false"/>
    </isd:provider>
    <isd:faultListener>org.apache.soap.server.DOMFaultListener</isd:faultListener>
    </isd:service>
    My Client Web Service Stub class file:
    package orbatclientpackage;
    import oracle.soap.transport.http.OracleSOAPHTTPConnection;
    import org.apache.soap.encoding.soapenc.BeanSerializer;
    import org.apache.soap.encoding.SOAPMappingRegistry;
    import org.apache.soap.util.xml.QName;
    import java.net.URL;
    import org.apache.soap.Constants;
    import org.apache.soap.Fault;
    import org.apache.soap.SOAPException;
    import org.apache.soap.rpc.Call;
    import org.apache.soap.rpc.Parameter;
    import org.apache.soap.rpc.Response;
    import java.util.Vector;
    import orbatlistarraypackage.OrbatType;
    import java.util.Properties;
    * Generated by the Oracle9i JDeveloper Web Services Stub/Skeleton Generator.
    * Date Created: Wed Oct 23 11:19:42 BST 2002
    * WSDL URL: file:/F:/JDev9i-0-3/jdev/mywork/OrbatListArray/OrbatListArrayProject/src/orbatlistarraypackage/OrbatListArray.wsdl
    public class OrbatListArrayStub
    public OrbatListArrayStub()
    m_httpConnection = new OracleSOAPHTTPConnection();
    m_smr = new SOAPMappingRegistry();
    BeanSerializer beanSer = new BeanSerializer();
    m_smr.mapTypes(Constants.NS_URI_SOAP_ENC, new QName("http://orbatlistarraypackage/IOrbatListArray.xsd", "orbatlistarraypackage_OrbatType"), orbatlistarraypackage.OrbatType.class, beanSer, beanSer);
    public String endpoint = "http://192.9.200.200:8888/soap/servlet/soaprouter";
    private OracleSOAPHTTPConnection m_httpConnection = null;
    private SOAPMappingRegistry m_smr = null;
    public OrbatType[] getOrbatListArray() throws Exception
    OrbatType[] returnVal = null;
    URL endpointURL = new URL(endpoint);
    Call call = new Call();
    call.setSOAPTransport(m_httpConnection);
    call.setTargetObjectURI("orbatlistarraypackage.OrbatListArray");
    call.setMethodName("getOrbatListArray");
    call.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);
    Vector params = new Vector();
    call.setParams(params);
    call.setSOAPMappingRegistry(m_smr);
    Response response = call.invoke(endpointURL, "");
    if (!response.generatedFault())
    Parameter result = response.getReturnValue();
    returnVal = (OrbatType[])result.getValue();
    else
    Fault fault = response.getFault();
    throw new SOAPException(fault.getFaultCode(), fault.getFaultString());
    return returnVal;
    public void setMaintainSession(boolean maintainSession)
    m_httpConnection.setMaintainSession(maintainSession);
    public boolean getMaintainSession()
    return m_httpConnection.getMaintainSession();
    public void setTransportProperties(Properties props)
    m_httpConnection.setProperties(props);
    public Properties getTransportProperties()
    return m_httpConnection.getProperties();
    My Client application main file:
    package orbatclientpackage;
    import java.io.*;
    public class OrbatListArrayClient
    public OrbatListArrayClient()
    public static void main(String[] args) throws Exception
    OrbatListArrayStub s = new OrbatListArrayStub();
    // File xmlFile;
    // BufferedWriter in;
    // xmlFile = new File("f:\\OrbatSoap", "OrbatXMLList.xml");
    // PrintWriter out = new PrintWriter(new BufferedWriter(new FileWriter(xmlFile)));
    // out.println(s.getOrbatListArray());
    // out.flush();
    System.out.println(s.getOrbatListArray());
    When I deployed it to jar I copied the jar file in the following directory:
    <jdevloper home>\soap\webapps\soap\soap\Web-inf\lib\
    I then tried and created a client stub in the same package using JDeveloper 9.0.3 wizard for creating sample java client and added a line to call my getOrbatListArray method and print it to the screen. I get another soap error message, saying:
    F:\JDev9i-0-3\jdk\bin\javaw.exe -ojvm -classpath F:\JDev9i-0-3\jdev\mywork\OrbatListArray\OrbatListArrayProject\classes;F:\JDev9i-0-3\jdev\lib\jdev-rt.jar;F:\JDev9i-0-3\jdbc\lib\classes12.jar;F:\JDev9i-0-3\jdbc\lib\nls_charset12.jar;F:\JDev9i-0-3\rdbms\jlib\xsu12.jar;F:\JDev9i-0-3\lib\xmlparserv2.jar;F:\JDev9i-0-3\lib\xmlcomp.jar;F:\JDev9i-0-3\jdev\lib\jdev-rt.jar;F:\JDev9i-0-3\soap\lib\soap.jar;F:\JDev9i-0-3\lib\xmlparserv2.jar;F:\JDev9i-0-3\jlib\javax-ssl-1_2.jar;F:\JDev9i-0-3\jlib\jssl-1_2.jar;F:\JDev9i-0-3\j2ee\home\lib\activation.jar;F:\JDev9i-0-3\j2ee\home\lib\mail.jar;F:\JDev9i-0-3\j2ee\home\lib\http_client.jar orbatlistarraypackage.EmbeddedOrbatListArrayStub
    [SOAPException: faultCode=SOAP-ENV:IOException; msg=Connection refused: connect; targetException=java.net.ConnectException: Connection refused: connect]     void org.apache.soap.SOAPException.<init>(java.lang.String, java.lang.String, java.lang.Throwable)          SOAPException.java:77     void oracle.soap.transport.http.OracleSOAPHTTPConnection.send(java.net.URL, java.lang.String, java.util.Hashtable, org.apache.soap.Envelope, org.apache.soap.encoding.SOAPMappingRegistry, org.apache.soap.rpc.SOAPContext)          OracleSOAPHTTPConnection.java:765     org.apache.soap.rpc.Response org.apache.soap.rpc.Call.invoke(java.net.URL, java.lang.String)          Call.java:253     orbatlistarraypackage.OrbatType1[] orbatlistarraypackage.EmbeddedOrbatListArrayStub.getOrbatListArray()          EmbeddedOrbatListArrayStub.java:70     void orbatlistarraypackage.EmbeddedOrbatListArrayStub.main(java.lang.String[])          EmbeddedOrbatListArrayStub.java:38Process exited with exit code 0.
    Sorry for the length of this message, but I am getting desparate.
    Thanks again for all you help
    Alina

  • Import xml data in Access when multiple rows use the same fieldname

    HI.
    First of all sorry for my english :-) I have a LiveCycle Designer ES form with multiple rows that I send via e-mail as XML data.
    example:
    Row 1
    Firstname: John  Lastname: Dow
    Row 2
    Firstname: Steve  Lastname: Austin
    The exported XML is OK but when I want to import it into my Access database, only one row is imported. I pretty sure that the problem comes from the fact that may exported XML use the same fieldname (what is important if I want to import data in the correct Access field) but I don't know what to do to be able to import all the rows of the same Form.
    Any idea?
    Thanks a lot
    Frederic

    Hi Viktor,
    In case of order recognition rules you should increase the relevancy in the newer version of the cartridge so appropriate ORR will be triggered. In other xqueries, you can try using new namespace as a model variable for each and every version of the cartridge
    Regards,
    JP

  • Persistent prompt date format changes when reopening report in Webi

    Hi all
    I have a PERISTENT prompt that asks for a date when you run the report. The format is "MM/dd/yyyy". I also have a variable that displays this value in the form:
    =ToDate(UserResponse([Query 1];"Please enter date:");"MM/dd/yyyy")
    When the report is run the prompt works and you select the date from the calendar and all works fine. You can refresh the report and keep the persistent date prompt value if you like. Great.
    The problem comes when the report is saved and then reopened for modifying.
    On my report I get #ERROR associated with the above variable. This is because the peristent value in the prompt has been "re-loaded" in the format "MM/dd/yyyy hh:mm:ss a".
    The only way I have found to resolve this is to refresh the report and reselect a date which makes the persistent prompt kind of useless if you close the report.
    Any suggestions on solving this would be appreciated.
    Thanks
    Sharon

    Sharon,
    The problem comes when the report is saved and then reopened for modifying.
    When opening the report in something other than modify, does the problem also occur?  I too have noticed different behavior with persistent date prompts and whether running in modify or Infoview modes.  Most deployments do not give their users the ability to run a public report in modify mode (though, possibly they could copy it to their own Favorites and run it in modify mode there).  So perhaps this "problem" is by design and is resolved by running the report in the more common Infoview mode?
    Thanks,
    John

  • InfoPackage Data Selection disappear when INIT

    Hi All,
    Just wondering if anyone faced this issue before and/or has a solution.
    I have an infopackage that is loading from an ODS to an InfoCube. The ODS has close to 20 million records.
    When I do a FULL UPDATE, i am able to use the Data Selection tabe to only filter certain criteria to be pulled over to my Cube.
    However, when i try to select and do an INIT, all the fields in my DataSelection tab disappears. and i am forced to load all 20 million records from the ODS.
    Appreciate any input or feedback.
    Regards,
    Gary.

    oh i see...
    i thought otherwise as in the F1  for the init without data transfer, this is what is mentioned...
    "If the delta process has not yet been initialized, but you want to test the delta upload, you have the option of simulating the initialization.
    This runs the help entries in all the required tables in BW and in the source system, without loading any data from the source system.
    In the monitor, you get a message telling you that a record has been loaded. The initialization-simulation request appears in all the data targets in which an update has taken place. However, this request contains only help entries. The simulation does not update any data in the data targets.
    Dependencies
    After you have tested the delta upload in this way, initialize the delta process"

  • Bridge ACR Settings disappear when reopening folder of images

    Frustrating! I'm working on 537 images, I set the exposure, color, etc., and also crop.
    Once the folder is closed and reopened all 537 images have reverted to "As Shot".
    I am hitting "Enter" when cropping is completed; however, hitting "Enter" after color etc. adjustments closes
    the ACR individual icon window and I have to go thru Cmd-R again.
    What am I doing wrong and what should I be doing right?
    537 images have to be redone. Again.

    The .xmp files are listed in the file folder. The "Date Created" for each .xmp
    file is correct, and reflects the time
    the file was worked on originally; however, after closing and reopening the
    file in Bridge, the "Date Modified" for all images
    is "Today, 6:58 PM".
    Check your hard drive permissions, choose the HD icon and then the Get Info
    command (cmd+i). In this window you can see at the bottom if you have read
    and write permissions. If it is set to read only you are not able to write
    data to it. Copy a few to your main disk without the existing xmp files and
    open them in PS, maybe the data is also still in the Camera Raw Data Base,
    just a wild shot.
    Purging the cache does not restore the .xmp editing choices but does delete
    the cropping functions.
    sorry to hear that it did not work, however, purging cache should not
    delete the crop settings, at least, I tried it with one file that is on my
    main hard drive and both ACR settings and crop were kept after purging cache
    for that file.
    The files are located on an external drive. Is this possibly an issue?
    See above, it might be the permissions but also a bad functioning drive. Use
    Apple Disk utility or Desk Tool Pro to check the Disk. (something you should
    do regularly). Ideally the external drive should be formatted in HFS+ for
    Mac but other formatting will also function as long as the drive shows on
    your desktop.
    Personal I never work on files on external drives, I use my main drive for
    it and use external drives (have lots of them...) only for storage and back
    up
    Is there any method to update the "Date Modified" with the "Date Created"
    info in the .xmp files in the file folder?
    Not sure why you want this but in general you can't change xmp yourself if
    the metadata panel has no option for it (only the ones with a pencil icon
    can be edited by the user) other then using scripting I believe.
    However the next time you modify the file in Bridge, finder ACR PS etc your
    modification date should update itself.
    Putting back the modification date will probably not bring back your earlier
    changed settings, at least I don't think so.

  • Comments Status Disappears When Reopening PDF

    We're using Acrobat Pro 9.1.0 on WIn XP SP3 and experiencing a rather annoying isue. We are given marked up PDFs that we then either click the box next to the edit (using the checkmark feature) to indicate to ourselves that we've done the edit, or we set the status as completed (or we do both). The consistent annoyance is that after we've saved the PDF and then reopen it, the check boxes are not marked and the status doesn't show. However, if we  reset the status of an edit, then the marks show up again. This has happened on multiple computers in my office.
    Has anyone experienced this issue and, better yet, know how to prevent the disappearance of the status marks upon reopening the PDF? Is it just a simple matter of updating to a later version?
    TIA

    ericis wrote:
      Is it just a simple matter of updating to a later version? 
    TIA
    It could be. You should update to 9.3 and see if it helps
    (9.3 also fixes some security issues)

  • App Tabs disappear when reopening FF - Started in 7.01

    When I was updated to 7.01 my app tabs don't persist from one session to the next as they have previously.
    Win-7 64-bit - 8GB RAM - Lots of disk space
    Tried setting options to start with last tabs, but that didn't affect it.

    App (pinned) tabs and Tab Groups (Panorama) are stored as part of the session data [1] in the file sessionstore.js [2] in the Firefox profile folder [3].
    Make sure that you do not use "Clear Recent History" to clear the "Browsing History" when Firefox is closed because that prevails and prevents Firefox from opening tabs from the previous session.
    * https://support.mozilla.com/kb/Clear+Recent+History
    * [1] http://kb.mozillazine.org/Session_Restore
    * [2] http://kb.mozillazine.org/sessionstore.js
    * [3] http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox
    It is also possible to use the "Show my windows and tabs from last time" setting, that is usually a more reliable way to restore session data.
    * [http://kb.mozillazine.org/Menu_differences Firefox/Tools > Options] > General > Startup: "When Firefox Starts": "Show my windows and tabs from last time"
    If you use cleanup software like CCleaner then make sure that Session is unchecked in the settings for the Firefox application.

  • Scripts in actions disappear when reopening AICS 4

    I notice if I include a script in an action, it is gone when I reopen AI. This is true whether AI is closed normally or if it "unexpectedly quits".
    Is this a known issue?
    Ray

    Ray,
    It's been this way for at least 5 versions of AI now and the powers that be have not bothered to do anything about it. It does make using this combination somewhat less useful.

  • Attach the whole form with XML data when Emailed

    Hi all
    I am new to Adobe Livecycle product. I have been using IBM workplace forms and now want to migrate to Adobe Forms. I want the whole completed PDF form to be attached along with the xml data in it when someone clicks the email button and email is sent. Currently when I am able to attach only the data part to the email.
    Please advice on this...
    Thanks
    Ullas

    The default email submit button is set up to send just the data/ If you drop a button object onto the form, set it to be a submit button, then use the mailto protocol to setup who you want to send it to. One of the button parameters allows you to choose what you want to submit. in your case choose PDF.

  • .xml file not loading when piece runs through an LMS

    Dear all
    We created a fully interactive training program on MS Excel where we also simulated Excel using the OWC10.DLL control.  This works pretty well for both .exe and web packaged pieces.
    In certain cases this control is pre-populated using a .xml data file.
    When the piece is packaged for the web and runs directly over the web - everything works fine.
    But when published to Moodle as a SCORM 1.2 package the data in the .xml file is not read.  The .xml file is included in the SCORM wrapper.
    Anyone has any idea what the problem could be?

    My existing mime types on the Apache server as follows:
    AddType application/x-authorware-seg aas
    AddType application/x-authorware-bin aab
    AddType application/x-authorware-bin x32
    AddType application/x-authorware-bin u32
    AddType application/x-authorware-bin vox
    AddType application/x-authorware-bin xml
    AddType application/x-authorware-map aam
    AddType application/x-authorware aam aas u32 vox xml
    Still not working ;-(
    Johann Fouché
    +27 82 853 1010
    http://www.jfmultimedia.co.za
    Skype:  johannfouche
    Telephone VOIP:  +27 127435670

  • FileMaker XML data problems

    I'm a bit of a newbie to getting data from XML into Flash,
    but I'm seeing that this is going to be very important to future
    projects that I work on. I am using FileMaker Pro (currently
    version 7, but upgrading to 8) to create a database and exporting
    XML file from there to read into Flash. I cannot seem to get the
    data from the XML to show up in the Flash movie. I have been
    following a tutorial on Lynda.com on Flash/FileMaker integration,
    but the XML file doesn't look quite the same. Here is the XML data
    I get when exporting from FileMaker:
    <FMPXMLRESULT xmlns="
    http://www.filemaker.com/fmpxmlresult">
    <ERRORCODE>0</ERRORCODE>
    <PRODUCT BUILD="05-06-2004" NAME="FileMaker Pro"
    VERSION="7.0v2"/>
    <DATABASE DATEFORMAT="M/d/yyyy" LAYOUT="RecRev"
    NAME="Penn.State.On.The.Air.fp7" RECORDS="1" TIMEFORMAT="h:mm:ss
    a"/>
    <METADATA>
    <FIELD EMPTYOK="YES" MAXREPEAT="1" NAME="PersonNam"
    TYPE="TEXT"/>
    <FIELD EMPTYOK="YES" MAXREPEAT="1" NAME="ProgramNam"
    TYPE="TEXT"/>
    <FIELD EMPTYOK="YES" MAXREPEAT="1" NAME="PersonBio"
    TYPE="TEXT"/>
    <FIELD EMPTYOK="YES" MAXREPEAT="1" NAME="ProgramDesc"
    TYPE="TEXT"/>
    <FIELD EMPTYOK="YES" MAXREPEAT="1" NAME="AudioName"
    TYPE="TEXT"/>
    <FIELD EMPTYOK="YES" MAXREPEAT="1" NAME="VideoNam"
    TYPE="TEXT"/>
    <FIELD EMPTYOK="YES" MAXREPEAT="1" NAME="Notes"
    TYPE="TEXT"/>
    <FIELD EMPTYOK="YES" MAXREPEAT="1" NAME="LastUpdate"
    TYPE="DATE"/>
    </METADATA>
    <RESULTSET FOUND="1">
    <ROW MODID="1" RECORDID="1">
    <COL><DATA>Fran Fisher</DATA></COL>
    <COL><DATA>TV Quarterbacks
    (1965-1985)</DATA></COL>
    <COL><DATA>One of the classic voices of Penn
    State Athletics, Fran Fisher has called football and basketball on
    the radio, as well as hosted several Penn State-related programs on
    both television and radio. Beginning in 1966, Fisher hit the
    airwaves providing color commentary on football radiocasts. A year
    later, he joined the crew of WPSX-TV’s TV
    Quarterbacks, to narrate game films and was made a co-host in
    1968—a post he retained until the
    show’s end in 1984. After three years of doing
    football color work on the radio, he was shifted to play-by-play
    duties. In this role he became the voice of Penn State Football and
    provided a steady presence in the booth through the 1982 National
    Championship season.
    </DATA></COL>
    <COL>
    <DATA>The first television program to focus on Penn
    State Football, TV Quarterbacks was the brainchild of WPSX-TV
    general manager Marlowe Froke. Debuting in 1965, and initially
    titled Wednesday Quarterbacks, the show was hosted by Harris Lipez
    and Ken Holderman and included commentary from Coach Rip Engle.
    </DATA>
    </COL>
    <COL>
    <DATA>
    </DATA>
    </COL>
    <COL>
    <DATA>
    </DATA>
    </COL>
    <COL>
    <DATA>
    </DATA>
    </COL>
    <COL>
    <DATA>3/23/2007</DATA>
    </COL>
    </ROW>
    </RESULTSET>
    </FMPXMLRESULT>
    I've tried many iterations of the combination of firstChild
    and sibling, but I either get NULL, UNDEFINED, or a blank text area
    where the PersonNam and PersonBio data should go. Here is the
    Actionscript I'm using to load the data:
    myXML = new XML();
    xmlFile = "fmp.xml"
    myXML.load(xmlFile);
    function myOnLoad () {
    PersonNam =
    myXML.firstChild.firstChild.nextSibling.nextSibling.nextSibling.nextSibling.firstChild.fi rstChild.firstChild.nodeValue;
    PersonBio =
    myXML.firstChild.firstChild.nextSibling.nextSibling.nextSibling.nextSibling.firstChild.fi rstChild.nextSibling.firstChild.firstChild.nodeValue;
    myXML.onLoad = myOnLoad;
    I think I just don't understand XML well enough to get the
    right data path. It confuses me that the data in the XML file looks
    different than what I saw on the tutorial.

    I looked over that PDF and started messing around with XPath.
    Although it took a bit of experimentation, I was able to get the
    info I wanted from my XML file with the following code:
    import mx.xpath.XPathAPI;
    var my_xml:XML = new XML();
    my_xml.ignoreWhite = true;
    my_xml.onLoad = function(success:Boolean) {
    trace("onload...");
    if (success) {
    trace("success...");
    path = "/FMPXMLRESULT/RESULTSET/ROW/COL/DATA";
    // Make an array of all the data
    arNodes = mx.xpath.XPathAPI.selectNodeList(this.firstChild,
    path);
    // Display first and second names on screen as a test
    fname = arNodes[0].firstChild;
    lname = arNodes[8].firstChild;
    path2 = "/FMPXMLRESULT/RESULTSET/ROW";
    // Make an array of just the people's names now
    namNodes = mx.xpath.XPathAPI.selectNodeList(this.firstChild,
    path2);
    trace(namNodes[0].firstChild.firstChild.firstChild);
    } else {
    trace("error loading XML");
    my_xml.load("fmp.xml");
    I think I may go the XPath route for my kiosk project. This
    looks quite a bit easier than dealing with the confusing and
    endless firstChild iterations. Thanks again for suggesting this,
    Raymond!

  • Formulas in XML data template

    Hi All,
    I am unable to keep some formulas in xml data template.
    My exact requirement:
    I want to keep some formula columns in xml data template so that i can show them in rtf.
    I have 6 columns
    1. ename
    2. dept
    3. job
    4. salary
    5. salary deposited till current year ( this is a formula column)
    6. total salary ( this is a formula column ==> salary * comm)
    I am able to keep all the 4 columns and data is being displayed correctly. But i am not knowing where and how to keep the below columns *(i.e., 5 & 6)
    Glad if anyone can provide me with some examples how to keep formula columns in xml data template
    Thanks

    user9092293,
    when you mean "unable to keep column formulas" in data template!!! are you not able to refer to them within the data structure element?? or are you trying to calculate them in the group elements and not able to???
    If you could explain further it might helps us visualize your issue....
    thanks
    -bifacts

  • Why can't I see my data which was entered and saved on a form when i try to reopen it? it always worked before until this spring 2014. The data is actually there when I click on a box but disappears when I go to the next box. I have a Mac.

    I am using a Mac and I have always filled out the same form (ocf-6 from ontario insurance companies, application for expenses)  It stopped letting me go back and open the previously saved forms which i filled out and I have saved monthly for the past 5 years. Now when I open a previously saved month /file I cannot see the data I inputed.  The data is there because when i highlight a box the data appears. then when i move onto the next field/box it disappears. I tried to highlight the whole document but nothing shows up. This problem started in the spring ,2014.

    Once you save that to a location on your system.
    Make sure Acrobat is Quit and then do this:
    1.  In the Finder go to the "Go" menu.
    2. Select Go to Folder
    3.  Paste this path into the "Go to the Folder:" field
    /Applications/Adobe Acrobat XI Pro/Adobe Acrobat Pro/Contents/Resources/JavaScripts/
    4. Copy the file into the JavaScripts folder.
    5. Launch Acrobat
    Now you should see the menu spoken of in the blog and web page.

  • Help needed with sending XML data out of Dashboard design/ Xcelsius

    Hi All,
    I did this a year back and got it right, but now am not able to get it, probably Ive made a small mistake which I have been overlooking.
    I selcted Enable XML send in my XML data connection and dfined the connection name as "Range_1" and Range name also as "Range_1"
    Now I worte this servlet in Java:
    public class PostTestServlet extends HttpServlet{
         protected void doPost(HttpServletRequest request, HttpServletResponse response){
         String param1=request.getParameter("Range_1");
         System.out.println(param1);
         protected void doGet(HttpServletRequest request, HttpServletResponse response){
         System.out.println("Get Called");
         doPost(request,response);
         System.out.println("abcd");
    Deployed it to Apache Tomcat 6.
    Also selected the required usage options in Xcelsius for sending data every 10 seconds.
    Now the servlet gets called, I see it in the console.
    But the request.getParameter("Range_1") is returning null.
    Tried many things, not able to figure it out. Any help?
    Thanks
    Nikhil

    Hi,
    Xcelsius/Dashboards will convert the range of values that you want to send into XML.
    It then will POST the XML when it calls the web page.
    For example, if you had created three ranges to send to your web page:
    A (a single cell)
    B (a single cell)
    C (a row of three cells)
    The data in the POST input stream for the web page will look something like this:
    <data>
      <variable name="A">
        <row>
          <column>10</column>
        </row>
      </variable>
      <variable name="B">
        <row>
          <column>15</column>
        </row>
      </variable>
      <variable name="C">
        <row>
          <column>1</column>
          <column>2</column>
          <column>3</column>
        </row>
      </variable>
    </data>
    I don't have an example for ASP, but I do for a JSP (attached).
    Regards
    Matt

Maybe you are looking for