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

Similar Messages

  • 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

  • A strange one - setPixels only works against the left of the screen

    setPixels(int x, int y, int w, int h, ColorModel model, int[] pixels, int off, int scansize)My applet's split into different bits. The main game screen (which I'm animating to with pixel[]) starts in the top left hand corner...
    _consumer.setPixels(0,0,ScreenWidth,ScreenHeight,_model,(int[])pixel,0,ScreenWidth);ScreenWidth and ScreenHeight are the dimensions of the main game screen. There's a stats area to the right, but that's just done with Graphics.drawString, etc..
    Anyway, I want the statbox to go on the left, so I need the main screen to get drawn on the right. No problem, right?
    _consumer.setPixels(StatboxWidth,0,ScreenWidth,ScreenHeight,_model,(int[])pixel,0,ScreenWidth);
    java.lang.ArrayIndexOutOfBoundsException
            at java.lang.System.arraycopy(Native Method)
            at sun.awt.image.IntegerInterleavedRaster.setDataElements(IntegerInterleavedRaster.java:359)
            at sun.awt.image.ImageRepresentation.setPixels(ImageRepresentation.java:484)
            at Strib.update_consumer(Strib.java:197)
            at Strib.paint(Strib.java:99)
            at Strib.run(Strib.java:187)
            at java.lang.Thread.run(Thread.java:484)The only way i can increase x at all is by decreasing w by the same amount, giving me a smaller main screen. I've tried changing the offset up or down just in case but that doesn't help. What am I missing?
    Thanks for your help!

    you only call consumer.setPixels() once at the end of the frame.
    all the drawing goes into your pixel[].
    the width in setPixels() is being added to the x. since the width is the max value its overflowing.
    public void run()
       while (running)
          render();
          update(pixels);
          try
             thread.sleep(threadDelay);
          } catch (InterruptedException e)
    public void render()
       java.util.Arrays.fill(pixels, 0x000000); // fill the screen wiht black 
       writePixel(100,100,0xFF0000); // put a red pixle at 100-100
    public synchronized void update(int[] pixels)
       if (consumer != null)
       // copy integer pixel data to image consumer
       consumer.setPixels(0, 0, width, height, model, pixels, 0, width);
       // notify image consumer that the frame is done
       consumer.imageComplete(ImageConsumer.SINGLEFRAMEDONE);
       paint();
    private synchronized void paint()
       // draw the back buffer image onto the screen
       getGraphics().drawImage(image, 0, 0, width, height, null);
    public final void writePixel(int x, int y, int color)
       int i = width * y + x;
       if (i >= 0 && i < size)// size = screen width * height
          pixels[i] = color;
    }

  • 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

  • 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.

  • 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

  • Animated GIF doesn't work against dark backgrounds in HTML

    I've created an animated GIF in Photoshop, exported it for web with transparency, and placed it in my HTML code. It doesn't work against the dark background on my page. However, when I open the image in a new browser tab, voila, the animation works precisely as it should.
    Why is the background affecting the animation and how can I work around this?

    Hello Frank,
    problem is solved.
    I have installed IE7 on a Windows 2003 Server Edition and used remote desktop client to test the application.
    It seems that either a setting on W2003 or the remote desktop client avoid to see the animation.
    On locally installed IE7 animated gif's works fine.
    regards
    Peter

  • 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

  • Open item mgt and only balances in local currency

    Hi ,
    What is open item management and only banlances in local currency ?
    for which gl accounts v select open item management and only balances in local currency
    Pls explain urgent
    Regards
    umesh

    1. Only Balances in Local Currency:
    Indicates that balances are updated only in local currency when users post items to this account.
    Use: You would set this indicator for accounts in which you do not want the system to update transaction figures separately by currency.
    It is required to set theis indicator in:
    1.  cash discount clearing accounts
    2. GR/IR clearing accounts.
    It cannot be set in reconciliation accounts for customers or vendors. Setting it in all other instances is optional.
    Open item management:
    Determines that open items are managed for this account.
    Explanation: Items posted to accounts managed on an open item basis are marked as open or cleared. The balance of these accounts is always equal to the balance of the open items.
    Procedure: Set up accounts with open item management if offsetting entries are to be assigned to the postings made to these accounts. Postings to these accounts represent incomplete transactions.
    USE:
    A goods receipt/invoice receipt (GR/IR) clearing account should be managed on an open item basis so that you can check at any time whether invoices have been received for the goods received for an order.
    Set up accounts without open item management if no offsetting entry is to be made against a posting to this account.
    Accounts that are managed on an open item basis include:
    Clearing accounts:
    Bank clearing account
    Payroll clearing account
    Cash discount clearing account
    GR/IR clearing account
    Accounts that are not managed on an open item basis:
    Bank accounts
    Tax accounts
    Raw material accounts
    Reconciliation accounts
    Hope this is helpful. Pleas assign points if it is.
    Julia

  • 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?

Maybe you are looking for