HttpService only works on local!?

Hello, I need help.  I've built  a simple datagrid, it is populated by an httpservice who is called on creation complete.
when I click the the run Main option, in Flex Builder, it runs no problem. When I upload the bin release, it does not populate.  Is there some setting I don't know about?
============
CODE
============
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
               xmlns:s="library://ns.adobe.com/flex/spark"
               xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
               backgroundColor="#0B0101" width="1080" height="612"
               creationComplete="send_data()">
    <fx:Style source="Main.css"/>
    <fx:Declarations>
        <!-- Place non-visual elements (e.g., services, value objects) here -->
        <s:HTTPService id="userRequest" url="http://theServer.com/scripts/xml_output.php" useProxy="false" method="POST">
        </s:HTTPService>
    </fx:Declarations>
    <fx:Script>
        <![CDATA
            import mx.controls.Alert;
            private function send_data():void
                userRequest.send();
            private function onClick() :void
                    if( grid.selectedIndex==-1 )
                    else
                        body.visible=true;
                        varPass.text=grid.selectedItem.ID;
                        title.text=grid.selectedItem.name;
                        desc.text=grid.selectedItem.description;
                        cred.text=grid.selectedItem.price;
                        grid.selectedIndex=-1;
            protected function button1_clickHandler(event:MouseEvent):void
        ]]>
    </fx:Script>
    <mx:DataGrid id="grid" click="onClick()"  x="37.2" y="63.3" width="895" height="450" dropShadowVisible="false" dataProvider="{userRequest.lastResult.courses.course}" chromeColor="#2240C0" fontSize="20" color="#070202" fontWeight="bold" verticalAlign="top" textAlign="center" enabled="true" paddingLeft="10" paddingRight="10" paddingTop="10" paddingBottom="10">
        <mx:columns>
            <mx:DataGridColumn sortable="false" dataField="ID" width="0" visible="false"/>
            <mx:DataGridColumn sortable="true" headerText="Course" dataField="name"   width="90"/>
            <mx:DataGridColumn headerText="Subject" dataField="subject" resizable="false" width="90"/>
            <mx:DataGridColumn visible="false" wordWrap="true" sortable="true" width="250" headerText="description" dataField="description" />
            <mx:DataGridColumn sortable="true" headerText="price" dataField="price" width="90"/>
        </mx:columns>
    </mx:DataGrid>
    <s:BorderContainer id="body" visible="false" x="107" y="92" width="853"   height="505" backgroundColor="#4D50CA"  dropShadowVisible="true" cornerRadius="20" borderWeight="8" borderAlpha="0.43" borderVisible="true">
        <s:Label x="41" y="21" text="Title" width="645" height="70" fontSize="28" fontWeight="bold" fontFamily="Times New Roman" color="#F8F2F2" textDecoration="underline" id="title"/>
        <s:Label x="268" y="111" text="Label" width="464" height="274" fontSize="16" color="#FEFDFD" backgroundColor="#9C99D4" id="desc" paddingLeft="10" paddingRight="10" paddingTop="10" paddingBottom="10" fontWeight="bold"/>
        <s:Button click="body.visible=false;" x="642" y="421" label=" X" width="54" height="45" id="Close" chromeColor="#F21212" focusColor="#F81828" color="#FEF8F8" fontSize="21" fontWeight="bold"/>
        <s:Button x="557" y="422" label="YES" width="58" height="44" fontWeight="bold"   click="button1_clickHandler(event)"/>
        <s:Label x="321" y="421" width="173" height="48" backgroundColor="#778CD2" color="#FCF8F8" fontWeight="bold" id="cred" paddingLeft="20" paddingRight="10" paddingBottom="10" paddingTop="20" fontSize="21"/>
        <s:Label x="321" y="421" visible="false" id="varPass" />
        <mx:LineChart x="10" y="136" id="linechart1" width="235" height="155">
            <mx:series>
                <mx:LineSeries displayName="Series 1" yField=""/>
            </mx:series>
        </mx:LineChart>
        <mx:Legend dataProvider="{linechart1}" x="29" y="71"/>
    </s:BorderContainer>
