XML not showing load progress...

I have a fla file that loads a slide show from an XML file. The xml file contains info about each slide. There's over a 100 slides so the loading takes some time. However I'm not getting actual load progress. It traces nothing until after the load is complete and then it shows the progress that it should have traced one by one, however it traced them all at once on the complete. Because it's not firing the onProgress correctly my preloader is rendered useless. Am I doing something wrong on is this a bug in Flash?
//======================================================================================== =================================================
//     load xml
//======================================================================================== =================================================
var xmlLoader:URLLoader = new URLLoader();
var xmlData:XML = new XML();
xmlLoader.addEventListener(Event.COMPLETE, LoadXML);
xmlLoader.addEventListener(ProgressEvent.PROGRESS, LoadingXML);
function LoadXML(e:Event):void {
trace("complete");
xmlData = new XML(e.target.data);
ParseSlides(xmlData);
xmlLoader.removeEventListener( ProgressEvent.PROGRESS, LoadXML);
xmlLoader.removeEventListener( Event.COMPLETE, LoadingXML);
MovieClip(root).loading_mc.x = 1500;
MovieClip(root).loading_mc.bar.width = 1;
MovieClip(root).loading_mc.loading_txt.text = "";
function LoadingXML(e:ProgressEvent):void {
//trace("Loading..." + Math.ceil(e.bytesLoaded * 100 / e.bytesTotal) + "%");
var loaded:Number = e.target.bytesLoaded;
var total:Number = e.target.bytesTotal;
var pct:Number = loaded / total;
trace(pct);
MovieClip(root).loading_mc.x = 500;
MovieClip(root).loading_mc.bar.width = pct * 194;
MovieClip(root).loading_mc.loading_txt.text = "Loading XML... " + (Math.round(pct * 100)) + "%";
xmlLoader.load(new URLRequest("XML/SectionII.xml"));
HERE IS THE OUTPUT: All at once when the complete fires
0.149821570227718
0.299643140455436
0.44946471068315397
0.599286280910872
0.74910785113859
0.8989294213663079
1
complete

Actually it still doesn't work like I need it to. The loading of the xml preloader only works if the temporary internet files are gone. Which means that the time I need the loader is during the parsing of the xml process. I have a function that creates an object for each slide after the xml loads. It runs through a for loop, however the loader won't appear and work during the for loop. It only works after its finished.
function ParseSlides(slideInput:XML):void {
// create a list of slide items
var slideList:XMLList = slideInput.Slide;
var slideSize:Number = slideList.length();
var buildPct:Number;
// run through list to build each slide object
for (var i:Number = 0; i < slideList.length(); i++) {
  // get progress of building slides
  buildPct = Math.ceil(i / slideSize);
  MovieClip(root).loading_mc.bar.width = buildPct * loadBarWidth;
  MovieClip(root).loading_mc.loading_txt.text = "Building Slides... " + (Math.round(buildPct * 100)) + "%";
  // build slide id and name
  var idElement:XML = slideInput.Slide.attribute("ID")[i];
  var headerElement:XML = slideInput.Slide.header.copy[i];
  var headerAnimationElement:XML = slideInput.Slide.header.animation[i];
  var headerStartXElement:XML = slideInput.Slide.header.startx[i];
  var headerStartYElement:XML = slideInput.Slide.header.starty[i];
  var headerFinishXElement:XML = slideInput.Slide.header.finishx[i];
  var headerFinishYElement:XML = slideInput.Slide.header.finishy[i];
  var headerStartAlphaElement:XML = slideInput.Slide.header.startAlpha[i];
  var headerFinishAlphaElement:XML = slideInput.Slide.header.finishAlpha[i];
  var headerDelayElement:XML = slideInput.Slide.header.delay[i];
  var headerSecondsElement:XML = slideInput.Slide.header.seconds[i];
  var subheaderElement:XML = slideInput.Slide.subheader.copy[i];
  var subheaderAnimationElement:XML = slideInput.Slide.subheader.animation[i];
  var subheaderStartXElement:XML = slideInput.Slide.subheader.startx[i];
  var subheaderStartYElement:XML = slideInput.Slide.subheader.starty[i];
  var subheaderFinishXElement:XML = slideInput.Slide.subheader.finishx[i];
  var subheaderFinishYElement:XML = slideInput.Slide.subheader.finishy[i];
  var subheaderStartAlphaElement:XML = slideInput.Slide.subheader.startAlpha[i];
  var subheaderFinishAlphaElement:XML = slideInput.Slide.subheader.finishAlpha[i];
  var subheaderDelayElement:XML = slideInput.Slide.subheader.delay[i];
  var subheaderSecondsElement:XML = slideInput.Slide.subheader.seconds[i];
  var audioElement:XML = slideInput.Slide.audio[i];
  var videoElement:XML = slideInput.Slide.video[i];
  // create new slide object
  slide[idElement] = new Object();
  slide[idElement].name = idElement;
  // set header information
  slide[idElement].header = headerElement;
  slide[idElement].headerAnimation = headerAnimationElement;
  slide[idElement].headerStartX = headerStartXElement;
  slide[idElement].headerStartY = headerStartYElement;
  slide[idElement].headerFinishX = headerFinishXElement;
  slide[idElement].headerFinishY = headerFinishYElement;
  slide[idElement].headerStartAlpha = headerStartAlphaElement;
  slide[idElement].headerFinishAlpha = headerFinishAlphaElement;
  slide[idElement].headerDelay = headerDelayElement;
  slide[idElement].headerSeconds = headerSecondsElement;
  slide[idElement].subheader = subheaderElement;
  slide[idElement].subheaderAnimation = subheaderAnimationElement;
  slide[idElement].subheaderStartX = subheaderStartXElement;
  slide[idElement].subheaderStartY = subheaderStartYElement;
  slide[idElement].subheaderFinishX = subheaderFinishXElement;
  slide[idElement].subheaderFinishY = subheaderFinishYElement;
  slide[idElement].subheaderStartAlpha = subheaderStartAlphaElement;
  slide[idElement].subheaderFinishAlpha = subheaderFinishAlphaElement;
  slide[idElement].subheaderDelay = subheaderDelayElement;
  slide[idElement].subheaderSeconds = subheaderSecondsElement;
  // set the audio in the slide
  slide[idElement].audio = audioElement;
  // set the video in the slide
  slide[idElement].video = videoElement;
  // push new slide to the array of slide names
  slidesArray.push(slide[idElement].name);
//MovieClip(root).loading_mc.x = 1500;
//MovieClip(root).loading_mc.bar.width = 1;
//MovieClip(root).loading_mc.loading_txt.text = "";
// start slide
buildSlide();

Similar Messages

  • Bex report does not show loaded data at once

    Hi experts,
    Why Bex report does not show loaded data at once after loading is finished but after some time?
    Could be the reason of it:
    a) huge amount of data in infocube.
    b) there are no deleting/creating indexes before/after loading, because it takes too much time
    c) anothe reason?
    Thank you,
    Tigr_Z

    Hi Tigr,
    A and B both can be the reasons behind, but normally in case of B option the results on report output can be wrong like duplicates sort of showing you double figures.
    C - it can be resource issue, so please look into all and double check with basis if thats the case.
    Regards
    Sunny

  • Input ready query is not showing loaded data in the cube

    Dear Experts,
    In Input ready query we have problem that it is not showing the values which was not entered by throught hat query. Is any settings in input ready query that we can do to populate the loaded data on the cube as well as data entered through Input ready query itself.
    Thanks,
    Gopi R

    Hi,
    input ready queries always should display most recent data (i.e. all green and the yellow request). So you can check the status of the requests in the real-time InfoCube. There should exist only green requests and maybe at most one yellow request.
    In addition you can try to delete the OLAP cache for the plan buffer query: Use RSRCACHE to do this. The technical names of the plan buffer query can be found as follows:
    1. InfoCube\!!1InfoCube, e.g. ZTSC0T003/!!1ZTSC0T003 if ZTSC0T003 is the technical name of the InfoCube
    2. MPRO\!!1MPRO, e.g. ZTSC0M002/!!1ZTSC0M002 if ZTSC0M002 is the technical name of the multiprovider
    If the input ready query is defined on an aggregation level using a real-time InfoCube, the first case is relevant; if the aggregation level is defined on a multiprovider the second case is relevant. If the input-ready query is defined on a multiprovider containing aggregation levels again the first case is relevant (find the real-time InfoCubes used in the aggregation level).
    Regards,
    Gregor

  • IPod Nano directory does not show loaded tracks

    I have a 7th Gen iPod Nano that was formatted by iTunes for Windows 7 that does not show the tracks loaded on it once it is ejected. Apple has replaced the Nano twice with no change. Working with AppleCare Support I have removed iTunes and everything else from Apple several times in accordance with the "Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8" Knowledge Base article. We tried various cables and different USB ports but they made no difference. In between each removal I have run CCleaner's registry search and cleanup tool and restarted the computer. Windows 7 is and has been up to date and the version of iTunes has always been the latest. iTunes will recognize the Nano and I can load playlists on it but once I eject it and select the music icon it says that there is no music loaded. When I check to see if the iPod knows that there is anything loaded it shows that there is something loaded by virtue of the fact that it shows the same amount of free space as iTunes did just before it was ejected. I have spent a couple of weeks chasing this problem with the AppleCare Support Team in Cupertino and we are all stumped.
         I do not have any problems when I connect my iPod Classic to the same computer and load tracks on it.
         All of the Nano's that have experienced this problem have worked fine when restored on my Mac.
         The original Nano worked fine with this Windows 7 computer for about 9 months and then started saying that it needed to be restored every time it was connected even if it had just been restored. That problem brought about the first replacement of the Nano. After all of our efforts the AppleCare Support Team suggested that we replace the Nano again so that is what we did this week with no resolution of the problem.
         Does anyone know of any Windows software that is known to create problems with iTunes?
         I had not connected a Nano to the computer for about 2 months before I started having problems so I have no way of determining what might have been installed that caused this problem. This is a company computer and all software installations and updates are controlled by our IT Dept. iTunes is supported by the company due to the fact that our IT Dept. personnel and senior management have company iPhones and some iPads. We did connect the Nano to one of the IT computers and it was recognized and iTunes was able to see the tracks loaded but there was nothing available once it was ejected.
         Any assistance will be greatly appreciated.
    Tom Davis

    1. Shouldn't you be posting on the Nano Section?
    2. UPDATE your iTUNES
    3. It should be fixed...if not reply

  • Flash xml - not always loading

    Hi
    I have a calculator that loads an xml file which contains a
    load of factors. If the user changes their details (age or sex)
    then it reloads this xml file to pull out the relevant factor.
    On my local disk this works fine. However, when on the server
    it will work 1 or 2 times accessing and parsing the xml file
    perfectly, but then will stop working and freeze for a while. It'll
    then work again for 1 time and then stop again and so on. I've
    attached the code that loads the xml file.
    The strange thing is that whether it's working or not it
    loads a 0 error code thing (success) and doesn't display "document
    failed" - but with the line of text I added to access
    childNode[50], it works ok 1 or 2 times, but is undefined when the
    calculator freezes.
    It seems flash is being a bit hit and miss at loading the xml
    file properly. Once it's loaded into flash should it be continually
    available or do I need to keep reloading it every time they change
    their details? If it's always available, that also doesn't seem to
    be working!
    Any ideas?

    I have solved this I think - not entirely sure how.
    In the above code links to a function called processBook and
    passes through the value of book_xml. In declaring the processBook
    function I pull this into xmlDoc_xml (function
    processBook(xmlDoc_xml). Not entirely sure why as I borrowed that
    bit from a book.
    Anyway, I've removed the reference to xmlDoc_xml and replaced
    it with book_xml and it seems to work perfectly. I believe it the
    reason is that when it goes back to that function it looks for
    xmlDoc_xml which is only available the first time... something like
    that anyway...
    Thanks

  • XML Not Showing Tags

    I need to export the XML of my files in order to show the metadata associated with my project. However, for some reason when I do this the decription and tags that are in the properties do not show up anywhere in the XML (which it did on a different computer). What am I doing wrong and how can I get my XML to include those attributes? I have tried exporting the XML in ever Metadata View and it still doesn't show the Tags or Description, only the title.

    I need to export the XML of my files in order to show the metadata associated with my project. However, for some reason when I do this the decription and tags that are in the properties do not show up anywhere in the XML (which it did on a different computer). What am I doing wrong and how can I get my XML to include those attributes? I have tried exporting the XML in ever Metadata View and it still doesn't show the Tags or Description, only the title.

  • Converted XML not showing multiple data entries correctly

    Hello
    I am creating a PDF Form from a xsd scheme but when I have data that could require multiple entries the converted xml is a mess. I am curently trying to create a way to add fields for multiple children. I created an expanding table and the fields are automatically copied when I click on „+“ or are deleted when I click on „-“ . If I have multiple rows for children then the converted xml looks like this :
    The correct xml for multiple data entries should look like this (this is from a xml scheme not made in LiveCycle) :
    Even if I copy the fields without creating a table, the converted xml is still a mess just like on the first image. Is there a way to show the xml from the PDF from correctly. I linked the xsd scheme that I am using for the PDF form: https://drive.google.com/file/d/0B30LkLSwYgB4SFN5bTkyLW1fOVU/edit?usp=sharing
    Best regards
    Ivica

    Hello
    I am creating a PDF Form from a xsd scheme but when I have data that could require multiple entries the converted xml is a mess. I am curently trying to create a way to add fields for multiple children. I created an expanding table and the fields are automatically copied when I click on „+“ or are deleted when I click on „-“ . If I have multiple rows for children then the converted xml looks like this :
    The correct xml for multiple data entries should look like this (this is from a xml scheme not made in LiveCycle) :
    Even if I copy the fields without creating a table, the converted xml is still a mess just like on the first image. Is there a way to show the xml from the PDF from correctly. I linked the xsd scheme that I am using for the PDF form: https://drive.google.com/file/d/0B30LkLSwYgB4SFN5bTkyLW1fOVU/edit?usp=sharing
    Best regards
    Ivica

  • Srollpane scrolls when loaded data from XML, not when loaded data from ASP

    Hi,
    I load into scrollpane a swf, which has a dynamicly loaded
    data. If I use the XML file, it works (the scrollbar is visible),
    but if I use a asp file, which creates xml, it doesn't work (the
    scrollbar is not visible). Any ideas?

    Hi,
    let say I have a A.swf and a B.swf. In A.swf I have a
    scrollpane in to wich the B.swf is loaded. Below is the code in
    B.swf. If I load the data from a asp file, the scrollbar in the
    scrollpane is not visible, but if I use the xml file, the scrollbar
    is visible.
    What I've meant is that I think that Flash gets the same form
    of data, no matter if I use the asp or xml, because the asp creates
    the same xml form as I use in the xml file. I hope this makes any
    sense.

  • Chinese characters in XML not showing up

    Hi,
    We are sending an Idoc from ECC to PI. The data in the Idoc is in Chinese. It shows up ok in ECC, but when the Idoc gets transferred to PI, the XML version of the Idoc has all #####s.
    Need your expert inputs to determine as to why ####s are coming in instead of the actual data. Is there something which could be done to avoid the same?
    Thank you all in advance!!
    Regards,
    Sidharth

    Hi,
    Check with this thread How to read text file contain chinese character ?
    Thanks!

  • IMPDP shows no progress

    HI, im using oracle 10g on RHEL4,
    Im importing a schema, through IMPDP ,
    bt it is stalled at
    Processing object type SCHEMA_EXPORT/SYSTEM_GRANT
    Processing object type SCHEMA_EXPORT/ROLE_GRANT
    Processing object type SCHEMA_EXPORT/DEFAULT_ROLE
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Processing object type SCHEMA_EXPORT/SYNONYM/SYNONYM
    Processing object type SCHEMA_EXPORT/SEQUENCE/SEQUENCE
    Processing object type SCHEMA_EXPORT/SEQUENCE/GRANT/OWNER_GRANT/OBJECT_GRANT
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA
    it is not showing any progress, even dba_datapump_jobs shows the jobs is executing,
    also sum(bytes)/1024/1024/1024 also not showing any progress.
    anyone can help?

    Pl see MOS Doc 286496.1 (Export/Import DataPump Parameter TRACE - How to Diagnose Oracle Data Pump) on hot to trace expdp/impdp
    HTH
    Srini

  • UWL is not showing New and In Progress tasks

    Dear All,
    We are facing a strange concern where the UWL is displaying all the below work items.
    Tasks forwarded to someone
    Tasks for Resubmission
    Completed Tasks
    But not the New and In Progress tasks wherein the work items are already available in the user inbox.
    The system details are SRM 7 with EHP 3 and the Netweaver portal is 7.30 SP 09
    Please find the below screen shot for your reference.
    And I would also like to update you that the below has already been tested.
    1.) Check in SBWP - workflow inbox of the respective user wherein the work items are available already.
    2.) In the SWI5 transaction code, the work items are in Ready status
    3.) From Portal perspective, the webflow connector has been defined and it has got connected successfully.
    4.) In the Webflow xml file, we are able to see the above highlighted task id which has already been defined.
    With that, I am able to understand that if there is any action on the work item in SRM system, the same is getting replicated in UWL. Else it is not getting displayed in the UWL if there is no action been done on the work item.
    Could you please check and advise if anyone has any other suggestions on the above. Thanks in advance for your help.
    Best Regards,
    Bharathi

    Dear Bharathi
    I hope you are well and many thanks for using the SAP Discussion Forums .
    Ok now based upon your scenario and the points you have highlighted there are a few important points to be highlighted.
    Firstly we need to remember the concept through which the UWL Service functions and operates.
    Ok with the UWL the normal behaviour follows the notion of the UWL Interface taking "5 Minutes"
    for the tasks to actually load into the UWL upon intitial logon.The UWL works using two Pull operations. Firstly tasks are pulled from the backend into the UWL cache and they are pulled a second
    time from the cache into the UWL User Interface. Due to this architecture there is an inherent delay in the automatic refreshes of the UWL. There is no way, in the current architecture that the UWL can refresh instantaneously. This is upon inital load as the cache must be built first upon logon so there will always be a delay. Real time refresh in the latest versions, is only when you complete a task.
    Now with reference to your scenario you mentioned the following:
    Points of interest
    Tasks forwarded to someone
    Tasks for Resubmission
    Completed Tasks
    "But not the New and In Progress tasks wherein the work items are already available in the user inbox."
    Now from your analysis perspective you mentioned examining the following:
    Checked in SBWP - workflow inbox of the respective user wherein the work items are available already.
    In the SWI5 transaction code, the work items are in Ready status
    From Portal perspective, the webflow connector has been defined and it has got connected successfully.
    In the Webflow xml file, we are able to see the above highlighted task id which has already been defined.
    Ok what I would you to do here is review and carefully cross reference your current UWL Destination Service Configuration setup as the smallest discrepancy (if any) can cause unpredictable and unexpected behaviour.
    - SAP Note: 1133821 - UWL Destination Service configuration
    Check that after applying Note 1133821 the destination names and the UWL connector names exactly match, even considering case-sensitiveness. I mean if your portal system alias (=UWL connector name) is for example XYZCLNT100, then the rfc destination name should be exactly XYZCLNT100$WebFlowConnector. If that is not the case, please correct the rfc destination accordingly.
    After you have checked/prepared the RFC destination for the future use please re-register that connector in the UWL config UI (Portal->System Administration->System Configuration->Universal Worklist) with which you would like to use this RFC destination.
    Restart the UWL portal service as the followings: Portal -> System Administration -> Support -> Portal Runtime -> Application Console -> com.sap.netweaver.bc.uwl -> Show -> in thecom.sap.netweaver.bc.uwl.core.portal.UWLPortalService row press restart.
    Re-create the connector in the config UI again and register the connector.
    Clear the UWL cache
    Additionally kindly review the documentation below to ensure the optimal parameters are maintained for workitems being brought into the UWL.
    KBA number: 1577547 UWL Performance Tips and Considerations
    Also, you may want to take a look at our sizing guide that our colleagues colleagues in development support have written in relation to the UWL. You will find this if you go to: You can find the document under this path: www.service.sap.com/sizing > sizing guidelines ' SAP NetWeaver   > UWL Sizing guide
    These are details that you need in order for the performance to be optimal in the Universal Worklist.  Please check through the documentation to see if your parameters are set accordingly and also that you have followed the information in this document.
    http://wiki.scn.sap.com/wiki/display/BPX/The+list+of+items+shown+here+could+be+outdated.+Waiting+for+update
    SAP Note: 1886490 UWL does not show the most upto-date items after login
    Kindly update me as per your findings.
    I greatly appreciate your time and patience and I look forward to recieving your reply.
    Troy Cronin - Enterprise Portal Support Enginerr

  • Loading Textual Data from HttpService Would Not Show Up on TextArea

    Hi,
      I have something fairly strange here that I have a little problem getting it to work. I am loading some data from XML and attempt to format it a little more on Actiosncript and print it out on the TextArea. For some reason, it would not show up, even though when I used Alert.show it does spit out the entire xml data set. Based on this, I know my data has been loaded correctly, but I am not sure why it is not showing up on my page.
    Here is the code,
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
        <mx:states>   
            <mx:State name="view">
              <mx:RemoveChild target="{intro}"/>
                <mx:AddChild relativeTo="{applicationcontrolbar1}" position="before">
                    <mx:TextArea editable="false" id="viewText" width="450" height="279" text="{messageInfo}"/>
                </mx:AddChild>
            </mx:State>
        </mx:states>
        <mx:Script>
            <![CDATA[
                import mx.events.ItemClickEvent;
                import mx.controls.Alert;
                import mx.rpc.events.ResultEvent;
                import mx.rpc.events.FaultEvent;
                [Bindable]private var message:XMLList;
                [Bindable]private var messageInfo:XMLList;
                private var savedIndex:int = 99999;
       private function clickHandler(event:ItemClickEvent):void {
                    if (event.index == savedIndex) {
                        //don't do a thing
                    else {
                        savedIndex = event.index;
                          navigateToURL(new URLRequest("../"+ event.item.data));
                private function toggleButtonBar_itemClick(evt:ItemClickEvent):void {
                    currentState = evt.item.data;
                    if(evt.item.data == "view") view();
               private function view():void{
                  currentState="view";
                  userView.send();          
               private function httpService_fault(evt:FaultEvent):void {
                    var title:String = evt.type + " (" + evt.fault.faultCode + ")";
                    var text:String = evt.fault.faultString;
                    Alert.show("There is an error! Type " + title + " " + text);
               private function httpService_result(evt:ResultEvent):void {
                    messageInfo = XML(evt.result).messages.message;
                    Alert.show(messageInfo);
                    message = XML(evt.result);
                    var message_name:String = "";
                    var message_phone:String = "";
        for each (var message:XML in messageInfo.messages.message) { 
              viewText.text += "Name " + messageInfo.name + "\n";
              viewText.text += "Phone " + messageInfo.phone + "\n";               
            ]]>
        </mx:Script>
    <mx:HTTPService id="userView" url="messages.xml" resultFormat="e4x"
      fault="httpService_fault(event);" result="httpService_result(event)" />
    <mx:PhoneNumberValidator id="pnVal" source="{your_phone}" property="text"/>
    <mx:EmailValidator id="emailVal" source="{your_email}" property="text"/>
        <mx:Array id="dp">
            <mx:Object data="view" label="View"/>
        </mx:Array>
        <mx:Panel id="panel" title="My Home" height="70%">            
        <mx:TextArea id="intro" width="77%" height="100" borderStyle="none" paddingLeft="10" color="black">
                <mx:htmlText><![CDATA[Welcome to my page.]]></mx:htmlText>
            </mx:TextArea>
             <mx:ApplicationControlBar id="applicationcontrolbar1">
            <mx:ToggleButtonBar id="toggleButtonBar" color="#FFFFCC"
                    dataProvider="{dp}"
                    itemClick="toggleButtonBar_itemClick(event);" />
        </mx:ApplicationControlBar>           
        </mx:Panel> 
    </mx:Application>
    Note, there are other items in the array, but those are not relevant to the question of the topic here, and therefore I am not posting the code for those sections.
    When I click on the View button, it does give me the correct state, but I get a blank box of textArea with no data when I know there is output from Alert.show in the view(). What have I missed?
    Thanks for your help.

    Thanks for the pointer. As a matter of fact, I found out that it is because of my xml nodes messing up, and that the text was displayed as white for someb reason. With a white background, of course I would not see a thing.
    Thanks again.

  • XML files imported into SPRC are not properly loading associated data into SPRC

    Hi EHS Gurus,
    My Issue is - XML files imported into SPRC are not properly loading associated data into SPRC .
    When am uploading the XML files manually its working fine in /TDAG/CPM00.
    The same when we are uploading the XML files thru basis program IPC (XML) Documents into SAP , its not working .In XMl file it showing its complaint the same time compliance workbench complaint statues it showing empty .
    for you reference pls see the attached screenshot .
    Pls can you help me on this .
    Regards,
    Suresh.

    Hi EHS Gurus,
    My Issue is - XML files imported into SPRC are not properly loading associated data into SPRC .
    When am uploading the XML files manually its working fine in /TDAG/CPM00.
    The same when we are uploading the XML files thru basis program IPC (XML) Documents into SAP , its not working .In XMl file it showing its complaint the same time compliance workbench complaint statues it showing empty .
    for you reference pls see the attached screenshot .
    Pls can you help me on this .
    Regards,
    Suresh.

  • XMII WebService shows error as - SOAP Service could not be loaded: null

    Dear Friends,
       I'm doing the xMII <-> XI <-> RFC scenario with the reference of the blog: https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/8703. [original link is broken] [original link is broken] [original link is broken] I just create an asyncronous scenario. Sender with SOAP adapter and receiver with RFC adapter. After creating the WSDL file from the scenario, I stored it in the xMII server path D:XISendere10099xMII_integration_1_Outbound_MI.wsdl. Then in the WebService action block of xMII BLT, I gave the URL as this file path, user name and password of XI server and click Next. Then I got the error message as SOAP Service could not be loaded: null.
       Please give the solution for this issue.
    Regards,
    Jagan.

    Dear Selvam,
       Actually I checked those things already. Everything is fine. I executed already HTTP <-> XI <-> xMII scenario and it was working fine. I checked with SendSMS.wsdl file now. That is also working fine. I am attaching the WSDL file, which I am using, for reference. This file is working fine in SOAPSonar and data posted in SAP R/3 table. But it is showing the error in xMII as "SOAP Service could not be loaded: null".
    <?xml version="1.0" encoding="UTF-8"?>
    <wsdl:definitions name="xMII_integration_1_Outbound_MI" targetNamespace="http://www.xxx.com/XIBatch3/10099/xMII_Integration_1" xmlns:p1="http://www.xxx.com/XIBatch3/10099/xMII_Integration_1" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"><wsdl:types><xsd:schema targetNamespace="http://www.xxx.com/XIBatch3/10099/xMII_Integration_1" xmlns="http://www.xxx.com/XIBatch3/10099/xMII_Integration_1" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><xsd:element name="xMII_integration_1_Outbound_MT" type="xMII_Integration_1_Out_DT" /><xsd:complexType name="xMII_Integration_1_Out_DT"><xsd:annotation><xsd:appinfo source="http://sap.com/xi/TextID">750324e0438311ddad100019bb528b1e</xsd:appinfo></xsd:annotation><xsd:sequence><xsd:element name="Vendor" type="xsd:string"><xsd:annotation><xsd:appinfo source="http://sap.com/xi/TextID">b24fc7d01b6611dd8de7001320eb83c5</xsd:appinfo></xsd:annotation></xsd:element><xsd:element name="Name" type="xsd:string"><xsd:annotation><xsd:appinfo source="http://sap.com/xi/TextID">b24fc7d11b6611dd8b8e001320eb83c5</xsd:appinfo></xsd:annotation></xsd:element><xsd:element name="Street" type="xsd:string"><xsd:annotation><xsd:appinfo source="http://sap.com/xi/TextID">b24fc7d21b6611ddcc29001320eb83c5</xsd:appinfo></xsd:annotation></xsd:element><xsd:element name="City" type="xsd:string"><xsd:annotation><xsd:appinfo source="http://sap.com/xi/TextID">b24fc7d31b6611dd8303001320eb83c5</xsd:appinfo></xsd:annotation></xsd:element><xsd:element name="Dist" type="xsd:string"><xsd:annotation><xsd:appinfo source="http://sap.com/xi/TextID">b24fc7d41b6611ddcd00001320eb83c5</xsd:appinfo></xsd:annotation></xsd:element><xsd:element name="Country" type="xsd:string"><xsd:annotation><xsd:appinfo source="http://sap.com/xi/TextID">b24fc7d51b6611dd9fa5001320eb83c5</xsd:appinfo></xsd:annotation></xsd:element></xsd:sequence></xsd:complexType></xsd:schema></wsdl:types><wsdl:message name="xMII_integration_1_Outbound_MT"><wsdl:part name="xMII_integration_1_Outbound_MT" element="p1:xMII_integration_1_Outbound_MT" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" /></wsdl:message><wsdl:portType name="xMII_integration_1_Outbound_MI"><wsdl:operation name="xMII_integration_1_Outbound_MI"><wsdl:input message="p1:xMII_integration_1_Outbound_MT" /></wsdl:operation></wsdl:portType><wsdl:binding name="xMII_integration_1_Outbound_MIBinding" type="p1:xMII_integration_1_Outbound_MI" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"><soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" /><wsdl:operation name="xMII_integration_1_Outbound_MI"><soap:operation soapAction="http://sap.com/xi/WebService/soap1.1" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" /><wsdl:input><soap:body use="literal" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" /></wsdl:input></wsdl:operation></wsdl:binding><wsdl:service name="xMII_integration_1_Outbound_MIService"><wsdl:port name="xMII_integration_1_Outbound_MIPort" binding="p1:xMII_integration_1_Outbound_MIBinding" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"><soap:address location="http://aprins07:8010/XISOAPAdapter/MessageServlet?channel=:A_Test:xMII_Integration_1_xMII_Sender_CC&version=3.0&Sender.Service=A_Test&Interface=http%3A%2F%2Fwww.xxx.com%2FXIBatch3%2F10099%2FxMII_Integration_1%5ExMII_integration_1_Outbound_MI" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" /></wsdl:port></wsdl:service></wsdl:definitions>
    Regards,
    Jagan.

  • Changes to xml dataset not showing up on webpage

    Using spry, I added a spry:region to my home page that uses an xml dataset to post special announcements on the page. Since the people that maintain this are not technical I want to give them an easy way to post their announcement and the xml file makes a lot of sense. It will be easy for them to post their "School CLOSED today due to snow" announcement.
    So the whole spry dataset works great except that when I update the xml file, the new content does not show up on the web page. I assume its something to do with cache. I did select the no cache option. If I delete the temp files from the browser I can see the changes. This is obviously a problem. I need the changes to appear on the website when the xml file is updated. Is there some way to force the webpage to recreate the dataset everytime the page is loaded? or some other work around that will do what we need?
    You can see the page at www.tribecacommunityschool.com. At this moment there is a school closing announcement up. It may not be up tomorrow but the code will still be on the page if you want to view it.
    Thanks for any help. I did see a post from 2007 that asked this same question and there were no responses. I'm hoping for better luck and a slightly faster turn around.

    Thanks for the help... This additional explanation on Phil_W's post gave me what I need and the refresh works great.
    testxml.js
    var dsData = new Spry.Data.XMLDataSet("testxml.xml?cache=" + (new Date()).valueOf(), "/data/info", {useCache:false,  method:'GET'});
    var dsOne = new Spry.Data.XMLDataSet("testxml.xml?cache=" + (new Date()).valueOf(), "/data/info/one", { subPaths: ["test" ], useCache:false,  method:'GET'});
    function RefreshMe()
         var auctionxml = 'testxml.xml?cache=' + (new Date()).valueOf();
         dsData.setURL(auctionxml);
         dsData.loadData();
          dsOne.setURL(auctionxml);
         dsOne.loadData();
    testxml.xml file -------
    <?xml version="1.0" encoding="UTF-8"?>
    <data>
      <info id="1">
        <one>
          <test>test me sdfsdf</test>
        </one>
      </info>
    </data>
    html file----------
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <script type='text/javascript' src="jquery.js"></script>
    <script language="JavaScript" type="text/javascript" src="SpryAssets/xpath.js"></script>
    <script language="JavaScript" type="text/javascript" src="SpryAssets/SpryData.js"></script>
    <script language="JavaScript" type="text/javascript" src="SpryAssets/SpryEffects.js"></script>
    <script language="JavaScript" type="text/javascript" src="testxml.js"></script>
    </head>
    <body >
    <div class="SpryHiddenRegion" spry:region="dsOne">
      <div id="test">{dsOne::test} </div>
    </div>
    <script language="JavaScript">
    // Switch on Refresh of auction data
    var AuctionInterval = 0;
    AuctionInterval = setInterval ( 'RefreshMe()', 5000 );
    </script>
    </body>
    </html>

Maybe you are looking for

  • Email Campaigns

    Hey Guys ... I have a client that wants to use campaigns and he had 2 questions I didn't have the answer to. 1) How do the campaign reports that show campaign clicks, opens and bounces work? Is that automatically built into the emails or is there som

  • Excise Values are not flowing from J1IJ to VF01

    Hi All, I am facing the problem in Invoice to Customer(from Depot). Excise Values are not flowing from J1IJ. I maintained Alt Cal type as 356 in Pricing procedure for Excise condition types. Even though its not flowing. I am using Tax Procedure TAXIN

  • What's the maximum size and length that go onto a DVD

    I'm trying to put a whole load of home videos onto DVDs. What is the maximum size that can be burnt onto a DVD. There are a lot of hours on here, about 15 and I was hoping to try and get about 3 hours per DVD is this possible? Thanks Tom

  • Is it possible to remove leading 0's?

    If I have a column called id_inst in tableA of type String and having a value of 0000203,is it possible to remove the leading zeroes from it? Select LTRIM(id_inst, ?? Is this possible?

  • Several small projects under one big project

    Dear Gurus, Can several small projects be created under a big project? Similar like what we do WBS under the WBS or activities for that matter?