Java 5 is VERY slow on Linux Fedora core3

Why Java is 10-15 times slower on Fedora Linux, in comparising to Windows XP?
I have two identical PC (dual Pentuim3 1Gh, 1.5Gig memory).
Java version - JDK 1.5.0_03
For testing, I run simple java program:
/// Start LoadTest.Java
import java.util.*;
public class LoadTest {
public static void main(String[] args)
Date startDate = new Date();
int repeat = 1000;
HashMap map = new HashMap();
for(int i=0; i<repeat; i++) {
//System.out.println(i);
ArrayList list = new ArrayList();
long lval = (new Date()).getTime() / startDate.getTime() + ((new Date()).getTime() * startDate.getTime()) - startDate.getTime();
String sval = Long.toString(lval);
Long LValue = Long.valueOf( sval ).longValue();
map.put(LValue, sval);
String keyset = map.keySet().toString();
list.add(0,keyset);
list.addAll(map.values());
for (Iterator iter = map.keySet().iterator(); iter.hasNext(); ) {
Long lv = (Long) iter.next();
String sv = (String) map.get(lv);
list.add(sv);
keyset = map.keySet().toString();
list.add(0,keyset);
Date endDate = new Date();
String message = " LoadTest: " + repeat + " repetitions. Total Time: " + (endDate.getTime() - startDate.getTime());
System.out.println(message);
/// End LoadTest.Java
It takes 300ms to run it on Windows and 3900ms - on Linux
Can somebody help me?
Shall I consider to use Windows on the web-server?
Thanks.

I know, it's just dirty, ugly test, but WHY WinXP handles it better?
Actually, I did this best after I get som test results for my application.
I't uses JBoss4.1/Tomcat5 on JDK 1.5_03. I used JMeter to test it and get some strange results - to test throughput rate on plain JSP pages, like login page (without any EJB) , Linux performs 10 times slower (for 100 requests, 24/min on Linux and 240/min on Windows). To test EJB, which retrieving datasets from database, the difference is about 3 times. Linux - FedoraCore 3 (2.6.11)
That's why I started testing Java itself. BTW, if make this test a little "pretty" - no memory allocations in loop, less using arraylists and maps, the performance difference about 3 times or even less, if to put Thread.sleep(1) in the loop.
Now, I have to figure out, which paltform to use for our web-application, but I'm confused.
BTW, which app.server did you use? May be JBoss is not the best solution? The application should handle about 200 users, most of them almost simultaneously.
Thanks

Similar Messages

  • JMF RTP and Linux/Fedora Core3

    Hello,
    I am attempting to use JMF 2.1.1e with Linux/Fedora Core3, and see an exception as:
    java.io.IOException: Can't open local data port: 51450
    at com.sun.media.datasink.rtp.Handler.open(Handler.java:141)
    Debugging more, I can see the Handler.open fails when it is trying to
    rtpmanager.initialize(localaddr);
    where localaddr is "SessionAddress()" (no args to the constructor).
    I am unable to debug beyond this. Any help?
    Best regards,
    -Arun.

    More debugging, but still at a block:
    It seems: com.sun.media.rtp.RTPSessionMgr is instantiated as the rtpmanager.
    There is no source for this and so cannot figure out why this fails.
    Best regards,
    -Arun.

  • Java prog is very slow

    hai
    i am beginner level in java prog
    i insert data in ms sql server 2000. i am insert 5000 record in database . but i am application take long time .pls give advise for me
    very quick
    import java.sql.*;
    public class SqlDatabase
              public Connection connection;
              public boolean openConnection(String strServerIPAddress, String strDatabaseName, String strUserName, String strPassword)
                   String url = "jdbc:microsoft:sqlserver://" + strServerIPAddress + ":1433" +";DatabaseName=" + strDatabaseName;
                             try
                             //Loading the driver...
                             DriverManager.registerDriver(new com.microsoft.jdbc.sqlserver.SQLServerDriver());
                             //Buiding a Connection
                             connection = DriverManager.getConnection(url, strUserName, strPassword);
                             if(connection== null )
                             return false;
                             //catch( java.sql.SQLException e )
                             catch (SQLException e)
                             System.out.println(e.getMessage());
                             return false;
                             return true;
              public void SqlDataInsert(String Random_num,String Check_Sum)throws Exception {
                   //DriverManager.registerDriver(new com.microsoft.jdbc.sqlserver.SQLServerDriver());
                   //Connection connection = DriverManager.getConnection( "jdbc:microsoft:sqlserver://202.146.65.221:1433;DatabaseName=MMS_Gateway","Tech","tech32132");
                        if (connection != null)
                             try {
                                  Statement stmt = connection.createStatement(ResultSet.TYPE_SCROLL_SENSITIVE, ResultSet.CONCUR_UPDATABLE);
                                       ResultSet resultSet = stmt.executeQuery("select * from Random_CheckSum where 1=2");
                                       resultSet.moveToInsertRow();
                                       resultSet.updateString("Random_Number",Random_num);
                                       resultSet.updateString("Check_Sum",Check_Sum);
                                       resultSet.insertRow();
                                       System.out.println("Data Sroted in Database");
                                  } catch (SQLException e) {
                                       System.out.println(e.getMessage());
    }

    now my java prog is very fast . now take 15 sec to 20 sec for insert 5000 records
    now i have change my code is
    import java.sql.*;
    public class SqlDatabase
              public Connection connection;
              public boolean openConnection(String strServerIPAddress, String strDatabaseName, String strUserName, String strPassword)
                   String url = "jdbc:microsoft:sqlserver://" + strServerIPAddress + ":1433" +";DatabaseName=" + strDatabaseName;
                             try
                             //Loading the driver...
                             DriverManager.registerDriver(new com.microsoft.jdbc.sqlserver.SQLServerDriver());
                             //Buiding a Connection
                             connection = DriverManager.getConnection(url, strUserName, strPassword);
                             if(connection== null )
                             return false;
                             //catch( java.sql.SQLException e )
                             catch (SQLException e)
                             System.out.println(e.getMessage());
                             return false;
                             return true;
              public void SqlDataInsert(String Random_num,String Check_Sum)
                   if (connection != null)
                              try {
                                   String Sql="INSERT INTO Random_CheckSum (Random_Number, Check_Sum) VALUES(?, ?)";
                                        PreparedStatement pstmt =connection.prepareStatement(Sql);
                                        pstmt.setString(1, Random_num);
                                        pstmt.setString(2, Check_Sum);
                                          pstmt.executeUpdate();
                                       System.out.println("Data Sroted in Database");
                                  } catch (SQLException e) {
                                        System.out.println(e.getMessage());
    } Thank for all

  • Signed java applet is very slow with 1.4.2_06

    We have an application which has a signed jar applets was working fine with Java Plug-in (JPI) version 1.4.1_02.
    Due to customer requirement they want to run the same applet with JPI version 1.4.2_06, After JPI upgrade the applet is running slow.
    I am not sure what sun has changed the security settings in 1.4.2_06. So, Can some one give there thoughts on why would it run slow because of JPI changes.
    Thanks in advance.
    Aj

    Hi,
    It is nothing to do with Signed applet.
    If URL Connection 's setDefaultCacheUses is set to false then this is causing to run the Applet slow. As it require to download complete jar(if any) everytime.
    From 1.4.1_02 (CachedJarURLConnection.class in jaws.jar):
    public void connect()
    throws IOException
    if(!connected)
    jarFile = JarCache.get(jarFileURL);
    if(jarFile != null)
    {�.
    From 1.4.2_06 (CachedJarURLConnection.class in plugin.jar):
    public void connect()
    throws IOException
    if(!connected)
    if(getUseCaches())
    jarFile = JarCache.get(jarFileURL);
    if(jarFile != null)
    {�                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Java virtual machine very slow: why?

    Since I have upgraded Tiger to Leopard, the startup of the Java virtual machine is unbelievably slow: for example, just executing java -version for the first time requires almost one minute. This happens only the first time the JVM is started: after that, everything seems to work properly. Any idea of what is the problem? Thank you.

    I don't have this problem at all.
    Which version of Unix are you using? And which version of Java are you using on the Unix computer? How old is your Computer?

  • Official release of data modeler is very slow on Linux (64bit)

    I was testing the beta version on Linux (64bit) and it was fast (reverse engineering from database for example), but I found out the official release of the data modeler is slower compared to the Beta version. The same JDK version, the same Linux 64bit distro. Is there a memory leak with the official release ? Has any one else observed such sluggish performance with the official release of the data modeler ?
    thanx

    By itself the buffer hit cache ratio is a meaningless statistic. It can in fact be a misleading indicator since it does not actually reflect application performance.
    Tune the query. Make sure it is running as well as it can.
    Then look at overall machine resources: average and peak cpu, memory, and IO loads.
    If spare resources exist then considering more resources to the more important databases on the system.
    Document any performance changes that occur after each change. It is possible for the database performance problem being latching, that is, shared pool access and you might need space in the shared pool more than the buffers. It depends on the application and user load.
    Why are you using a 2K database block size? I would think 4k or 8k would probably be better even for a true OLTP with almost all access by index.
    To get help on the query you will need to post it, the explain plan, and information on available indexes, table row counts, and perhaps column statistics for the indexed columns and filter conditions.
    HTH -- Mark D Powell --

  • Java Web Service very slow from Flex when not local

    I have a jaxws web service that I am using as the interface layer to a database that I call from a Flex application. All was working well when I was referencing the service from localhost, but as soon as I deployed a version to test against (running on AWS EBS) the service calls dropped to several minutes.
    To remove all external factors I could think of, I created a test service, which simply returns a list of 5 strings, therefore there is no DB connection issue and there are no complex objects to be interpreted. I still get exactly the same behaviour, the call is fast when running locally, but an absolute dog deployed.
    If I use a web browser to retrieve the wsdl / xsd locally or remotely, they return immediately. If I use soapUI to execute the call both local and remote instances return in less than 500ms.
    Using the Network Monitor, the wsdl takes a few hundred milliseconds to be retrieved, the xsd reference however, takes one minute and sometime fails altogether, ditto with the final call for data retrieval. There is no activity on the server at this time.
    The Request/Response times in Network monitor indicate that when the calls are made they are taking no more than 1 second to return, but there is exactly one minute between the wsdl retrieval and xsd call, similarly there is exatly one minute between xsd retrieval and data retrieval.
    Any ideas?

    Hi, I'm not sure I can post my application due to company privacy issues... I'll look into that.
    Note that if I execute the function from the test view of the data service (a logical data service) it responds in a reasonable amount of time - it's only when I call the same method through a web service that was generated from the data service taht I have a problem.. it consistently takes around 30 seconds +- 3 seconds. 
    Your last question... uhh yes... the web service/data service returns a summary of a person which does include address and contact info.
    Let me see about attaching the application - I'm thinking the answer will be no, however... is it possible for you to help without having the code? Hopefully the above information helped.

  • Ps -p running very slow (1-2 seconds) on Java process

    Hi Solaris gurus:
    I encountered a issue that running ps -p on java process running very slow, it took almost 2 seconds to complete.
    I issued a truss on the "ps -p " command, the following is part of the output:
    /1: 0.0001 fstat(1, 0xFFFFFFFF7FFFE1F0) = 0
    /1: 0.0000 write(1, " U I D P".., 55) = 55
    /1: 0.0002 open("/proc/19299/psinfo", O_RDONLY) = 3
    */1: 1.3170 read(3, "02\0\0\0\0\0\011\0\0 K c".., 416) = 416*
    /1: 1.2401 close(3) = 0
    /1: 0.0002 stat("/dev/tty", 0xFFFFFFFF7FFFE830) = 0
    It seems that the read() spent the most time.
    Anyone can help?

    Not enough memory, page-outs is too large
    8.91 GB    Page-outs
    After removing adware, and do a safe boot of Safari and remove extensions, then reset cache history etc. You need to do a boot into Recovery Mode and run Disk Repair from there. Also boot the system in Safe Mode.
    On startup it sounds like you have a problem with the directory which would also account for long startups and checking the directory. Along with or instead of DU Repair Disk you can use Single User Mode and fsck -fy to try to fix the directory but in some cases that may not be enough.
    Backups from before you got this adware and problems helps and should always be ready and able to restore a system from known good backups or system restore image.
    4GB of RAM may have been fine originally but "Early 2011" is now 5 years and 4 OS version changes. You can upgrade the memory and while at it consider a nice SSD internal drive which will help as well. Take a look and see what prices and options there are from http://www.macsales.com for your 2011 MacBook Pro.
    http://www.everymac.com
    Community for MBP MacBook Pro

  • New Google maps street view is very slow in FF 31.2.0 on Linux (RHEL 6.3)

    The new google streetview (which does not use Flash) is unusable and renders very slow starting with pixelated images that progressively build. The slowness is not present in FF30.0 on Windows.
    It seems to be an issue in Linux Mint as well: http://forums.linuxmint.com/viewtopic.php?f=47&t=180542
    It seems to be quite common on the google map forums: https://productforums.google.com/forum/#!topic/maps/rWUCllpDDSE
    There seems to be bug open already: https://bugzilla.mozilla.org/show_bug.cgi?id=697443
    But why does FF30.0 on windows work O.K but not FF31.2.0 on Linux?
    * ICA Plugin (Linux) Version 12.1.8.250715 (/opt/Citrix/ICAClient/wfica)
    * Shockwave Flash 11.2 r202
    * The IcedTea-Web Plugin executes Java applets.
    * The Totem 2.28.6 plugin handles video and audio streams.
    * DivX Web Player version 1.4.0.233
    * nspluginwrapper is a cross-platform NPAPI plugin viewer, in particular for linux/i386 plugins.This beta software is available under the terms of the GNU General Public License.
    * This plug-in detects the presence of iTunes when opening iTunes Store URLs in a web page with Firefox.
    * Add Block Plus
    * Firebug

    fixed with this method:
    http://bbs.archlinux.org/viewtopic.php?pid=319710

  • Java 2D very slow with Windows XP

    Hi all!
    I'm writing an isometric game engine using Java 2D API, in full-screen exclusive mode and using all the advantages of the new VolatileImage class. The engine is almost finished, I'm testing it putting some animated players on screen and showing the frame rate of the engine. Everything went right, frame rate was very high in Linux and Windows 98/Me. But when I try to run the engine on Windows XP I can only get 5 or 6 fps!!!! And I don't know why!! It seems that XP makes Java run very slow... at least when using Java2D...
    Please, anyone knows why the performance is reduced??? Is there a new JRE release for Windows XP?? I'm using JDK 1.4.1.
    Thanks for your help.

    If you're using the Fullscreen API, then you're using BufferStrategy, thus you shouldn't use VolatileImages, it does this for you in the background. You shouldn't create any buffers, simply use the one provided. I'm assuming your problem probably lies in transparency. I've made an isometric engine using the fullscreen API that has run with complete 60fps page flipping. I would assume your bottle-neck lies in:
    Transparencys (These are very slow, there is a way to make a bitmask, much like you'd do in DirectX)
    Dynamic Memory allocation/Alpha rendering in your animation loop. (You need to allocate ALL of the colors you're going to use, and avoid using an alpha component if you want to avoid the VM getting bogged down by the garbage collector because you're allocating 30 Color objects a second).
    I made a Color object that was some what hacked together that has methods to allow you to access it's values for doing this kind of thing, allocating your scheme before hand is an easier approach.
    The method that performs the page flipping is a BLOCKING method, so you should orient your drawing before it, and not assume it's simply placing a request, like repaint does.
    -Jason Thomas.

  • PI 7.1 ESR and Java Webstart very slow

    Hi,
    I have been using the PI ESR and IB on the snow leapord OS with Mozilla and Safari browsers. The java webstart seems to be very slow  and working on the ESR objects is sometimes a pain as it takes long time to save , activate or change and sometimes I end up java heap space issues although we are running at a 2 gig heap size. Is it only me or is anyone else facing the same issue?
    Is it time to go back to good old windows XP? or can this be fixed in Mac ...I love my Mac for other reasons though...:)
    Teresa

    Hi,
    >>>serverXXXPI71
    add this server info with related IP address into your hosts file
    and it will work
    Regards,
    Michal Krawczyk

  • Java is very slow on terminal servers

    Hi, we have several terminal servers for clients. But running Java (JRE) on a bank website, is very slow to load the Java plugin. So the whole login takes around 1-2mins to complete.
    We run Windows Server 2008 R2 which is virtualized with VMWare, we run the latest Java client v7 Update 17. Java has always been slow on these servers, is there a way to teak it somewho, so it loads faster?

    WoOber wrote:
    Its me who have setup the whole server, but users experience really that Java starts really slow when they try to login on their bank on the web.And how is that login done? In an applet? Because then the performance issue is on their own computer in their own private installations of browsers and Java runtimes, not your terminal. Applets tend to load 'slowly', especially on older versions of Java. The feeling of slowness tends to be because people compare the loading time to Flash, a completely different beast.

  • WebAnalysis/WebAdminServicesConsole very slow (because of java applet)

    Hello,
    Context: Hyperion System 9.3.1
    server1, Windows -> installed Administration Services e BI+ (Workspace, Web Analysis ecc)
    server2, AIX -> installed Essbase
    The client has externalized the software/hardware so we have:
    network A =client's network
    network B = Internet Service provider network
    network C =network of the society to which client has externalized the hardware
    The communication path is: network A -> network B -> network C
    server1 and server2 are on network C.
    From the client's computers in network A, Web Analysis Studio and Web Administration Services Console (both using java applets)
    have very very slow response times. To give you an idea, an blank report in Web Analysis needs 10min to open. With Web Admin Console I can't do anything: in an empty outline, I added 2 dimensions with 1 member each, when I tried 'Save outline' after 20mins of waiting a response the system also freezed.
    When I work in remote control directly on server1, Web Analysis studio and Web Admin Console are very very fast.
    This happens only with these two components, the other web components not using java applet (Workspace ecc) don't have this problem.
    That made me think there is a network issue. But ping and tracert to both servers (1,2) from the client machines gave me positive results.
    I don't know what else to test/try.
    Any help will be appreciated!
    Thank you!
    Daniela

    Ciao,
    It seems Web Analysis works well only with jre 1.5.0 update 11. I had java 1.6.0 update 4. I had disintalled java 1.6.0_4, installed 1.5.0_11 and now web analysis applet won't even load.
    The java console makes me see the following messages (I replaced by hand the real server name with the server_name):
    Java Plug-in 1.5.0_11
    Uso della versione JRE 1.5.0_11 Java HotSpot(TM) Client VM
    Directory principale utente = C:\Documents and Settings\Administrator
    c: cancella finestra console
    f: finalizza oggetti nella coda di finalizzazione
    g: recupera spazio
    h: visualizza questo messaggio di aiuto
    l: esegui dump dell'elenco classloader
    m: stampa utilizzo memoria
    o: attiva registrazione eventi
    p: ricarica configurazione proxy
    q: nascondi console
    r: ricarica configurazione criteri
    s: esegui dump delle proprietà del sistema e dell'installazione
    t: esegui dump dell'elenco thread
    v: esegui dump dello stack del thread
    x: cancella cache classloader
    0-5: imposta livello di traccia su <n>
    [WARN] HYABaseClient - -Analyzer Client Version=9.3.1.0.0.248
    [WARN] HYABaseClient - -ServerURL=http://server_name/WebAnalysis/processor
    [INFO] ProxyHttpClientHelper - -[PROXY_INIT] - Detect proxy settings using JavaPlugin Proxy Service...
    [INFO] ProxyHttpClientHelper - -[PROXY_INIT] - Proxy settings missed or bypassed. Go to sever directly
    [INFO] ProxyHttpClientHelper - -[PROXY_INIT] - Proxy settings are detected successfully.
    java.net.UnknownHostException: server_name
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(Unknown Source)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(Unknown Source)
         at org.apache.commons.httpclient.HttpConnection.open(Unknown Source)
         at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(Unknown Source)
         at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(Unknown Source)
         at org.apache.commons.httpclient.HttpClient.executeMethod(Unknown Source)
         at org.apache.commons.httpclient.HttpClient.executeMethod(Unknown Source)
         at com.hyperion.atf.services.distributed.http.HttpRequestProcessor.checkProxySettings(HttpRequestProcessor.java:269)
         at com.hyperion.atf.services.distributed.http.HttpRequestProcessor.checkProxySettings(HttpRequestProcessor.java:234)
         at com.hyperion.analyzer.usersession_base.HYABaseClient.obtainProxySettings(Unknown Source)
         at com.hyperion.analyzer.usersession_base.HYABaseClient.initATF(Unknown Source)
         at com.hyperion.analyzer.usersession_base.HYABaseClient.init(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    [WARN] HYABaseClient - -Using Config: config_client.xml
    [INFO] SessionScopeBindingToJVM - -Releasing services for session: Unbound/Undefined SessionId
    [ERROR] ServiceManager - -Creating dummy lock.
    [INFO] SessionScopeBindingToJVM - -Creating token for session: INITIALIZATION
    [INFO] HttpRequestProcessor - -ServerURL=http://server_name/WebAnalysis/processor
    [INFO] HttpRequestProcessor - -Connect to server DIRECTLY
    [INFO] EventHandlerAsynchronous - -Created 3 worker threads.
    [ERROR] NamingServiceProxy - -Could not retrieve root entry. <org.apache.commons.lang.exception.NestableRuntimeException: org.apache.commons.lang.exception.NestableException: An error occurred during network communications.>org.apache.commons.lang.exception.NestableRuntimeException: org.apache.commons.lang.exception.NestableException: An error occurred during network communications.
         at com.hyperion.atf.services.distributed.clientproxies.NamingServiceProxy.getRootEntry(NamingServiceProxy.java:1008)
         at com.hyperion.atf.internal.services.naming.NamingServiceProxy.getRootEntry(NamingServiceProxy.java:119)
         at com.hyperion.atf.internal.services.naming.NamingServiceProxy.initialize(NamingServiceProxy.java:102)
         at com.hyperion.atf.internal.services.containers.UserSessionContainer.initialize(UserSessionContainer.java:119)
         at com.hyperion.atf.services.ServiceManager.setServiceContainer(ServiceManager.java:526)
         at com.hyperion.atf.services.ServiceManager.getService(ServiceManager.java:271)
         at com.hyperion.atf.services.ServiceManager.setServiceContainer(ServiceManager.java:503)
         at com.hyperion.atf.services.ServiceManager.initServiceContainer(ServiceManager.java:463)
         at com.hyperion.atf.services.ServiceManager.initialize(ServiceManager.java:661)
         at com.hyperion.atf.services.ServiceRegistry.initialize(ServiceRegistry.java:126)
         at com.hyperion.analyzer.usersession_base.HYABaseClient.initATF(Unknown Source)
         at com.hyperion.analyzer.usersession_base.HYABaseClient.init(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: org.apache.commons.lang.exception.NestableException: An error occurred during network communications.
         at com.hyperion.atf.services.distributed.http.HttpRequestProcessor.internalProcess(HttpRequestProcessor.java:480)
         at com.hyperion.atf.services.distributed.DistributedRequestProcessorClient.process(DistributedRequestProcessorClient.java:115)
         at com.hyperion.atf.services.distributed.clientproxies.NamingServiceProxy.getRootEntry(NamingServiceProxy.java:999)
         ... 13 more
    Caused by: java.net.UnknownHostException: server_name
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(Unknown Source)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(Unknown Source)
         at org.apache.commons.httpclient.HttpConnection.open(Unknown Source)
         at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(Unknown Source)
         at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(Unknown Source)
         at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(Unknown Source)
         at org.apache.commons.httpclient.HttpClient.executeMethod(Unknown Source)
         at org.apache.commons.httpclient.HttpClient.executeMethod(Unknown Source)
         at com.hyperion.atf.services.distributed.http.HttpRequestProcessor.internalProcess(HttpRequestProcessor.java:466)
         ... 15 more
    [ERROR] UserSessionContainer - -java.lang.IllegalStateException: Root entry is null
    [ERROR] UserSessionContainer - -Could not destroy container instance properly "com.hyperion.atf.internal.services.naming.NamingServiceProxy". <java.lang.NullPointerException>java.lang.NullPointerException
         at com.hyperion.atf.internal.services.containers.UserSessionContainer.destroy(UserSessionContainer.java:336)
         at com.hyperion.atf.internal.services.containers.UserSessionContainer.initialize(UserSessionContainer.java:127)
         at com.hyperion.atf.services.ServiceManager.setServiceContainer(ServiceManager.java:526)
         at com.hyperion.atf.services.ServiceManager.getService(ServiceManager.java:271)
         at com.hyperion.atf.services.ServiceManager.setServiceContainer(ServiceManager.java:503)
         at com.hyperion.atf.services.ServiceManager.initServiceContainer(ServiceManager.java:463)
         at com.hyperion.atf.services.ServiceManager.initialize(ServiceManager.java:661)
         at com.hyperion.atf.services.ServiceRegistry.initialize(ServiceRegistry.java:126)
         at com.hyperion.analyzer.usersession_base.HYABaseClient.initATF(Unknown Source)
         at com.hyperion.analyzer.usersession_base.HYABaseClient.init(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    [ERROR] ServiceManager - --------------------------
    [ERROR] ServiceManager - -Service "naming" was not initialized. Removed from registry.
    [ERROR] ServiceManager - -java.lang.IllegalStateException: Could not initalize container for: ServiceRegistration (name=naming, scope=user_session, priority=99, class=com.hyperion.atf.internal.services.naming.NamingServiceProxy, cronned=null)
    [ERROR] ServiceManager - --------------------------
    [INFO] SessionScopeBindingToJVM - -Releasing services for session: INITIALIZATION
    [WARN] SecurityContextManagerProxy - -Could not verify login...will try again. <org.apache.commons.lang.exception.NestableRuntimeException: org.apache.commons.lang.exception.NestableException: An error occurred during network communications.>org.apache.commons.lang.exception.NestableRuntimeException: org.apache.commons.lang.exception.NestableException: An error occurred during network communications.
         at com.hyperion.atf.services.distributed.clientproxies.SecurityContextManagerProxy.hasValidSecurityContext(SecurityContextManagerProxy.java:286)
         at com.hyperion.atf.security.authentication.SecurityContextManagerProxy.refresh(SecurityContextManagerProxy.java:73)
         at com.hyperion.atf.security.authentication.SecurityContextManagerProxy.hasValidSecurityContext(SecurityContextManagerProxy.java:162)
         at com.hyperion.atf.security.authentication.SecurityContextManagerProxy.getUser(SecurityContextManagerProxy.java:149)
         at com.hyperion.atf.security.authentication.SecurityContextManagerProxy.toString(SecurityContextManagerProxy.java:195)
         at java.lang.String.valueOf(Unknown Source)
         at java.lang.StringBuffer.append(Unknown Source)
         at com.hyperion.atf.internal.services.containers.UserSessionContainer.internalRelease(UserSessionContainer.java:259)
         at com.hyperion.atf.internal.services.containers.UserSessionContainer.release(UserSessionContainer.java:219)
         at com.hyperion.atf.internal.services.containers.UserSessionContainer.release(UserSessionContainer.java:229)
         at com.hyperion.atf.services.ServiceManager.releaseServices(ServiceManager.java:354)
         at com.hyperion.atf.services.SessionScopeBindingToJVM.destroy(SessionScopeBindingToJVM.java:34)
         at com.hyperion.atf.services.ServiceManager.initialize(ServiceManager.java:682)
         at com.hyperion.atf.services.ServiceRegistry.initialize(ServiceRegistry.java:126)
         at com.hyperion.analyzer.usersession_base.HYABaseClient.initATF(Unknown Source)
         at com.hyperion.analyzer.usersession_base.HYABaseClient.init(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: org.apache.commons.lang.exception.NestableException: An error occurred during network communications.
         at com.hyperion.atf.services.distributed.http.HttpRequestProcessor.internalProcess(HttpRequestProcessor.java:480)
         at com.hyperion.atf.services.distributed.DistributedRequestProcessorClient.process(DistributedRequestProcessorClient.java:115)
         at com.hyperion.atf.services.distributed.clientproxies.SecurityContextManagerProxy.hasValidSecurityContext(SecurityContextManagerProxy.java:277)
         ... 17 more
    Caused by: java.net.UnknownHostException: server_name
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(Unknown Source)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(Unknown Source)
         at org.apache.commons.httpclient.HttpConnection.open(Unknown Source)
         at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(Unknown Source)
         at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(Unknown Source)
         at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(Unknown Source)
         at org.apache.commons.httpclient.HttpClient.executeMethod(Unknown Source)
         at org.apache.commons.httpclient.HttpClient.executeMethod(Unknown Source)
         at com.hyperion.atf.services.distributed.http.HttpRequestProcessor.internalProcess(HttpRequestProcessor.java:466)
         ... 19 more
    [ERROR] HYABaseClient - -Error while initializing ATF <com.hyperion.atf.services.InitializationException: Could not initialize service manager: 1224512931093>com.hyperion.atf.services.InitializationException: Could not initialize service manager: 1224512931093
         at com.hyperion.atf.services.ServiceManager.initialize(ServiceManager.java:678)
         at com.hyperion.atf.services.ServiceRegistry.initialize(ServiceRegistry.java:126)
         at com.hyperion.analyzer.usersession_base.HYABaseClient.initATF(Unknown Source)
         at com.hyperion.analyzer.usersession_base.HYABaseClient.init(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: com.hyperion.atf.services.ServiceManager$ServiceRecursiveInitException: Could not start critical service: "appinit.tasks", all services are being rolled back.
         at com.hyperion.atf.services.ServiceManager.setServiceContainer(ServiceManager.java:546)
         at com.hyperion.atf.services.ServiceManager.initServiceContainer(ServiceManager.java:463)
         at com.hyperion.atf.services.ServiceManager.initialize(ServiceManager.java:661)
         ... 5 more
    org.apache.commons.lang.exception.NestableRuntimeException: org.apache.commons.lang.exception.NestableException: An error occurred during network communications.
         at com.hyperion.analyzer.atf.service.clientproxies.HYALicensingServiceProxy.isFeatureEnabled(Unknown Source)
         at com.hyperion.analyzer.usersession_base.AnalyzerClient.initShowHideParams(Unknown Source)
         at com.hyperion.analyzer.usersession_base.AnalyzerClient.createGUI(Unknown Source)
         at com.hyperion.analyzer.usersession_base.HYABaseClient.init(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: org.apache.commons.lang.exception.NestableException: An error occurred during network communications.
         at com.hyperion.atf.services.distributed.http.HttpRequestProcessor.internalProcess(HttpRequestProcessor.java:480)
         at com.hyperion.atf.services.distributed.DistributedRequestProcessorClient.process(DistributedRequestProcessorClient.java:115)
         ... 6 more
    Caused by: java.net.UnknownHostException: server_name
         at java.net.PlainSocketImpl.connect(Unknown Source)
         at java.net.SocksSocketImpl.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.connect(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at java.net.Socket.<init>(Unknown Source)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(Unknown Source)
         at org.apache.commons.httpclient.protocol.DefaultProtocolSocketFactory.createSocket(Unknown Source)
         at org.apache.commons.httpclient.HttpConnection.open(Unknown Source)
         at org.apache.commons.httpclient.MultiThreadedHttpConnectionManager$HttpConnectionAdapter.open(Unknown Source)
         at org.apache.commons.httpclient.HttpMethodDirector.executeWithRetry(Unknown Source)
         at org.apache.commons.httpclient.HttpMethodDirector.executeMethod(Unknown Source)
         at org.apache.commons.httpclient.HttpClient.executeMethod(Unknown Source)
         at org.apache.commons.httpclient.HttpClient.executeMethod(Unknown Source)
         at com.hyperion.atf.services.distributed.http.HttpRequestProcessor.internalProcess(HttpRequestProcessor.java:466)
         ... 7 more
    Any help will be appreciated!

  • Database is very slow in oracle 9i with Suse Linux

    Hello All,
    We are using Suse linux and installed Oracle 9i on it. Our ERP product is running on this database. It is very slow. But linux configuration seems Ok. Oracle's performance is very slow. But The same thing is working fast in oracle 8.1.6 and 8.1.7. Is there any special linux configuration parameters should we consider for this or we have to do something in init.ora file?. I added the size of the JAVA_POOL_SIZE, SHARED_POOL_SIZE and LARGE_POOL_SIZE to 300 MB each.
    Thanks in advance and expecting your reply.
    with regards,
    sivababu

    Which version of SuSE Linux would possibly help here. I'm using version 7.3 Pro and it is only 10 minutes slower than my installation on XP Pro (the script is 16 pages long and takes 8,000,000 records and converts them into 30,000 records of useful information-takes 20 minutes in XP, 30 minutes in SuSE 7.3 on a personal computer). I used the orarun9i script and followed the directions for re-compiling the genclntsh from the SuSE installations online.

  • Firefox 22 running very slow on windows 7 but no problem in linux. Help

    Firefox 22 is running very slow ( rather stalling forever) on windows 7.
    I tried resetting option from the "Troubleshooting information" menu and also tried disabling "Hardware acceleration" but still having the problem.
    Takes almost a minute ( "New window not responding"..) just to try any option..like opening a new tab.
    I have same version on linux mint and but FF runs smoothly.

    Sorry, not an option. As I said, I have binned FF22 and gone back to 21 -- and it works just as fast as it always did, corrupt profile or no corrupt profile.

Maybe you are looking for

  • Calling WDA Application in BADI

    I have to enhance a abap webdynpro screen using badi in CJ20n. I want to know how to call abap webdynpro application in badi. Can anybody help me on this. Regards, Soumya

  • Reissue payment - with different exchange rate

    hi, Is it possible to reissue the payment,with the different exchange rate?? the reissue list box is disabled in payments screen? pls help me... thanks a lot n advance...

  • .mac and storage problems

    hi i'm new sorry just bare with me. i recently purchased a MacBook and .mac, my plan was to back up my documents, ical and other stuff on a weekly basis. this i thought i set up but on looking again, i dont know where i am backing the info up to. thi

  • Problem testing WebMethod. Throwing javax.xml.bind.JAXBException

    Hi guys, Another Newbie. Specifications: NetBeans5.5 Sun App Server 9.0_01 (build b02-p01) MySQL Problem: Not able to test run the Webmethod with webparams. I have an entity class with some methods as shown below public class Country {     private In

  • PM Shop Paper

    Hi Guru, Anyone can share how do I configure a PM shop paper to print all in one document for: 1. Order header 2. Operation list 3. Coomponent list etc. Currently, in my system, these are configured to be printed as individual shop paper. For eg, sho