</s:Application>

What is the url of the swf when uploaded?  If you aren't uploading to
theServer.com, you might be running into security issues.  Security is not
as tight when running from FlexBuilder.

Similar Messages

  • Sess_sh only works against local db

    We have a variety of machines running 8i (linux 8.1.5,nt 8.1.6,solaris 8.1.7). We're attempting to check that EJB functionality is working. On each machine, sess_sh works fine locally i.e. sess_sh -u <user> -p <password> -s sess_iiop://<machine>:2481:<sid>
    But in no case, can sess_sh can connect to another machine. All machines are within the same subnet, no routers or firewalls in the way etc. Any ideas?

    are you saying that a sess_sh on machine #1, (for example, an 8.1.5 machine) can't connect to machine # 2 rdbms (for example, an 8.1.6 or 8.1.7 rdbms) ??
    if yes -- this is expected behavior.
    i've been told the java/iiop libraries are not compatible between rdbms versions so they are not capable of talking to each other.
    try this out :
    set up 2 machines with one rdbms version, let's call them "A" and "B".
    set up 2 other machines with a second rdbms version, let's call them "C" and "D".
    if the four machines are set up properly ...
    1. you should be able to talk with sess_sh between "A" and "B" in either direction.
    2. you should be able to talk with sess_sh between "C" and "D" in either direction ..
    but if i'm correct:
    3. you should NOT be able to talk with sess_sh between "A" and ("C" or "D") in either direction ..
    4. you should NOT be able to talk with sess_sh between "B" and ("C" or "D") in either direction ..
    oracle developers .. please correct me if i'm wrong.
    this is the behavior i've seen on my two pc lan with multiplr rdbms versions on the 2 different platforms.
    null

  • Applet only works from local server

    I developed an applet that has worked perfectly during my testing on my local apache server, but when I put it on my web host the applet won't load and the browsers lock up. I have tried it with a couple of browsers. I am at a serious loss to figure out why it wouldn't work from my web host.
    My class files are in a jar because I have several classes, and the jar works fine from my local server.
    Someone suggested that I do a stack dump. I put some code in the init method to dump the stack, but nothing changed. I have no idea where to find the stack dump from an applet. The browser doesn't have a window to display it (that I know of) and my applet certainly doesn't have a stack dump edit control.
    Does anyone know how I can proceed with this? I am usually very clever about tracking down bugs and problems, but this one has me stumped. I am not posting code here because I have tested all the code on my local server and it all works great, just not from the web host. If posting code would help find a solution, I will be happy to do that.
    Any help would be very much appreciated.

    I am using gFTP to upload it. Below is the status info that I get during the upload. It changes the permission to -rw-r--r--, which is the same as everything else on the server and makes sense to me. After the upload, there is a message about ASCII, but I am assuming it is just switching back to ASCII mode after the upload.
    Loading directory listing /public_html/mydir from cache (LC_TIME=en_US.UTF-8)
    PASV
    227 Entering Passive Mode (209,85,106,12,79,105)
    STOR /public_html/mydir/myjar.jar
    150 Accepted data connection
    226-File successfully transferred
    226 205.601 seconds (measured here), 44.19 Kbytes per second
    Successfully transferred /usr/local/apache2/htdocs/mysite/mydir/myjar.jar at 44.48 KB/s
    SITE CHMOD 644 /public_html/mydir/myjar.jar
    200 Permissions changed on /public_html/mydir/myjar.jar
    SITE UTIME 20071212173109 /public_html/mydir/myjar.jar
    500 UTC Only
    Loading directory listing /public_html/mydir from server (LC_TIME=en_US.UTF-8)
    PASV
    227 Entering Passive Mode (209,85,106,12,79,123)
    LIST -aL
    150 Accepted data connection
    226-ASCII
    226-Options: -a -l
    226 15 matches total
    Edited by: sawatdee on Dec 13, 2007 6:14 AM

  • Lumira Universe Connection only works on Local Server

    Hi guys,
    My SAP Lumira always fails to acquire Universe Connection when I'm using it in my local computer.
    When I use Lumira on the SAP BO Server and try a local connection to the Universes I have no problem at all.
    I've already opened ports from 6400 to 6420. I also made some tests with the firewall disabled, but nothing changed.
    I've included an attachment with the Lumira log message
    Thank you all.

    Hi,
    With reference to Lumira 1.15, the minimal SP we support is BI 4.0 SP6. Please upgrade at least to this. Everything is detailed in the PAM https://websmp107.sap-ag.de/~sapidb/011000358700001095842012E
    Best regards,
    Antoine

  • SOAPException: Local provider only works with URLEndpoints

    Hi,
    I'm writing a JAXM client that uses a messaging provider. Right after the message is sent out by providerConnection.send( ebxmlMessage ), I get an SOAPException:
    javax.xml.soap.SOAPException: Local provider only works with URLEndpoints
    at com.sun.xml.messaging.client.p2p.HttpSOAPConnection.call(HttpSOAPConn
    ection.java:77)
    at com.sun.xml.messaging.provider.ToBeSentProcessor.processMessage(Messa
    gingProvider.java:298)
    at com.sun.xml.messaging.provider.MessageProcessor.run(MessagingProvider
    .java:227)
    [ERROR] MessageProcessor(toBeSent) - -Processing Message Failed <javax.xml.soap.
    SOAPException: Local provider only works with URLEndpoints>
    I used jwsdp ea2 for developing the JAXM client. I'm confused by the exception, because I used ProviderConnection and got an exception for Local Provider (SOAPConnection).
    Any comments?
    Thanks!

    Hello Subaru,
    Now i am also trying to send ebXml messages using JAXM provider connection.I have configured provider connection using provider admin tool.
    But getting an error as follows
    provider(toBeDispatched) - -Processing Message Failed Client http:/localhost:8080/ebXMLServerCom/ebXMLServerCom Not Connected
    My jwsdp version is 1_0_01. I think in 1.2 there is no support for JAXM right?
    Could you please help me?
    Reshma

  • Folder Structure Script Only Works Locally? Any thoughts?

    Hello,
    I am using this script to copy the folder structure so I don't have to manually create new folders and copy/paste the names. This script works great locally. But when I need to use it on our servers. It does not work. Any thoughts?
    on run
              set source_folder to choose folder with prompt "Select folder to be duplicated:" as string
              my do_main_script(source_folder)
    end run
    on open of source_folder_list
              repeat with i from 1 to number of items in the source_folder_list
                        set this_folder_path to item i of the source_folder_list as string
                        if last character of this_folder_path is ":" then
                                  my do_main_script(this_folder_path)
                        end if
              end repeat
    end open
    on do_main_script(source_folder)
              tell application "Finder" to set source_folder to folder (source_folder)
              set the target_folder to (choose folder with prompt "Where would you like the duplicated folders to be moved to?")
              if source_folder is not "" and target_folder is not "" then
                        set new_folder_name to (name of source_folder as string) & " duplicate"
                        set source_folder to source_folder as string
                        set target_folder to target_folder as string
                        my create_new_folder(target_folder, new_folder_name)
                        my duplicate_folder_structure(source_folder, target_folder & new_folder_name & ":")
              end if
    end do_main_script
    on duplicate_folder_structure(source_folder, target_folder)
              tell application "Finder"
                        try
                                  get name of folders of folder (source_folder)
                                  set folder_list to result
                                  repeat with i from 1 to number of items in the folder_list
                                            set this_folder_name to item i of the folder_list as string
                                            my create_new_folder(target_folder, this_folder_name)
                                  end repeat
                        end try
              end tell
    end duplicate_folder_structure
    on create_new_folder(target_folder, new_folder_name)
              tell application "Finder"
                        try
                                  if not (exists item (target_folder & new_folder_name)) then
      make new folder at folder target_folder with properties {name:new_folder_name}
                                  end if
                        end try
              end tell
    end create_new_folder
    Best,
    Anthony

    Hi Frank,
    It copies the root folder but it stops there. The folder structure is very very deep and these jobs are very large. I'm thinking there too large for this script to handle. If I work off an external hard drive or locally it works without a hitch.

  • My Airport Time Capsule only works when I turn off and turn on, but I think this may end up with the unit. What can this happening and how to solve?

    Time Capsule Airport
    Hello to all, good day, sorry my english google, but it is the tool I have at the moment. I'm having trouble with my Time Capsule Airport, I made all the settings according to the manual, but there has been a connection problem with my iMac. When I finish my work I turn off the imac and then again when they return to work and care, it can not connect to Time Capsule Airport, making it impossible to remove the files and make back up by Time Machine only works when I turn off and turn on the Airport Time Capsule , but I think this may end up with the unit. What can this happening and how to solve? Thank you.
    Olá a todos, bom dia, desculpe meu inglês google, mas é a ferramenta que tenho no momento. Estou tendo dificuldades com a minha Airport Time Capsule, fiz todas as configurações de acordo com o manual, mas tem existido um problema de conexão com meu iMac. Quando termino meus trabalhos desligo o imac e depois quando retorno pra trabalhar novamente e ligo, ele não se conecta a Airport Time Capsule, impossibilitando retirar os arquivos e fazer o back-up pelo Time Machine, só funciona quando desligo e ligo a Airport Time Capsule, mas acho que isso pode acabar com o aparelho. O que pode esta acontecendo e como resolver? Obrigado.

    This is easier to do with pictures perhaps.. since we do not share a common language and machine translation leaves a lot to be desired.
    In the airport utility bring up your Time Capsule.
    Simply post the screenshots here.
    So here is mine.
    Click on the Edit button and give us the Internet and Wireless and Network tab..
    eg.
    Please also make sure you are set to ipv6 in your wireless or ethernet .. whichever is used.. and do tell which.
    This is wifi in your computer.
    The following are important..
    DO not use long names with spaces and non-alphanumeric names.
    Use short names, no spaces and pure alphanumeric.
    eg TC name. TCgen5
    Wireless name TCwifi
    Use WPA2 Personal security with 10-20 character pure alphanumeric password.
    read apple instructions to help with TM and TC.. they did finally admit it has issues in Mavericks.
    OS X Mavericks: Time Machine problems
    Mount the TC manually in finder.
    AFP://TCgen5.local
    When asked for the password .. that is the disk access password and save it in the keychain.
    Reset Time Machine
    See A4 here. http://pondini.org/TM/Troubleshooting.html

  • Lync Server 2013 Front End Pool Mediation Service only works on one node

    Hello, I'm currently experiencing an interesting issue with a Lync 2013 Front End Pool implementation on a customer, and I don't know if this is by design or am I missing something.
    We implemented 3 Enterprise Front End Servers in a Pool with a hardware load balancer and we have them configured also as a mediation Pool.
    We have a SIP trunk to an Avaya PBX which was perfectly working before on a Lync 2010 Implementation that we migrated to these new 2013 Front End Pools.
    Now the SIP traffic is only working when configured directly to one node of the pool. If we configure it to any other node the calls fail. We also tried configuring the HLB for port 5060 for the pool and pointed the PBX to that IP but the calls also fail.
    Searching around I read something about that the PBX has to be Lync certified in order to use DNS load balancing to send SIP traffic to the mediation pool, however, I don't think DNS load balancing will work because the other nodes doesn't connect the calls
    from the PBX, only one node appears to be listening for the SIP Trunk.
    I also restarted the mediation service on one  non-working mediation server node and the event viewer on the working mediation server node showed events that it restarted the service, Not the non-working one, it's like only one server from the pool
    is doing as mediation server. 
    So even if I get a Lync Certified PBX/Media Gateway, the mediation service doesn't appear to be load balanced, or how does it work in order to do that?
    Thanks.
    Eduardo Rojas

    Just a few things about what should be happening.  Each front-end server should be listening on the port configured in topology builder for the mediation service. So if that is port 5060, verify that you see that port listening on all front-end servers
    by running a netstat -ano.  From a local workstation, also make sure you can connect to that port via a telnet IPAddress 5060.  As you say, you should be able to send any of the three mediation servers an inbound call.
    Outbound calls will round robin out of the enterprise pool.  So you shouldn't see all of the calls coming out of a single server.
    A few other items I would look into:
    - Make sure your ports are right.  Ensure that you are matching ports on the Avaya and Lync.  It's not a hard requirement but makes life easier to troubleshoot.  So if the Avaya is 5060, just make sure TCP/5060 enabled in your mediation pools
    and that your gateways/trunks are also set to TCP/5060.
    - Look outside the Lync Event Viewer and see if anything strange (.net errors) are being tossed anywhere else during startup of the mediation service.  I once had to remove the mediation server installer (Program and Features | Remove) and rebootstrap
    the server because something went sideways during an install.
    Thanks,
    Richard
    Richard Brynteson, Lync MVP | http://masteringlync.com | http://lyncvalidator.com

  • Notification Plug-in only working in IE (not Firefox or Chrome)

    Just in case anyone else encountered this ...
    I downloaded and installed the Dynamic Action Plug-in, Notification,
    from http://www.oracle.com/technetwork/developer-tools/apex/application-express/apex-plug-ins-182042.html.
    I imported into Shared Objects plug-ins for an application, created a dynamic action using this plug-in,
    and it works great. In IE only (IE 8). When I run the application from Chrome or Firefox (3.6.13),
    the notification does not display.
    When I run the demo notification application in firefox or chrome, the notification works - http://apex.oracle.com/pls/apex/f?p=654321:401:0
    I can not find any information specifically on browsers.
    I use APEX 4.0.1.00.03 in Oracle 11.1.0.7 and develop on Windows 2003 server.
    I do use javascript (calling htmldb_Get) to get a value from the database to display in the Notification,
    so I suspect the problem may be there.
    Any ideas why only IE works would be appreciated. Is there any place in APEX I needed to specify browsers?
    Thanks,
    Wayne

    I stripped out all the local database access and hardecode a value for this problem. When you click the button "Check Employee's Classification", it calls a javascript function in the HTML Header called checkClass. That changes the item displayed in the notification and fires the dynamic action, Employee Class. Works great in IE, but that's it. I suspect it's the javascript that firefox or Chrome doesn't recognize.
    function checkClass(lnum)
    //alert(lnum);
    // force a "change" for dynamic action to fire - set to empty, then change
    $x('P1_CLASS_DESC').style.visibility = 'visible';
    $x('P1_CLASS_DESC').focus();
    $x('P1_CLASS_DESC').value = "";
    $x('P1_CLASS_DESC').blur();
    $x('P1_CLASS_DESC').style.visibility = 'hidden';
    // below won't work on apex.oracle.com - comment out
    // var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=checkClass',0);
    // get.add('P1_LNBR',lnum);
    // gReturn = get.get();
    //alert(gReturn);
    $x('P1_CLASS_DESC').style.visibility = 'visible';
    $x('P1_CLASS_DESC').focus();
    // origin - not for apex.oracle.com $x('P1_CLASS_DESC').value = gReturn;
    $x('P1_CLASS_DESC').value = "Test for why this only works in IE";
    $x('P1_CLASS_DESC').blur();
    $x('P1_CLASS_DESC').style.visibility = 'hidden';
    }

  • Applet works on local Apache, not over the web

    I have tried the following applet (where ShowMultiApplet() writes a standard applet tag - that works on local but again, not on the server):
    index.html
    <html>
    <head>
      <title>Test Applet</title>
         <script src="js/app.js" type="text/javascript"></script>
    </head>
    <body>
      <center>
      <script type="text/javascript">ShowMultiApplet();</script>
      </center>
    </body>
    </html>On my local Apache2.2 with complete success. However, when I upload the same files onto a web server I get:
    java.lang.NoClassDefFoundError at org.jdesktop.layout.GroupLayout$ContainerAutopaddingSpring.calculatePadding(GroupLayout.java:2518)
    I have tried org.jdesktop.layout structure in an external jar (using archive="lib/swing-layout-1.0.jar") and, most recently, in the same jar as the applet. Nothing works! :(
    What processes are different between the local apache and the web server and why does it only affect the layout classes, not my own? Is it a recurring problem with swing-layout?
    Any help is good help! :)
    Message was edited by:
    javaMunkey

    Exception in thread "Thread-3" java.lang.NoClassDefFoundError
         at org.jdesktop.layout.GroupLayout$ContainerAutopaddingSpring.calculatePadding(GroupLayout.java:2518)
         at org.jdesktop.layout.GroupLayout$Group.calculateAutopadding(GroupLayout.java:1257)
         at org.jdesktop.layout.GroupLayout$Group.calculateAutopadding(GroupLayout.java:1259)
         at org.jdesktop.layout.GroupLayout$Group.calculateAutopadding(GroupLayout.java:1259)
         at org.jdesktop.layout.GroupLayout.resetAutopadding(GroupLayout.java:800)
         at org.jdesktop.layout.GroupLayout.layoutContainer(GroupLayout.java:676)
         at java.awt.Container.layout(Unknown Source)
         at java.awt.Container.doLayout(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validate(Unknown Source)
         at sun.plugin.util.GrayBoxPainter.getGrayBoxPanel(Unknown Source)
         at sun.plugin.util.GrayBoxPainter.paintGrayBox(Unknown Source)
         at sun.plugin.util.GrayBoxPainter.repaintGrayBox(Unknown Source)
         at sun.plugin.util.GrayBoxPainter.access$000(Unknown Source)
         at sun.plugin.util.GrayBoxPainter$1.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    java.lang.NoClassDefFoundError
         at org.jdesktop.layout.GroupLayout$ContainerAutopaddingSpring.calculatePadding(GroupLayout.java:2518)
         at org.jdesktop.layout.GroupLayout$Group.calculateAutopadding(GroupLayout.java:1257)
         at org.jdesktop.layout.GroupLayout$Group.calculateAutopadding(GroupLayout.java:1259)
         at org.jdesktop.layout.GroupLayout$Group.calculateAutopadding(GroupLayout.java:1259)
         at org.jdesktop.layout.GroupLayout.resetAutopadding(GroupLayout.java:800)
         at org.jdesktop.layout.GroupLayout.layoutContainer(GroupLayout.java:676)
         at java.awt.Container.layout(Unknown Source)
         at java.awt.Container.doLayout(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validateTree(Unknown Source)
         at java.awt.Container.validate(Unknown Source)
         at sun.plugin.util.GrayBoxPainter.suspendPainting(Unknown Source)
         at sun.plugin.AppletViewer.showAppletStatus(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)

  • Only balance in local currency

    Hi
    our base currency is UDS. One of the GL ( bank account in Germany ) is set up as document currency ( euro ) and " only in local currency " check box  is unchecked ( FS00 , control tab ). Now  when I try to load the plan data into system, all the values goes well except this GL. I used manual entry to load the value (Gp12 ) into this GL (plan ).It did not work.
    Now I tried to change the check box ( FS00 ) but it does not allow as there is balance into that. First I am not clear why this one account was set up like that.Can anybody suggest me how to fix this "only local currency" issue.
    Thanks
    Satya

    Hi Satya,
    Since you have created the g/l account with account currency EUR and which is different from your company code currency (USD) it will only accept the postings in EUR. If an account is set up in company code currency then it will accept postings in all currencies. Usually bank accounts are maintained in currencies other than company code currency and in this case I am not sure why you have created a P&L account in currency other than Company code currency.
    The indicator "Only balances in local currency" controls the display of balances via FS10N transaction and if you have unchecked that indicator then system should supposedly display the balances by transaction currency but in your case since, your account currency is EUR and the g/l account can only accept postings in EUR it doesnt really matter because it will only display balances in EUR since all the postings going to the above account will be only EUR.
    As far as ur problem is concerned; looks like u r loading numbers in currency other than EUR and that is why it is bombing out. You have to zero out the balance in the account first and then have to change the account currency to USD if you want to plan in diff currencies on that account.
    Plz assign points if useful
    Thanks
    Kumar

  • Caching service only works for OS X updates and not for Apps

    Hello,
    It seems that my OS X Server Caching service only works for Apple OS X Software Updates (in Mac App Store updates, when the icon of Mountain Lion appears). I see it in my logs in verbose mode when I download an Apple OS X Software Updates and not when I download an app in Mac Appstore.
    So I'm sure my Caching service works but not for all downloads.
    Why ? What's wrong with my server ?
    I read in some blogs that Caching Server can work for iOS devices appstore too. I try to download some apps with my iphone but nothing happens in logs ...
    Can somebody help me about the Caching Server ?
    Thank you.

    I am with chugues http://www.apple.com/ios/business/
    Caching Server 2 supports iOS 7.
    By caching purchased content and software updates on a local Mac running OS X Mavericks Server, Caching Server 2 speeds up the download and delivery of content through the App Store, Mac App Store, iTunes Store and iBookstore. Your users get faster downloads of content and updates to their iOS devices directly over your corporate network.
    Shows iOS updates and et al. Why is this feature not on yet?

  • Buffer table not up-to-date error while working with local SRM PO

    Hi all,
    We are working in SRM 7.0  with extended classic scenario.
    I faced an issue while working with local SRM PO. Iam getting a dump while doing changes in SRM PO.
    Dump says that "Buffer table not up-to-date". Please find the detail dump error below :
    http://cscgsapndc34.nwk.amer.csc.com:8114/sap/bc/webdynpro/sapsrm/wda_l_fpm_oif/
    UNCAUGHT_EXCEPTION
    Buffer table not up-to-date
    Function: BBP_PD_ABORT of program SAPLBBP_PDH
    Form: ABORT of program SAPLBBP_PDACC
    Form: ACCOUNT_INTERNAL_SAVE of program SAPLBBP_PDACC
    Function: BBP_ACCOUNT_INTERNAL_SAVE of program SAPLBBP_PDACC
    Form: PROCDOC_INTERNAL_SAVE of program SAPLBBP_PD
    Form: STATUS_SET_AND_INTERNAL_SAVE of program SAPLBBP_PD
    Form: PROCDOC_UPDATE of program SAPLBBP_PD
    Function: BBP_PROCDOC_UPDATE of program SAPLBBP_PD
    Method: /SAPSRM/IF_PDO_UPDATE_BUFFER~SUBMIT of program /SAPSRM/CL_PDO_UPDATE_BUFF_PO=CP
    Method: /SAPSRM/IF_PDO_BASE~SUBMIT_UPDATE of program /SAPSRM/CL_PDO_BASE===========CP
    http://cscgsapndc34.nwk.amer.csc.com:8114/sap/bc/webdynpro/sapsrm/wda_l_fpm_oif/
    If anyone of you already came across this type of dump error can you please let me know what might be the possible reasons for the same .  Request your kind help in this regard.
    Thanks in advance.
    Regards,
    Kalyani

    There could be many issues..
    or some data issue.
    can you recreate the same issue you can fix it.
    it could only one incident so you should thoroghly check what piece of data is wrong.
    what actions are you doing in the purchase order.
    Note 1580496 - Purchase order Buffer table not upto date dump in change ver
    Symptom
    1.Create a change version on any Purchase order.
    2. Edit quantity of any item
    3. Dont press 'Enter key'
    4. Clickk on Order button.
    Application gves dump 'Buffer table not upto date'
    but it is very difficult to say what is the issue. request your technical resource to look your dump.
    if you recreate the issue half of the problem resolved.

  • Lion Server DNS service not working for locally created zones. Caching working fine.

    OS Lion Server DNS service not working for local zones. Was fine under Snow leopard server but Lion server upgrade has severely broken my DNS and web sites. Zones look fine under Server Admin but keep getting "query failed (SERVFAIL) for xxxx at /SourceCache/bind9/bind9-42/bind9/bin/named/query.c:3921" in the logs. BTW - Server Admin cant seem to see the log file either.
    Surely someone actually tested that DNS still worked on Lion?

    I upgraded from Snow Leopard Server to Lion Server on day 01.  I hit the same issue where, after the upgrade, my Lion Server stopped serving names for my private local domain.
    I finally took a few minutes to figure out what was wrong.  After turning on debug logging and looking through the logs, I found my particular issue, now resolved.
    The issue I had was, when the domain initially was setup when I installed Snow Leopard Server, for some reason it created a zone just for the server (in my case, something like zone "s-01.mydomain.priv"), and a separate zone for all the other machines (zone "mydomain.priv", containing all the private IPs for my local domain).  I never messed with it because it worked, but generally I would have put all of them in the same zone.
    My zone "mydomain.priv" had a nameserver and mail exchanger entry for my server, s-01.mydomain.priv.  I could see this in the Server Admin app on the DNS bubble, Zones tab, mydomain.priv selected, and the General Info panel.  This was fine in Snow Leopard.  This was failing the zone load in the updated bind for Lion Server, though.  The issue was that the "mydomain.priv" zone was referencing the s-01.mydomain.priv server, which was not defined in the "mydomain.priv" zone but rather in the "s-01.mydomain.priv" zone.
    My fix:
    1. In Server Admin, add the server to the zone "mydomain.priv".  I put an A record (Add Machine) in the "mydomain.priv" zone for my server named s-01.mydomain.priv.
    2. shut down DNS on the OS X Lion Server (hit the Stop DNS button on Server Admin).
    3. edit /etc/named.conf by hand, removing the specialized zones that contianed just the server.  In this case, it would be the section titled 'zone "s-01.mydomain.priv"' and the section titled 'zone "3.10.1.10.in-addr.arpa"'.  Your in-addr.arpa zone name will change based on whatever your server IP address was.  My internal one happened to have s-01.mydomain.priv mapped to 10.1.10.3.
    4. Once the specialized zones for just the server were removed, I started the DNS up again.  Instead of serving four zones as it had in OS X Snow Leopard Server, it now servers two zones.  And, now, it is resolving my local machines for the mydomain.priv zone.
    YMMV.  I did note that it wasn't totally necessary to do step 3, but I never really understood the need for the specialized domain, and keeping it around would have a copy of data that would just confuse things.
    Hope that helps.  That's been the only hiccup I've noticed updating to OS X Lion Server thus far.

  • UploadedFile & https Only work first time upload ????

    I am using 10.1.3.4 Jdev. I use UploadedFile interface to upload files from local PC and ftp files to unix server. My "upload" web page works between my local PC and Unix server, but it only works first time upload file and ftp between
    https server (application server--weblogic 10.0) and Unix server. If I just use http without SSL and my codes work fine you can upload file as many times you want and ftp them to Unix server. I used FTP not sftp to transfer files from application server to unix server. Can anyone shed some lights on my head ???? Thx.

    Yes. I changed my code to SFT from ftp. it works. Thx. This URL for sftp: http://www.jcraft.com/jsch/ and is very good .
    Edited by: albertpi on Feb 11, 2010 8:05 AM
    Edited by: albertpi on Feb 11, 2010 8:05 AM

Maybe you are looking for

  • How do I make a Boot camp icon on my Mac Desktop

    When using the Boot Camp partition (i.e. Win 7) there is an Icon on the task bar that lets me switch to Mac OS.  When using OS X, there is no similar Icon.  I have to go to System preferences, select a disk, choose Boot Camp and click OK twice.  I ho

  • Is there any problem for the board running HTT@1100mhz (k8n neo2)?

    Well, I'm running my system 275x4=1100HTT, can I keep this if it's stable or is it risky? I think I've read somewhere that HTT shouldn't go beyond 1000mhz, could someone elucidate me? Thanks.

  • How to make lines in GridLayout?

    I use GridLayout with 2 columns and many rows. I want to draw a line between the two columns. How can I do this in GridLayout?

  • LOST MY ITUNES HOW DO I PUT THEM BACK?

    I have an ipod and unfortunately I didnt back up my itunes that were on my laptop. My laptop crashed, lost everything off the hard drive. I have since purchased a new desktop. I dont know much about itunes and all but I was wondering how (if possible

  • Help with compiling package

    I'm currently getting this error when compiling my package. Compilation failed,line 6 (10:56:34) PLS-00323: subprogram or cursor 'ADD_PROJECT' is declared in a package specification and must be defined in the package body Here is the specification Cr