XML pushed?

flash player 8
actionscript 2.0
loading animation
xml loaded...
PUSHED
PUSHED
PUSHED
PUSHED
PUSHED
PUSHED
this is the message that pops up everytime I try to test movie! I've tried everywhere to find a solution and maybe some-one on here can help me out.
basically i've been given the flash file of a website to edit, and and then the ftp details of the actual site. So i've dowloaded all the info from the ftp account, tried to use the swf from the flash file i have and it will load the opening scene but won't load the xml driven content! and i get a actionscript pop up window with the message above.
I've checked where the actionscript is pointing to (e.g. actionscript/loader.as)
and everything should work but doesn't.
please can someone help?
Phil

   ##   Load and process XML                                  ##
// ------------------------------------------------------------- [ Load XML ] ----------------------------------
var xmlfile:XML = new XML();
loadXML = function () {
    _root.xmlfile.load("pjp.xml");
    _root.xmlfile.ignoreWhite = true;
    _root.xmlfile.onLoad = function(success) {
        if (success) {
            trace("xml loaded...");
            makeArray();
        } else {
            trace("xml load failed...");
// ------------------------------------------------------------- [ Convert to multi-dimensional arrays ] -------
    navButtons = [
    ["submenu1_mc",
        ["galleries_mc", "GALLERIES"],
        ["advertising_mc", "ADVERTISING", 0],    // [button clip, button title, image category]
        ["editorial_mc", "EDITORIAL", 1],
        ["lifestyle_mc", "LIFESTYLE", 2],
        ["personal_mc", "PERSONAL", 3],
        ["manipulation_mc", "MANIPULATION", 4],
        ["clients_mc", "CLIENTS", 5],
        ["viewall_mc", "VIEW ALL", 6]
    ["submenu2_mc",
        ["showreels_mc", "SHOWREELS", ],
        ["show1_mc", "SHOWR SUB ONE", 7],
        ["show2_mc", "SHOWR SUB TWO", 8],
        ["show3_mc", "SHOWR SUB THREE", 9]
    ["studios_mc", "STUDIOS"],
    ["shadowplay_mc", "SHADOWPLAY"],
    ["bio_mc", "BIO"],
    ["contact_mc", "CONTACT"]
makeArray = function() {
    pages = new Array();
    nodes = xmlfile.firstChild.childNodes;//[0].childNodes;
    // Build navigation menu array
    navButtons = new Array();
    imageArray = new Array();
    var categoryNum = 1;  // first category (gets incremented in loop)
    // Loop through 'menuOption' XML nodes
    for(i=0;i<nodes.length;i++) {
        var menuOption = nodes[i];
        navButtons[i] = new Array();
        // Process options with submenus
        if (menuOption.attributes.submenumc) {
            navButtons[i][0] = menuOption.attributes.submenumc;  // submenu clip
            navButtons[i][1] = new Array();
            navButtons[i][1].push(menuOption.attributes.buttonmc);  // submenu button clip
            navButtons[i][1].push(menuOption.attributes.name);  // submenu button title
            // Submenu options (categories)
            var subOptions = menuOption.childNodes;
            for (var j=0; j<subOptions.length; j++) {
                navButtons[i][j+2] = new Array();
                navButtons[i][j+2].push(subOptions[j].attributes.buttonmc);
                navButtons[i][j+2].push(subOptions[j].attributes.name);
                navButtons[i][j+2].push(categoryNum);  // category number for this button
                // Add items (images/video) for this category to 'imageArray'
                var subItems = subOptions[j].childNodes;
                imageArray[categoryNum] = new Array();
                imageArray[categoryNum].push(subOptions[j].attributes.name);  // category name at index 0
                //trace(subOptions[j].attributes.name);
                // Add linkage
                if (!subItems.length) {
                    navButtons[i][j+2].push(subOptions[j].attributes.linkage);
                    //trace (subOptions[j].attributes.linkage);
                for (var k=0; k<subItems.length; k++) {
                    var client = subItems[k].childNodes[0].firstChild.nodeValue;
                    var text = subItems[k].childNodes[1].firstChild.nodeValue;
                    var file = subItems[k].childNodes[2].firstChild.nodeValue;
                    var type = subItems[k].childNodes[2].nodeName;
                    imageArray[categoryNum].push({client:client, text:text, file:file, type:type});
                categoryNum++;
        } else {
            // Process options without submenus
            navButtons[i] = new Array();
            navButtons[i].push(menuOption.attributes.buttonmc);  // submenu button clip
            navButtons[i].push(menuOption.attributes.name);  // submenu button title
            navButtons[i].push(menuOption.attributes.linkage);  // submenu button page linkage
    // Clean up
    delete nodes;
    delete xmlfile;
    // XML loaded and processed
    doNavigation();
loadXML();
This is the AS for my xml page can someone see why it would be giving me that message?

Similar Messages

  • Xml Push Parsing in J2Me applications

    Hi all,
    I would like to use Push parser in j2me application.Can u please tell me how can i use sax parser in mobile application.Because when i included "jaxp-api.jar" in mobile application,it gives an error "FactoryFinder class not found".. So please tell me how can i overcome this error or any other push parser available for J2me applications.
    Thanks
    Regards
    Sourab

    Please review this article.
    http://developers.sun.com/techtopics/mobility/midp/articles/parsingxml/
    There is a link to a push parser mid way through the article. If you search "push parser j2me" you should be able to find others.
    If you still are not able to find a push parser you could create your own. How complex is the xml you need to parse?
    I created an example called y!p! some time ago that uses a push parser to parse Yahoo's Image Search web service. (http://developer.yahoo.com/search/image/V1/imageSearch.html)
    You can download the example src code. For a more complex example you could look at w!k!. It uses a push parser to parse html wikipedia articles.
    w!k! push parser src:
    http://hostj2me.cliqcafe.com/www/forumtopicview.html?fid=58&categoryId=36&fpn=0
    w!k! src code:
    http://www.hostj2me.com/appdetails.html?id=1569

  • J2ME XML Reader

    Hi,
    I'm wanting to write a J2ME application that reads and performs operations on XML data. I'm new to J2ME and understand that you cannot manipulate files on a mobile device, instead you only have RMS. Is my assumption correct and if not can you suggest how I could read/write files on a mobile telephone device.
    Thanks,
    Doug

    Have you taken a look at the xml parsers that are available already they may provide you with the functionality needed to extract the relevan data from the tags so that you can manipulate them
    examples of parsers are:
    Enhydra's kXML
    ASKMLP XML Push Parser
    Xparse-J

  • Push application on Asterisk/Trixbox pro

    I want to send a text message to ip phones active on the asterisk.
    I'm not sure if the push phone sample on the sdk will work on asterisk since it uses AXL database query to get the list of IP Address.
    I want my application to query the Asterisk database for IP address and push message to those phones.
    I'm using PHP to code the application..
    Thanks
    Danny

    It is not always possible to push XML to Cisco IP Phones:
    "XML Push is only supported with the SCCP image.
    To achieve a dynamic page with the SIP image you can use the http header refresh directive"
    So you need the use SCCP firmware in order to be able to push xml to Cisco IP Phones.
    See:
    http://www.voip-info.org/wiki/view/Asterisk+Cisco+79XX+XML+Services

  • Excel 2007 and Smartview 11.1 file open slow

    We are in the process of upgrading to HFM system 11.1 and smartview 11.1.1.3 and as part of this process we are starting to use Excel 2007. I am encountering an interesting problem when opening files in Excel 2007 using smartview 11.1 and I am wondering if any one else has seen this problem and found a solution.
    First I converted an excel 2003 file to excel 2007 and saved the file as an xlsx file type. Then I am able to open the file and it would take about 30 seconds to open the file. The file has about 15,000 formulas on for spreadsheets. If I click on each spreadsheet individually and use the "Refersh" button I can save the file in about 10 seconds and then close the file. When I open the file again it will open in 30 seconds. Now using the same file I click "Refresh All" and the file processes fine. I am able to save and close the file in about 10 seconds. However, when I try to open the file again it takes about 20 minutes to open, and then 20 minutes to close.
    This only happens with two or three files. I have another file that is 40 spreadsheets and about 3,000 formulas that is not affected when I click Refresh or Refresh All.
    Any help would be apperciated.
    Rich

    Hi
    On metalink i found some notes about this issure
    "Background
    SmartView communicates over HTTP using .NET. This just means that requests and responses are sent in a standard XML format that is tucked in the HTTP headers. The mechanism is the same as when your internet browser requests a file or submits a form (simplification). A standard Microsoft component that is part of Internet Explorer is used for this.
    There are three components (four if you include the network) in a SmartView refresh:
    -the client
    -the web server
    -the HFM application server
    It is easiest to troubleshoot when they are on separate machines. (Running SmartView on the server to see whether it works better is a useful test to see what effect the network is having, but doesn't show any other bottlenecks.) If you run Task Manager on these 3 machines showing the Performance tab, you will see initial activity on the client as Excel clears the cells and the request is converted into XML. Then you see the web server get busy as it receives and parses the request. Then the application server is busy as it send the data, then the web server is busy as it compiles the results into XML again, and finally the client parses the XML, pushes the data into cells and runs an Excel calculation. This last stage is the longest of all. Overall, it is typical to see the client doing 90-95% of the work, so client performance is a very important factor. Look out for Excel's memory usage increasing and RAM becoming in short supply. Often, user dissatisfaction with refresh times can be alleviated by giving them more RAM or a faster PC.
    The situation we are dealing with here, however, is when the chain of events described above is interrupted. In this case, you will see the client or the web server wait in vain for a response from the next machine in the chain. The case of invalid XML is similar, but the response is truncated so that the XML is not well-formed when it arrives. XML consists of matching pairs of tags and is not well-formed when a closing tag is missing. This can be caused by certain network settings such as packet size (see later). The end result in either case is the same: as Excel cleared the cells before sending the request, cells are left blank or with zeroes.
    Your job now is to work out why the particular component is failing.
    Client
    Check the HTTP time out in the registry:
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]\
    "ReceiveTimeout"=dword:00dbba00
    "KeepAliveTimeout"=dword:002BF20
    "ServerInfoTimeout"=dword:002BF20
    The time-out limit is five minutes for versions 4.0 and 4.01 and is 60 minutes for versions 5.x and 6. Also, the time-out limit is 30 seconds for Windows Internet Explorer 7. To change the settings, add the above keys. The above values are hexadecimal, not decimal and correspond to 18000 milliseconds (3 minutes) and 240 minutes for the receive time-out. See
    - http://support.microsoft.com/kb/813827
    - http://support.microsoft.com/kb/181050
    Once you make those changes, my recommendation is that you reboot the client machine.
    Web server
    Look for errors in logs showing that the web app didn't respond/disconnected or timed out waiting for another application (i.e. the HFM application server). Eliminate load balancers etc. during testing in order to isolate the problem and to ensure that the user always goes to the same web server otherwise, logs can be hard to interpret. See also the IIS Tuning Guide for IIS settings. We cannot recommend particular settings, as each client must establish the optimal settings for their own environment after performance testing. If necessary, engage the services of a suitably qualified consultant.
    Application Server
    HFM application server performance is very dependent on whether the data is already in RAM or not. One symptom, where the first refresh fails but the second one succeeds, is probably a sign that the cache needed to be populated and once that had been done (by the first refresh) it went faster. HFM loads whole subcubes (Scenario, Year, Value and Entity) into cache, so asking for lots of accounts in the same subcube is fast, but asking for lots of entities will inevitably slow things down as it runs out of RAM and starts unloading subcubes to make room for more. The HFM event log (HsvEventLog.log) shows this happening, but don't forget that the messages you see are a normal consequence of the way HFM works and are not a problem unless you see a hugely elevated number of them during the period the refresh occurs. Another sign would be page file thrashing.
    If there are several servers in a cluster, use sticky sessions in HFM to make sure tests always go the same server, or hit one server directly rather than using the cluster.
    Solutions here involve giving more RAM to the server (probably not possible because of the 2 GB limit) and changing the worksheet design to restrict the number of subcubes accessed. A separate consolidation server, so that reads are not competing with intensive consolidations and calculations, would be a good thing.
    Network
    To find out if packets get fragmented, use
    ping -l size -f
    to send a big packet with the 'don't fragment' flag. E.g.
    Ping -l 1024 -f oracle.com
    If you see a reply like Reply from 141.146.8.66: bytes=1024 time=200ms TTL=245 then the size you specified is below the packet limit of the network. But if you use, for example, 2000 in place of 1024, you get Packet needs to be fragmented but DF set, then you know you have exceeded the limit. Combine this investigation with a Fiddler trace (https://www.fiddler2.com/fiddler2/) to see what size data messages are being sent and received.
    Troubleshooting Guidance
    If you seriously want to go into this in more detail, then it will take a considerable effort on your and your IT Department's part. My general advice would be:
    1. During this process, fix your environment so that it is predictable. Register a single HFM application server and connect to that. Use a single web server and don't go through Apache or any other redirector. Make sure we know which machine to go to for logs. This would be a temporary measure and it doesn't stop the other users using the full, load balanced system so long as it doesn't involve your server.
    2. As far as possible keep other users from using it during testing, unless you are specifically testing for performance under load. We want to see what activity is due to SmartView and not random other jobs.
    3. Use PerfMon on all three machines: client, web server and application server.
    4. Clear Logs before testing and note the times of each test so the logs can be correlated.
    5. Log CPU activity, memory usage, network throughput, page faults, thread count etc. I'm no expert on this so get advice from someone who is.
    6. In addition to the performance logs, from the IIS Server get:
    * HTTP.SYS Error Log - %windir%\System32\LogFiles\HTTPERR (Default location; configurable)
    * IIS Website Log - %windir%\System32\LogFiles\W3SVC# (Default location; configurable)
    * Event Log (both System and Application) in EVT and TXT (tab separated) formats
    7. From HFM Application server get:
    * HsvEventLog.log (in <HFM install>\Server working Folder)
    * Event Log (both System and Application) in EVT and TXT (tab separated) formats
    8. Be aware of all timeout settings in your environment (i.e. IIS & the network) and time your tests. This can show whether it is an ASP timeout, script timeout, client side timeout or whatever. Note that the Web Session Timeout setting for SmartView in HFM's Server and Web Configuration is a separate issue from IIS timeouts. Web Session Timeout controls the length of idle time before SmartView makes the user log in again. Default 20 mins.
    9. Run Fiddler traces to directly observe the XML and check for HTTP failures.
    Further resources
    - Tuning IIS 6.0 for HFM
    - SmartView Performance FAQ
    Both are available from Support.
    Author: Andrew Rowland
    Version: 11.x (Fri, 30 October 2009)"
    regards
    Alexander

  • SharePoint 2010 SP2 hosted on Windows 2012 R2 NOT discovered by SCOM 2012 R2 + 2 SP MP's

    What is the process to get SharePoint 2010 Management Packs loaded in System Center 2012 R2 to discover/monitor SharePoint 2010 SP2 (14.0.7121.5000) loaded on Windows 2012 R2?
    View of installed system:
     System Center 2012 R2 loaded on Windows 2012 R2 (supported separately by SQL 2012 SP1 loaded on Windows 2012 R2)
    -Microsoft SharePoint 2010 Products Management Pack for System Center Operations Manager 2007
    -System Center 2012 Monitoring Pack for SharePoint 2010
     SharePoint 2010 SP2 (14.0.7121.5000) loaded on Windows 2012 R2 (supported separately by SQL 2012 SP1 loaded on Windows 2012 R2)
    The SharePoint 2010 Management Shell works fine!
    Result
    Event 0, Operations Manager - Cannot identify which SharePoint farm server is associated with. Check the management pack guide for troubleshooting information.
    Looked at these already:
    KB2690744, Configuring the SharePoint 2010 Management Pack for System Center Operations Manager. 
    http://om2012.wordpress.com/2013/05/24/sharepoint-2010-mp-on-scom-2012/
    Further, if the xml push does have the command get-farm instead of get-spfarm, that could be the issue. i.e.
    http://www.scom2k7.com/advanced-troubleshooting-of-the-sharepoint-2010-mp/
    Thanks,
    +Tony
    Please click "Propose As Answer" if a post solves your problem or "Vote As Helpful" if a post has been useful to you.

    Peter,
     I recommend to remove the Windows 2012 R2 server out of the farm and redeploy on W2008 R2.
    This issue does not have an easy fix.
    Summarizing, this appears to be the issue:
    1. Windows Management Framework 3.0 is integrated with Windows 2012 R2, which installs .NET 4 and Powershell 4.0. Not uninstallable.
    2. The Add-PSSnapin Microsoft.SharePoint.PowerShell is not supported with Powershell 4.0.
    3. The SCOM SP2010 MP puts a package on the defined farm server and when the agent launches the package, it calls Powershell (v4 in theis case) and errors out. The target W2012 server will have an Error 0 in the Operations Manager Event log. See below.
    Options:
    1. Work around maybe - Develop method for manual discovery (I'm working on that now).
    2. Rebuild SP2010 farm on Windows 2008 R2
    3. System Center Team - Write a new MP to down version Powershell (Powershell.exe -Version 2)
    4. Powershell Team - Write a SharePoint Snapin for Powershell 4
    Please click "Propose As Answer" if a post solves your problem or "Vote As Helpful" if a post has been useful to you.

  • Metadata keeps wanting to be saved on assets.

    Greetings,
    My location has a FCS installation as well as a FileMaker Server installation. We are pushing metadata from FMS via XML to FCS. This process works fine. However, when users are manipulating assets in FCS that have had metadata pushed into them from FMS they are asked to save metadata changes even though they haven't made any. Is anyone aware why this occurs? Over time all our assets in FCS will be populated by this XML push and it'll be a great irritation if each time an asset is accessed FCS asks to save changes that were never made.
    Also, FYI, if you choose Save and then access and close the asset the save prompt still comes up.

    This sounds like the common "lookup problem" that many of us have had problems with.  Did you recently assign a lookup to a text field that previously allowed free text entry? An example would be a "Client" field - let's say you had a text field for your client, and allowed the user to enter the client name, and then you later noticed an inconsistency in the data, like spelling or formatting errors. So you created a lookup containing all your clients and assigned the lookup to the field. When you do this, FCSvr doesn't know what to do with fields that contain values that are NOT in the lookup.  For example, if my client was ABC Company, and my editors put it in as "ABC Co." or "ABC" and then I assigned a lookup to that field, and entered "ABC Company" in the lookup, FCSvr has no way of knowing that "ABC" and "ABC Co." mean "ABC Company."  So it will constantly give you the "The metadata has changed" dialog box even if you simply open the asset and don't change anything. You have to make sure all fields with lookups assigned have field values that are included in those lookups.  One way to test if this is your problem is to click through each lookup and make sure the values selected in every lookup in that metadata group have valid values. This isn't easy, because if one is incorrect, it may show blank or [None] and you will have no way of knowing without examining the metadata at the command line. It's a pain. There are definitely some holes in the implementation of lookups in FCSvr, I could give Apple a huge list!

  • How can a structured frame be used for translating books to foreign languages?

    I keep reading about how a structured approach can improve the translation process (from english to foreign languages), however, i can't seem to find specifics about a particular method or tutorials about how to go about it (specifically). My question is, how (specifically) can structured framemaker be used for translation from english to foreign languages?  Links to tutorials on this issue would be greatly appreciated. Thank you.

    @Ian Proudfood
    A well organized XML based project will definitely save translation costs. There are many advantages to the XML approach to translation management including:
    Almost zero DTP rework costs - make the EDD/Template do all of the work!
    Translation is application version independent - no need to wait for the Translation Memory/CMS system vendor to support the latest version of FrameMaker.
    »... a well organized XML based project will definitively save translation costs.« – I have read sentences like this from a lot of consultants. And I have consulted/supported a lot of customers after those consultants left the stage. I always hear more or less the same from all of those clients. No question, I hear a lot of arguments for working with XML in tech doc, most of the arguments you mention included. Most of the tech writers are happy with the new structured FrameMaker and enjoy writing. And, cross your heart: Finally there's no alternative to XML in the long term if you take your tech writer job seriously. No question – working with pure XML in a professional information architecture in a structured, guiding editing environment like FrameMaker is cool, fun, faster and produces more open, more accessible, more reusable, more reliable, more consistent, in a nutshell: more valuable data.
    But what I have never ever heard, and I'm talking about several hundred companies, is: We save more money on translation now. You might imagine that this is surprising me since many years. This is why I always ask: Did you save any costs in your translation projects? Surprisingly the answer is always: No. Actually some – no, wait: many – tell me, that their translation agency even charges more now, because they have a lot of new costs:
    Costs, to customize their translation memory system to the clients custom xml,
    costs to follow badly or not documented changes in the client's xml structure (DTD/Schema changes) in the TMS,
    costs because of more engineering work like 
    valididating xml in advance,
    fixing invalid xml exports,
    fixing invalid translations due to – sometimes massively – increased amount of tag errors because of tagging differences of "old" (legacy mif) and "new" (xml) tags,
    dealing with just too big XML files that need to be carefully split, so that the TMS has a chance to read it, or alternatively:
    "glue" the ten-thousand xml "snippets" to more handy chunks,
    project managers and translators that need to do additional checks, validations, verifyings - and often not knowing what to do with those cryptic error messages, meaning additional support costs
    Of course, many if no all of these and many other problems I did not mention here can be solved. And many are not exactly system immanent problems but communication problems (like introducing or renaming elements/attributes but not documenting this and not communicating this to the translation service provider) or would apply to any system change (e.g. also when switching from Word to Frame). However, I do not know of any single translation company on this planet (and I know virtually thousands of them from countries all over the world) that reduced the price per word for just a single pence, just because the client switched over from Word/Quark/FrameMaker/InDesign/Whatever to XML.
    Just ask your translation service provider: Will you charge me less per word if I send you XML instead of MIF? I would really be surprised to hear a "yes". And frankly, if you have ever compared a professional FrameMaker document with the same document in xml format in a professional system like Trados: There is actually no difference that would justify any price difference. The text is the same, the amount of words identical, the number of tags is identical, it even looks identical in the translation system (I can post screenshots if you like). From the translation perspective there is no single reason why a translator should charge a single pence less.
    So, it's a modern myth, that switching to xml reduces translation costs. That might be true, if you come from a really medieval documentation szenario with MS Word or the like, with manual formatting without any styles and so on (I see tech docs every day where even the TOC is typed in manually!!!) and swith from there to a modern structured xml authoring in combination with other supporting tools like authoring memory / authoring assistance, controlled language, translation memory and terminology managent and control, snippet based content management and so on. That will increase the consistency and quality of your data, which will reduce translation costs in the long term. But the truth is: This has nothing to do with XML per se, but with professional writing and professional management.
    So, what's left in the money saving story? No more DTP in the target languages? I always hear, that with XML and FrameMaker you do not have to "format" the translated document. The truth is: If you have a professionally formatted (unstructured) document, you don't have to take care of it, too. Modern tools like Trados keep 100% of the formatting 100% correct in the translated document. If the underlying template is intelligent enough to take account of text amount changes due to longer translations, and if you don't have too many local formatting overrides, the DTP is actually zero and can be reduced to a few mintes/hours for "flying" of the document to check out for unexpeted problems wich can occure in both structured and unstructured documents.
    Just to give some numbers on this: We are processing every day technical documentations for a quite big company. A typical documentation from them is about 250 pages in unstructured FrameMaker 9 (source language is English). Until now they were resistent to all my XML pushing. The Documentation is based on a straight, simple template (with our help "reduced to the max") and there are no formatting overrides (a script automatically checks this). The post translation Quality Assurance effort is - depending on the target language - usually something between 1 to 4 hours – that's a few seconds per page for the languages where already a lot of past Quality Assurance Steps went back into the Translation Memories and up to a minute per page for more "problematic" languages).
    So, again: XML will not save you a single pence on translations. But it might help you to produce more open, more accessible, more reusable, more reliable, more consistent, in a nutshell: more valuable data. But if you already have properly set up (ustructured) FrameMaker Documents and already work with a professional translation memory system, you will be quite disappointed to learn, that the impressive money saving promises you recently saw on that great PowerPoint slides melt down to a few bucks over a couple of years.
    Kind regards,
    Stefan Gentz

  • JTAPI hang up call

    Hi all,
    I am trying to hang up a call on an IP Phone using JTAPI. I've tried to use connection.disconnect, however after disconnecting the call it lets the line open and beeping. Is there a way, without using an xml push, to hang up 'totally'?
    thanks,
    alej

    Isn't that how things work on a CCM? The continuing to beep (I'm not a 100% sure you can reconfigure that) seems to be a standard for Cisco (and various SIP phones for that matter), whereas other PBXes take the device on hook after a few beeps.
    There's also Call.drop() though I've never used it.
    Even on the Alcatel systems I work with.. when I drop a call via CTI, the device plays the busy/reorder tone (as you know in Switzerland they're both the same ;) for a few seconds, and then goes on hook (and that behavior is a standard feature for this PBX).

  • How to Push the into SAP ( XML data converted into IDOC )

    Hi
    i am getting XML file from Non SAP system.I need to push XML data into SAP on daily basis with out using XI as the middleware.
    I know if i get text file will use BDC's or LSMW. But i am getting data in XML format and then i need to converted into IDOC format and stored in to sap data base tables.
    Thanks for advance.
    srini

    Is the XML an IDOC-XML or custom XML that you need to post as an IDOC??
    If it is IDOC-XML you need to defined XMLFile port to process the IDOC-XML without any mapping.
    If it is a custom XML, parse the XML data into an internal table (as required) & continue with BDC or IDOC posting as you wish.
    Check for XML parsing programs..
    -Siva Maranani

  • Getting data from an XML file and pushing it to a database

    I need to create a coldfusion page that grabs an incoming xml file, extract the data and then push it into a database. I have never done anything like this, and have been reading as much as I can find. Can anyone recomend a good resource or give me a hand on how I go about doing this?
    The xml file is coming from another page. Basically the source page is a simple text box that an xml file is pasted into and submited. The action page must grab the xml file, pull out the data and funnel it into a table. Then it must query the table and based on the results of the query, push a new xml file back to the user.
    <my brain is already hurting>

    I'd start by looking at the CF documentation related to XML and Ben Forta's books.
    "About XML and ColdFusion" from CF docs:
    http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec133ba -8000.html
    Ben Forta's books
    http://www.forta.com/books/0321679199/
    It would be good to know:
    1. What the workflow is for your task. Can you describe your task in detail and provide samples of the XML and database?
    2. The database you are using and the structure of your tables.
    3. The version of CF you are using.

  • Xml server, requests push, event notifications

    Hello,
    I can only work with oracle via Flash ActionScript xmlSocket, thus
    there is a pure xml communication so I need the following:
    1) tcp/ip xml server (connection port for Flash ActionScript XmlSocket class)
    2) server push - ability to send N requests at once with later responses fetching
    3) ability to add event listener on every DB change and the option
    to receive the notifiction event back to client as xml document.
    4) persistant connection for multiple xml requests and responses during
    one connection.
    Does Oracle support all this, or at least 1), 3), 4) ?
    Thanks, Dmitry

    Dmitry,
    From what I read: I think you need a socket server. UNITY 2.0 (java based), Shovemedia (java based), Swocket (open source built in Python)
    If you use Python:
    The below link has information on python cx_oracle connection to the database in cx_Oracle.connect('userid/password@database')
    Python: http://www.ioug.org/python.pdf
    Alernative external data with Flash Remote
    http://www.devarticles.com/c/a/Flash/Working-with-external-data-in-Flash/

  • Dynamic XML Array Push ?

    I'm having an issue with pushing the node contents of my XML
    to an array.
    I'm real close and have tried a ton of things, but I'm hoping
    to get a push here..
    The below code works fine, but is limited to 22 chars...
    I'd like it to parse the node regardless of length by first
    calculating the length and then looping through the push based on
    that int (tileWidthNumber).
    Any thoughts?
    It's important to ignore the commas from the node, and the
    push each value to the myMap array.
    Thanks!
    The XML node and .as are as follows:

    Genius!
    I'm now using:
    myMap[0].push(new Array(coordElementStr.split(",")));
    and it works like a champ!
    Thanks.

  • Failed to push XML template when setup SMD Managed system

    Hi,
    when I setup a managed system in SMD, I receive the warning:
    XML Templates pushed : 0 successful, 1 failed
    Failed to push XML template to sv50761/TP4/10 (sv50761.RUV.DE) : com.sap.engine.lib.xml.parser.ParserException: XMLParser: Bad Attribute value(:main:, row:10, col:79)(cause=com.sap.engine.lib.xml.pars
    er.ParserException XMLParser: Bad Attribute value (:main:, row:10, col:79))
    (Data Collect may fail due to missing templates)
    Do you still want to proceed ? (Setup operations may fail due to warnings above)
    when I check the xml-templates, at the mentioned row, there's the database-information: it shows "9.00.3068#" (a binary value, instead of #)
    when I check the database in SMSY there's "9.00.3068#" in version as well, I can't change it there manually, because datasource is TMS/RFC.
    In SLD the Version vor the database is displayed correct: 9.00.3068 (without #).
    Where does the # occur & how to delete it? How can we setup managed systems without the warning?
    kr, achim

    Just came across this issue and this snote fixed it.
    Note 1156714 - Failure to push XML templates during Diagnostics Setup

  • Nokia E61i Push Data using XML Cisco Objects?

    Hi:
    I have a Nokia E61 (wifi) suscribed to a Cisco Call Manager.
    Is there any posibility to Push Data to the device?, like XML Cisco Objects to IP Phone 7970.
    Could I send an SMS without use the mobile network?
    thanks in advance,
    marcelo

    Thanks for the reply. Yes, I did compile all the Java and it
    works OK with a simple Java program. It just will not work in a
    Flex application.
    The java classes are:
    RRA:
    package blah.myPackage;
    import java.util.List;
    import java.util.Collection;
    import flex.data.DataSyncException;
    import flex.data.assemblers.AbstractAssembler;
    class RRA extends AbstractAssembler
    public Collection fill( List fillParameters )
    RRS service = new RRS();
    return service.getSome();
    RRS:
    package blah.myPackage;
    import java.util.ArrayList;
    import java.util.List;
    import java.sql.*;
    import flex.EORS.*;
    class RRS
    public List getSome()
    ArrayList list = new ArrayList();
    String str = "bob";
    RR rr = new RR(str);
    list.add(rr);
    return list;
    RR:
    package blah.myPackage;
    class RR
    private String name;
    public RR() { }
    public RR(String name)
    this.name = name;
    public String getName()
    return this.name;
    public void setName(String name)
    this.name = name;
    I started with something that retrieved data from a database
    but watered it down just to try and get some kind of communication
    between Flex and Java.

Maybe you are looking for

  • IR report value from function error

    i have ir report and one column value coming from function,when open the IR report its giving error.. IR report code SELECT CS_ID ,CS_NAME, Util_func(PASS_ID) as "ALERT_DAYS"   from "CSD_MASTERS" Function code FUNCTION  Util_func(PASS_ID NUMBER) RETU

  • Swithch phone numbers on phones under same contract

    I have 4 phone on my account. I want to switch the numbers on 2 of the phones. (i am giving it to my son). I need to keep my number for professional reasons. How do i go about doing this?

  • How to get older nvidia driver

    I just installed archlinux again and the nvidia driver. Now when I run 3d games I get a stutter every 13-15 seconds, as if the graphics freeze for 1 second. I remember having this problem with the nvidia version 169, and then I downgraded the driver

  • HCM Dynamic Applicant Creation

    Applicant Data Will me Maintained in EXCEL .CSV File. I tried to update the excel data thro BAPI To create a New Applicant IN PB30 Dynamically. But went in vain.Kindly Suggest me an Idea or is there any option to create an applicant dynamically other

  • Dynamic Date Range Filter - Rolling 15 Months

    Hello All, I'm having an issue with the below report filter: Date.Date >= (TIMESTAMPADD(SQL_TSI_MONTH, 0, CURRENT_DATE)) AND Date.Date <= (TIMESTAMPADD(SQL_TSI_MONTH, 14, CURRENT_DATE)) The aim is for the above to return 15 months of data, today's da