Java, Linux and gcc 3.x

I recently put RedHat 8.0 on my linux box and then Java 1.4.1. There are obvious problems as RH8 uses gcc 3.2 and Java uses gcc 2.96. There is a bug about this, too, I know, but it has been closed by Sun with the comment "we don't support Mozilla". Sigh.
How have others taken this? It seems, to me, to be an extremely ignorant stance on Sun's part. What can I (we) do about this? I am very close to moving back to C++, given that Sun does not seem like they care much about the Linux community.
B

I agree - this has nothing to do with Mozilla. There are several threads on the forums discussing the fact that the Sun JVM does not play nicely with gcc3.x since the JVM is compiled with 2.95. All sun would have to do is spend the time to release a version of the JVM compiled with a more recent gcc.
Regarding your options, we have had success using the blackdown JVM, which comes in both a 3.2 and 2.95 version.
Gil

Similar Messages

  • Installing Linux and Oracle-Partition Management

    Dear Friends,
    I will be using Java Linux and Oracle lite on My New IBM R40
    Thinkpad, that Now Has Windows XP.
    Problem at Present is Finding Free Partition Manager
    for DualBoot Partitioning.

    I had a similar problem. I solved it by adding the following line in /etc/hosts
    127.0.0.1 localhost.localdomain localhost
    After that I started the installation again and the problem was solved. But, now I'm having a problem with opmn and HTTP Server. The error says:
    "...Error
    --> Process (pid=14674)
    failed to start a managed process after the maximum retry limit
    Log:
    /u01/app/oracle/product/9.0.4/IMHome/opmn/logs/HTTP_Server~1 ..."
    I'm using Red Hat ES 4. Please let me know if you can complete the installation.
    Thanks,
    Pablo.

  • Problem with java, ASCII and Linux

    Hi Friends,
    I has a Linux RedHat 9.0 with a jre1.5.0_04 (rpm package of Sun).
    I has a problem with ASCII , for example :
    import java.io.*;
    public class HolaMundo
    public static void main (String[] args)
    System.out.println("Hol� M�ndo");
    this programs runs ok on my windows jdk so it prints "Hol� M�ndo", but when i run the same HolaMundo.class program on my linux redhat it prints "Hol�� M��ndo"
    I think the problem is with the ASCII table that uses the linux version of jre, but i dont know how to solve this problem. I need a Spanish-European ASCII table on my application but i think it is working with a US-ASCII table.
    Then i has installed a kaffe 1.0 (rpm) java machie on this linux and this solve the problem but i has another problems of compatibility with this old version of java kaffe.
    Do you know whats happening?
    Thanks in advance.

    The problem doesn't have to do anything with Java or Linux as far as i can see. It's more likely a problem with Windows XP and IE. Be assured that normally downloading the Linux JDK in windows is not a problem.

  • Why we have separate azure java SDK for linux and windows

    I saw different links for downloading azure java SDK for linux and windows.
    What difference does it actually have when java is platform independent? Or both are same jars?

    Hi,
    Thank you for your post.
    It contains the same jar files.
    Regards,
    Mekh.

  • I hear audio after leaving the pogo bingo luau room long after signing off from pogo. i have the latest flashplayer for fedora linux and java installed.

    as above

    Hi audiopaster, that sounds like a lingering sound from another window. Is Firefox completely closed when the audio continues as well?
    What I will do is look around and let you know what I see, as I try to reproduce this. However I may need your help to troubleshoot.
    Since this is a java game, all java applications running in the browser are allowed through the parameters in the Java Console [http://www.java.com/en/download/help/jcp_security.xml#control%20panel Finding Java Console]
    In the console look for the Java section and when you hear the audio continuing to place click View to see what is running. Aldo check the General > Java Cache Viewer, is there a temporary audio file there?
    Also what version of java is installed? I did not see any when I tested.
    It looks like pogo games do not support Linux [http://help.ea.com/en/article/supported-browsers-for-pogo/#2]
    So I looked on stack overflow and found [http://stackoverflow.com/questions/6259077/playing-game-music-in-java-how-to-stop-the-stream-of-data] that certain Audio implementations of java will not terminate on exit is because there may not be a call to stop audio.
    This makes me wonder if there is a cookie or session that is still going after you navigate away, this sounds really silly though. Please try to clear your cache if this continues. I will ask on irc with more info as well.

  • OID/Linux and Netsacpe Java SDK don't play nice

    Here's a brief description of the problem. We are developing with the Netscape LDAP SDK for Java connecting to OID on Linux and deploying on Solaris. The problem I'm discussing here doesn't happen on Solaris. All access to the LDAP server is being funelled through one connection (please don't ask, I didn't design it).
    Lets call an add, modify, delete or read an "action," for the sake of convenience. When an ldapjdk.jar client connects to an OID server, it can perform 32764 "actions." On the 32765th, it blocks forever waiting for OID server to return. Ok, the obvious solution is to implement a timeout and try again. Did that and it doesn't work. Ok, lets try dropping the connection at a watermark (say 30000 actions) and establishing a new one. Nope, still doesn't work. At the 32765 actions per client machine mark, it blocks forever.
    Dumping the threads on the client side gives us something like the following:
    main:
    [1] java.lang.Object.wait (native method)
    [2] java.lang.Object.wait (Object.java:424)
    [3] netscape.ldap.LDAPMessageQueue.waitForMessage (LDAPMessageQueue.java:179)
    [4] netscape.ldap.LDAPMessageQueue.nextMessage (LDAPMessageQueue.java:101)
    [5] netscape.ldap.LDAPSearchListener.nextMessage (LDAPSearchListener.java:86)
    [6] netscape.ldap.LDAPConnection.search (LDAPConnection.java:2584)
    [7] netscape.ldap.LDAPConnection.read (LDAPConnection.java:2104)
    [8] netscape.ldap.LDAPConnection.read (LDAPConnection.java:2098)
    [9] ReadLockTest.run_test (ReadLockTest.java:96)
    [10] ReadLockTest.run (ReadLockTest.java:49)
    [11] ReadLockTest.main (ReadLockTest.java:25)
    LDAPConnThread chakotay:389:
    [1] java.net.SocketInputStream.socketRead (native method)
    [2] java.net.SocketInputStream.read (SocketInputStream.java:90)
    [3] java.io.BufferedInputStream.fill (BufferedInputStream.java:190)
    [4] java.io.BufferedInputStream.read (BufferedInputStream.java:208)
    [5] netscape.ldap.ber.stream.BERElement.getElement (BERElement.java:101)
    [6] netscape.ldap.LDAPConnThread.run (LDAPConnThread.java:420)
    Not much help there. I turned on all debugging on the OID server and got massive amounts of data back (and the server slowed to a crawl. :-] ). They all show the choke happening after gsldfb_FetchBaseObjs, and before leaving gslfcfdRefreshRootDSE. The last request (the 32765th) has started, but
    never completes. I can provide parts of the logs on request.
    Has anyone else encountered this problem?
    Thanks.
    Glenn McAllister
    SOMA Networks, Inc.

    Hello Glen:
    I have not seen this before. Sounds like you have done a thorough job troubleshooting this and this may be a bug. If you are able, I would like you to file a trouble report at our Oracle Support web site:
    http://www.oracle.com/support/metalink/index.html
    Thanks,
    Jay
    null

  • Oracle Linux and Java 7u10

    Hi all,
    I installed Oracle Linux Server 6.3 selecting "software Development System" (java 1.6.0 comes with it).
    but I need to use Java 1.7
    So I downloaded jdk-7u10-linux-x64.rpm
    when I try to install it, I get the following error.
    Unpacking JAR files...
         rt.jar...
    Error: Could not open input file: /usr/java/jre1.7.0_10/lib/rt.pack
         jsse.jar...
    Error: Could not open input file: /usr/java/jre1.7.0_10/lib/jsse.pack
         charsets.jar...
    Error: Could not open input file: /usr/java/jre1.7.0_10/lib/charsets.pack
         localedata.jar...
    Error: Could not open input file: /usr/java/jre1.7.0_10/lib/ext/localedata.pack
    I can't uninstall java 1.6 because other rpm uses it.
    Can someone tell me what the "proper" way to install Oracle Linux and Java 1.7 should be?
    OR is there a Oracle Linux Server 6.4 coming out soon with Java 1.7 as its default package set ;-)
    thanks in advance,
    c.w.

    You can ignore the errors. The files named in the error lines do not exist in the rpm package, but are there as .jar files
    The following works under Oracle Linux 6.3 x86_64 (and probably other versions).
    1. Open the following URL in a web browser on your PC:
    <pre>
    http://www.oracle.com/technetwork/java/javase/downloads/index.html
    </pre>
    2. Click the JDK download button, accept the license agreement and download the JDE rpm package.
    3. Copy the following file to your Oracle Linux server (SFTP):
    <pre>
    jdk-7u10-linux-x64.rpm
    </pre>
    4. Login as root and use the YUM utility to install the RPM package.
    <pre>
    # yum install ./jdk-7u10-linux-x64.rpm
    </pre>
    5. Register the new installed java version, then change your default Java:
    <pre>
    # alternatives --install /usr/bin/java java /usr/java/jdk1.7.0_10/bin/java 2
    # alternatives --config java
    </pre>
    Display your default Java version:
    <pre>
    # java -version
    java version "1.7.0_10"
    Java(TM) SE Runtime Environment (build 1.7.0_10-b18)
    Java HotSpot(TM) 64-Bit Server VM (build 23.6-b04, mixed mode)
    </pre>

  • Can Java program written on Windows platfrom run in Linux and Mac?

    Hi
    I am currently building a java applet in windows platform. I am wondering whether this program can be run on other platforms (Linux and Mac Os), Because the requirement of this program is to be able to run on three different platfrom (windows, linux and Mac os). Really appreciate if someone can help me
    Thank

    I can say with a high degree of certaintly that the answer is probably. Thats about 90% probably, which is a lot better than you will get with anything else. You may need to be careful of fonts and such, but GFI

  • Creating JNI DLL on WinXP using MinGW and GCC

    Ohh man, I spent entire day fighting with "UnsatisfiedLinkError "while trying to cal my native method. After reading all the posts with similar problems, and checking for every little thing that was suggested I figured it out. So I'm reposting the solution here since no one else had suggested this.
    The solution to my problem was that g++/gcc compiler needed an option "-Wl,--add-stdcall-alias". This was the killer. I had the "-shared", but it wouldn't link without the "-Wl,--add-stdcall-alias" option!!!
    As a summary, while its fresh in my mind, here are the trouble shooting steps I used:
    1) Check package names and the generated .h file using javah. I checked and rechecked the names, even created simpler static void method to try and get it to link.
    2) Make sure to use the "jobject" parameter for dynamic methods and "jclass" for static methods in the signature as second argument.
    3) That method name starts with "Java_" and I stress the CAPITAL "J", can not be lowercase. Although if you are using javah, that should not be the problem, since javah can not ommit this kind of detail. The only thing that you need to check for is that if you change method from dynamic to static, and don't rerun the javah, or javah doesn't replace the previous file. So make sure you restart clean and that javah regenerated the file with "jclass" or "jobject" whichever is the case.
    4) Used the "java -verbose:jni" debug flag to see my native method loaded. In my case when it wasn't working I couldn't see the method load, but there were no error messages from "System.loadLibrary" or from the verbose output. Only the UnsatisfiedLinkError. Frustrating. After the fix it loads perfectly:
    [Dynamic-linking native method org.jnetpcap.Pcap.openVoid ... JNI]5) I used "nm" found at "c:/MinGW/bin/nm.exe" to dump the symbol table, and I could see all my methods, with the appropriate named marked as text (T) flag. They were not being loaded when viewed using "java -verbose:jni" though.
    6) I put "extern "C" {}" around all my JNI C++ methods.
    7) Tried a gazilion other gcc options, posted in various messages, none worked.
    8) Finally came accross the "-Wl,--add-stdcall-alias" flag which fixed it.
    Here is a portion of my Makefile for reference:
    $(LINK_TARGET) : $(OBJS)
         g++ \
              -shared \
              -Wl,--add-stdcall-alias \
              -o $@ $^ \
              $(LIBDIRS) $(LIBS)LIBDIR and LIBS point to a single external library dependency.
    My IDE environment is Eclipse 3.2, but I run everything from Makefiles as external programs.
    I wish this was documented somewhere, would have saved me an entire day of troubleshooting.
    Cheers,
    mark...
    Message was edited by:
    voytechs - added CODE tags

    Glad my post helped out at least a few people.
    Believe it or not, I'm in the same boat now on Linux.
    Atleast I know its the name mangling problem again. I
    see a few symbols unmangled with nm, but most are,
    and those are then one's JNI is complaining about
    with UnsatisfiedLinkError.
    So now I'm going through various post related to
    linux and trying to find the same type of flag. The
    "alias" flag doesn't work with RH4 g++ version
    4.0.2.You should not need a flag on Linux. A typical compile for me on my Linux box is:
    gcc -shared -o libjnitest.so -I/usr/java/jdk1.6.0_01/include -I/usr/java/jdk1.6.0_01/include/linux jnitest.c>
    Window builds perfectly fine, but now I'm creating a
    new platform target. Everything compiles and creates
    the shared library, just can't get JNI to be happy.
    BTW, my project: http://jnetpcap.sf.net
    Ah. You have .cpp extensions on your filenames. Are you using gcc or g++ to compile? If you don't use g++, you can get errors such as:
    undefined symbol: __gxx_personality_v0
    Jim S.

  • How to set owner-only access file permissions both on Linux and Windows

    Hi everybody.
    I have the following problem. I need to store some private user information in file system. So I need to set owner-only access permissions for some directory in user home. I did not find API for doing this. As I understand this is platform specific thing. Could anybody tell me how can I do this both on Linux and Windows?
    Thank you in advance.

    More ideas just came back to me (of something I did before)
    Each OS requires a different control.
    For Windows you will need to set the .policy file for each user (a pain if you have more than a dozen of clients) granting access (R or RW) to files/directories.
    Then you have to write some native code (access via JNI) to access/modify your authorization.
    A more professional solution that I used was J-Integra (other similar tool exist).
    Basically it is a bridge between Java and COM. It magically give you access to the COM API from Java (and vice versa).
    In my case it was to read/write/modify Winword documents transfered between PC and server.
    From memory you have to run the com2java.exe to build the bridge (classes in Java language) between the 2 families. Compile those classes and you have a "driver" for the COM (Microsoft Objects).
    Here I must confess my ignorance on Microsoft.
    Those COM objets must give you some easy/integrated access to the API for LDAP or Microsoft Active Directory Service (for centralize control with more complex setup).

  • Help with Java program and PKGBUILD

    Hey guys, I'm fairly new to Arch and very new to making packages. I write a lot of my stuff in Java, and I know that Java is normally a pain to package on Linux systems. I have had a good look at the Java Packaging Guidelines, http://wiki.archlinux.org/index.php/Jav … Guidelines and I see that it says about not bothering compiling from Java source and just provide the JARs (am I correct?). So my question is, if I were to make a PKGBUILD for my Java based program, would the build() block just basically create the folders in the filesystem and move the content (JARs etc) to the folders? And then create the shell script in the appropriate location?
    Forgive me I have the completely wrong idea...
    Many thanks

    Hey guys, I'm fairly new to Arch and very new to making packages. I write a lot of my stuff in Java, and I know that Java is normally a pain to package on Linux systems. I have had a good look at the Java Packaging Guidelines, http://wiki.archlinux.org/index.php/Jav … Guidelines and I see that it says about not bothering compiling from Java source and just provide the JARs (am I correct?). So my question is, if I were to make a PKGBUILD for my Java based program, would the build() block just basically create the folders in the filesystem and move the content (JARs etc) to the folders? And then create the shell script in the appropriate location?
    Forgive me I have the completely wrong idea...
    Many thanks

  • Web Start doesn't leave the gate on Linux and Mac

    I am evaluating Java Web Start to decide whether to recommend it as part of a government grant proposal. My initial impression of Web Start has been a sorry one. When I go to
    http://java.sun.com/products/javawebstart/demos.html
    and click on one of the demos, I am redirected to the page
    http://java.sun.com/products/javawebstart/needdownload.html
    which tells me that I need to download Java Web Start ("a one-time process"). Fine, I click on the download link, and instead of a download, what I get is a bug-report page:
    http://java.sun.com/webapps/bugreport
    I have seen this behavior on both Linux and Mac OS X. (My Windows machine already had Web Start installed from several months ago; I don't know if this reflects a superior Windows support relative to Linux or Mac OS X support, or a better download software several months ago.)
    This is a terrible first impression for one's software. Given these beginnings, any sane developer would run away as fast as possible from the Web Start technology. Clearly a lot of work has gone into Web Start, and to see squandered like this is surprising.
    Our software's user base (research biologists) has large Macintosh and Linux constituencies. My experience with Web Start suggests that Web Start would be a disastrous choice for us. I hope there is a simple way around these obstacles.
    Any suggestions would be much appreciated.
    Thanks,
    GFBerriz

    I haven't tested JWS before JRE 1.4 so I can't recommend you anything if you require JRE 1.3 or before, but if you can install JRE 1.4, specially JRE 1.4.2 or after, JWS works very good on Linux and Windows. In both platforms I use deploy applications using JWS and they all work very good. I have no experience on Mac OS X.
    Both platforms obviously require Java preinstalled. Also there is some ways to install Java automatically, this is something that must be done by an administrator as every other software that requieres installation and configuration on every PC. After that step, everything is very simple.
    On Linux if you click on a .jnlp file for the first time, at least mozilla ask if you want to save the file or open it, you can select the javaws executable inside your java installation as the program to open this file, mark that that's the action you always want to do with that kind of files, and that's all. Also you can manually register .jnlp files and application/x-java-jnlp-file mime tipe as handled by javaws as the last part of the java installation and this first step will not be necesary.
    On Windows the installer automatically register itself as insterested in handling jnlp files, so the previous step for linux is not required.
    Hope this helps.
    rivas.

  • Different soap request in 9.2.0.4 linux and windows for same webservice

    hi,
    i deployed a webservice on iis5 (dotnet 1.1). the client for this web service is written in java and is loaded into oracle db (9.2.0.4 linux). and there are errors. the same java code is working fine on 9.2.0.4 windows.
    description of the error:
    <?xml version="1.0" encoding="UTF-8" ?>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Body>
    <ns1:MethodName xmlns:ns1=http://tempuri.org/Service/message/ SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <SomeString xsi:type="xsd:string" xsi:nil="true" />
    <ErrorDes xsi:type="xsd:string" xsi:nil="true" />
    </ns1:MethodName>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    there are problems with the 'SomeString' and 'ErrorDes' elements. there is an attribute xsi:nil="true". in the working requests this isn't present. the result of this, if for example DName isn't assigned a value this element isn't in the resulting response:
    <?xml version="1.0" encoding="utf-8" ?>
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns=http://tempuri.org/ xmlns:types="http://tempuri.org/encodedTypes" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
    <q1:MethodNameResponse xmlns:q1=http://tempuri.org/Service/message/>
    <Result xsi:type="xsd:int">0</Result>
    <ErrorDes xsi:type="xsd:string">string</ErrorDes>
    </q1:MethodNameResponse>
    </soap:Body>
    </soap:Envelope>
    what can cause this behaviour? is there a way to prevent sending the xsi:nil attribute?
    thanks
    ralf

    This is just one of the web service interop problems you can face. Both omitting the accessor with the NULL value as in your "working request" and placing xsi:nil attribute with the value "true" as in "not working request" are valid in soap messages. The problem happens when either the soap client or soap server/container does not fully support the soap spec or support with wrong interpretations. Most of the toolkit are not sophisticated enough to let you choose one of two options above.
    Maybe you might want to consider not allowing non-null values so that you can get around with the interop problem, and add logic in the client and service implementation to handle special cases for default values indicating null.
    Below is FYI.
    SOAP 1.1 spec says the following.
    "A NULL value or a default value MAY be represented by omission of the accessor element. A NULL value MAY also be indicated by an accessor element containing the attribute xsi:null with value '1' or possibly other application-dependent attributes and values."
    On the other hand, there is no "null" attribute in http://www.w3.org/2001/XMLSchema-instance namespace referenced by xsi in your soap messages, and xsi:nil is the valid attribute name.
    Regards,
    Pyounguk

  • Missing data in server monitor under linux and solaris

    Some metrics are not displayed in our environments, specifically under the statistics tab, request statistics, active coldfusion thread, we always have a zero line.  Also under memory usage, "cf threads by memory usage" is always empty.  I have all three buttons at the top checked so they are monitoring.  Is there something else I'm doing wrong?
    Environment 1 : dell2850->centos5->vmware->centos5->32bitJDK5->tomcat6->coldfusion8
    Environment 2 : sun5120->solaris10->64bitJDK5->tomcat6->coldfusion8
    I'm specifically wanting thread info to check if I should increase the defaults in CFIDE configuration.  Most everything on the server is being delivered faster now that we are using a 64bit JVM and have moved to solaris in production (from windows).  But there are some sections of our cfm logic that are taking much longer now (2000% longer)
    Thanks
    Ahnjoan

    Hi all,
    does anyone can write some info why java Threads are
    recorded in the list of process (ps -ef) when you run
    on a Linux box, but not the same when you run on
    Solaris ? Which Thread support is more
    performant/stable that on Linux or that on Solaris?
    Thanks
    FrancescoLinux treats kernell threads as light weight processes and displays them as if they are actual processes - they of course are not, so the results of 'ps' can be misleading. Solaris fully differentiates between its three concepts of threads, lightweight processes and processes and 'ps' only shows actual processes.
    Both implementations in Linux and Solaris perform well.
    By the way, Solaris 8 has an optional, slightly different thread model than earlier versions of Solaris (in fact it is more like NT's) and that can be more efficient for JVM's or other multithreaded systems running on SMP systems. It can also be worse - your mileage may vary.

  • OmniPortlet, Linux and graphs a problem?

    I have the OmniPortlet working under Linux and made a tab report against emp. Worked fine.
    I then set the style to chart instead. Now I cant press OK on the portlet definition page or edit or view the page. I just get "Internal server error".
    In the portalTools application log file i get:
    at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadP
    oolThread.run(ThreadPoolThread.java:64)
    10/17/03 2:39 PM omniPortlet: [id=1066394357837ApplicationServerThread, instance
    =114401_OMNIPORTLET_387111] JDBCUtils.getMetadata QueryStringAfterParamSubstitut
    ion=select * from scott.emp
    10/17/03 2:39 PM omniPortlet: [id=(null), instance=(null)] WARNING: Request has
    exceeded its warning timeout of 20000ms. Request details are: id=1066394357837Ap
    plicationServerThread providerId=387111 portletId=100 portletName=OmniPortlet po
    rtletInstance=114401_OMNIPORTLET_387111 user=PORTAL
    10/17/03 2:40 PM omniPortlet: [id=(null), instance=(null)] ERROR: Request has ex
    ceeded the kill timeout of 80000ms - trying to interrupt the request, request de
    tails are: id=1066394357837ApplicationServerThread providerId=387111 portletId=1
    00 portletName=OmniPortlet portletInstance=114401_OMNIPORTLET_387111 user=PORTAL
    In the portal application log file there are lots of these:
    10/17/03 2:34 PM portal: FetchGroup caught uncaughtException=java.lang.ThreadDea
    th in thread name=content-fetcher40, starting a new fetcher. 27 total threads in
    this group. Parent Groups : applicationServerThreadGroup=76, main=114, system=1
    20, end.
    10/17/03 2:40 PM portal: id=1066394357837ApplicationServerThread Stall Timeout r
    eached. Interrupting Fetcher name=content-fetcher48 label=webPortlet url=http://
    ska57.data.skanska.se:7778/portalTools/omniPortlet/providers/omniPortlet time=51
    260ms timeout=51000ms process=Dispatching
    10/17/03 2:40 PM portal: HeartBeat retrying to stop a Fetcher name=content-fetch
    er48 timeout=51000ms process=Dispatching
    10/17/03 2:40 PM portal: FetchGroup caught uncaughtException=java.lang.ThreadDea
    th in thread name=content-fetcher48, starting a new fetcher. 27 total threads in
    this group. Parent Groups : applicationServerThreadGroup=76, main=114, system=1
    20, end.
    Any ideas?
    I believe I hav DISPLAY set up right in the right conf-files (but who nows)...
    Kind regards
    Tomas Albinsson
    Stockholm, Sweden

    Sorry for the delay, I couldn't access the server any sooner.
    Which version of OmniPortlet are you using ?Version: 9.0.2.6.1 June 27 2003
    In the config page it says that DISPLAY is not configured.
    I've set it for OC4J_Portal in $MID_HOME/opmn/conf/opmn.xml. I've also set it in $MID_HOME/portal/902dcm/opmn.xml and in $MID_HOME/portal/9023dcm/opmn.xml.
    I ran dcmctl updateConfig and restarted the midtier but it's still "not configured" in the config page.
    The application.log also complain about the DISPLAY not being set.
    Any suggestions? Are there other files?
    My sysadmin has said DISPLAY should be localhost:1.0
    The data is just ename and salary from scott.emp but it must be the DISPLAY that's causing my problems.
    Tomas

Maybe you are looking for

  • Add a field to a cube in BI 7.0

    Hi, I want to add a charachteristic to an infocude without deleting the data in the infocube. I guess that REMODELING is the solution, but I'm not sure wich alternative to choose. Or even if REMODELING is the right solution? The field I want to add t

  • Photoshop CS3 Crashes on open or save

    Has anyone else encountered this problem? I have followed all instructions in this document http://kb.adobe.com/selfservice/viewContent.do?externalId=kb401517 to no avail. Photoshop CS3 has never worked on my MBP. It is useless.

  • Assertion failed when open Applet in Internet Explorer 7.0 ( Windows Vista)

    I have a problem when loading an applet ( calling from a ASP.NET page ) only in 1 computer ( the others in my company is fine ) Here is capture of the error dialog i got : http://img134.imageshack.us/my.php?image=editorproblemszx1.jpg I try to re-ins

  • How To Increase the size of the TEXT AREA(APEX3.1)

    I have a table called tableA in that i have 2 columns named report_no, Report_body Report_no containing sequence numbers and report body contains more than 4000 charecter text using clob i am able to display 4000 charecter but I need to display the w

  • How do i turn off icloud in itunes

    i dont want icloud turned on in the most recent update of itunes. can it be turned off.