Init problem

Hello
I'm using Tomcat 4.1.12 and my System.out.println Debug
info are not shown on the console did anybody why?
thx

Yeah, theyre printed to a file <tomcat-install>/logs/localhost_log.<date>.txt.

Similar Messages

  • Delta INIT problems in production system

    hi!
    How do you do, I hope all fine, well, I have a problem in production system, I execute the delta init and the data is in BW the problem is when I want to activate the data, the system give me a processing error, somebody can helpme please?
    BR

    Hi
    Please check with your Basis team to confirm there are enough resources.
    Also Check what is max work process time . Tcode RZ11 parameter rdisp/max_wprun_time
    Check this thread which mentions a lot of related notes.
    Link: [Re: DSO-data activation issue;
    Regards
    Sanjyot

  • Preventing Multiple Init problem

    Hello,
    This is something I should already now, but I have myself stumped.
    I have a servlet that has some static instance variables to some singleton objects, and some Strings and some other objects, which get initialized in the init() method when my servlet gets loaded. When another instance of my servlet is created, I don't want it to re-initialize those objects. For most of them it would be okay, but there are a few that would cause problems. So, I was wondering what would be a good way to ensure that a servlet only initialized certain instance variables once, and any future servlet instances would skip that initialization and use the values that were already initialized by the first instance? I wrote the following test program:
    public class TestBool
         static boolean testBool;
         static String testString;
         public static void main(String[] args)
              Thread main = Thread.currentThread();
              System.out.println( (testString == null ? "true":"false") );
              testString = "no";
              try
                   main.sleep(30000);
              catch(Exception e)
                   e.printStackTrace();
    }I then ran it once, then ran another instance of it, but the second instance seems to reset that testString to null when it runs, so they both output "true"... I am also assuming that both instances I ran were running in the same JVM. So, I am assuming the same thing may happen to my servlets. Any advice and/or expertise would be greatly appreciated! Thanks!

    I am using a multi-threaded servlet, but from my
    understanding, it is still possible to end up with
    more than one instance of a multi-threaded servlet if
    there is enough load on the server that it needs to
    create another instance to serve all the requests.
    (Let me know if that is incorrect).According to the servlet spec, the container must use only one instance of a multi-threaded servlet class. Load does not impact this because the server can create more threads - another instance would not help. However, it's probably safer to code defensively because it's possible that your servlet could be changed later to a single thread servlet and who knows if all servlet engines follow the spec.
    I guess
    my real question is, when it goes to create another
    instance... will the static declarations reset the
    references to null, or should I be able to check if
    fooString is null and skip initialization if it is not
    null?The static declarations are initialized when the class is loaded, so object creation has no impact. To be super-safe, you should synchronize the code that initializes the variables. In my previous post I synchronized on the object but it should have been on the class.
    public void init(ServletConfig config) throws ServletException {
          if (fooString == null) {
                synchronized (FooServlet.class)
                    if (fooString == null) {
                        fooSingleton= SingletonClass.getInstance();
                        fooString = config.getInitParameter("fooValue");
    }All of this is probably more safety than you need! There should be only one instance of the servlet, and this code handles multiple instances being created concurrently. As long as the app is not distributable across multiple JVMs, then you should be ok.

  • FULL and INIT problem

    Hi,
    I am loading data to ODS.First I shceduled a FULL and when I tried to go for INIT it is not allowing.Why is this?

    Hi,
    In case of ODS, it is not possible to load init if already full load is there and viceversa. If u want to run init, first convert all the request in ODS to repair full request from program RSSM_REPAIR_FULL_REQUEST_ALL in se38. Then try to run the init.
    Hope this helps in solving u r problem
    Regards
    Ramakrishna Kamurthy

  • CFC Init problem

    I'm trying to create a cfc in my application scope but the
    variables I set in the init method don't seem to be persistent.
    Here is the init method:
    <cfcomponent displayname="coupons" hint="Checks validity
    and type of coupon and applies it to order."> <cffunction
    name="init" access="public" output="false" returntype="coupon">
    <cfargument name="ds" required="true" type="string" <cfset
    variables.ds=arguments.ds> <cfreturn this>
    </cffunction>
    Here's the call in the Application.cfc
    <cfset Application.coupons = createObject("component",
    "coupon").init(application.admin.ds)>
    Here is the method that throws the "variables.ds not defined
    error"
    <cfstoredproc procedure="pr_getCouponList"
    datasource="#variables.ds#" debug="Yes"> <cfprocparam
    type="In" cfsqltype="CF_SQL_INTEGER" dbvarname="@Active"
    value="#arguments.Active#" null="No"> <cfprocparam type="In"
    cfsqltype="CF_SQL_VARCHAR" dbvarname="@Sort"
    value="#arguments.gridSortColumn#" null="No"> <cfprocresult
    name="getCouponList" resultset="1"> </cfstoredproc>

    On Tue, 24 Jun 2008 05:22:30 +0000 (UTC), athanasiusrc wrote:
    > Okay, I figured out the problem but don't know the
    answer. I am getting this
    > problem when I try to bind the cfc in a grid because the
    grid is binding a new
    > copy of the cfc instead of the one created in the
    application scope:
    >
    > <cfgrid format="html" name="getCouponList"
    pagesize="#attributes.pageSize#"
    > selectmode="row"
    >
    >
    bind="cfc:cfcs.coupon.getCouponList({cfgridpage},{cfgridpagesize},{cfgridsort
    > column},{cfgridsortdirection},{active})">
    >
    > It works if I call it through an invoke command.
    >
    > The problem I have now is, how can I bind a cfc in a
    scope?
    I'm not sure how to use a variable instead of a CFC in a bind
    statement (I
    don't do much UI type development, so have never needed to
    know); however
    your init() method in your CFC could look to see if there's
    an instance of
    itself in the application scope and if so return that instead
    of a new
    instance of itself. Then you chain your method call thus:
    cfcs.coupon.init().getCouponList(etc...)
    Adam

  • Inventory Init Problem

    Hello
          I have some problem for Init request,there is very much data while data schedule in BI side.and i have only 3 to 4 hours to take init and data fill from setup table to bi(Schedule).so what i do.kindly provide solution for that problem

    Hi,
           Generally, you need to parallelize your init ranges first in R/3.   You can follow the same in BW Infopackages by doing multiple init with different ranges, so that the jobs can parallely run.  There is one more scenario wherein you can do Init without data transfer in BW (given that you have done your Init with some ranges in R/3 Side to fill setup tables) and continue your deltas.  Then perform your full loads with some ranges to run in parallel when there is smaller load on servers.  Finally do the repair full request and continue your deltas.  Hope it should provide you some answers of minimizing your down time.
    Thanks
    Kishore

  • Init-problem in swich-case

    I have to init the "a1" and "k" inside the if-advise, but I want use it outside the if-advise, too and there he can't resolve symbol....
    case 1:
    if(a1 == null){
    //there is my problem!!!!!!!!
    a1 = new String[100];
    int k=0;
    a1[k] = testResponse.substring(0,10);
    System.out.println(a1[k]);
    k++;                         
    break;

    perhaps it would be easier if there is a way to append String to an array like StringBuffer.append(String) or in "php" array[] .= string (there it gets the last index of the array, iterates it and then automatically appends the string..)
    maybe if have to think about a completely different way to solve my problem...
    String[] a0,a1;
    switch(x){
    case 0:
    if(a0 == null){
    a0 = new String[100];
    int k1=0;
    a0[k1] = testResponse.substring(0,10);
    k1++;
    break;
    case 1:
    if(a1 == null){
    a1 = new String[100];
    int k2=0;
    a1[k2] = testResponse[i].substring(0,10);
    k2++;
    break;

  • FTP Init Problem

    I need some help streaming in data from a ftp connection. My problem is the ftp requires a username and password to login and the only method to set this is "set()" which requires a URLStreamHandler and it has me all confused. I can't seem to create the proper objects to control this. Can anyone tell me what I need in order to send username/password information to the server? Thanks so much!
    try {
              URL ftpCC = new URL("ftp","myftp.com",21,"//mnt//mydata.txt");
              URLStreamHandler ftpSH = createURLStreamHandler("ftp");
              ftpCC.setURLStreamHandlerFactory(ftpSH);
              try {
              URLConnection ftpconn = ftpCC.openConnection();
              InputStream inData = ftpconn.getInputStream();
              String controlData = "";
                while (inData.read() != -1){
                  controlData += inData.read();
                System.out.println("FTP Data: " + controlData);
              catch (IOException e){
                System.out.println("Uh oh, got an IOException error!");
                e.printStackTrace();     
    catch (MalformedURLException e) {
              System.out.println("Uh oh, got an MalformedURLException error!");
              e.printStackTrace();    
            }

    It doesn't like the ftp://user:pass@host format. I get the UnknownHost Exception. How do I pass in username and password? All I can find related to sending in username and password is this set method... Can anyone tell me the simplest solution to just connect to this ftp with a username and password.
    protected void set(String protocol,
    String host,
    int port,
    String authority,
    String userInfo,
    String path,
    String query,
    String ref)
    try {
              URL ftpCC = new URL("ftp","ftp://user:[email protected]",21,"//mnt//myfile.txt");
              try {
              URLConnection ftpconn = ftpCC.openConnection();
              InputStream inData = ftpconn.getInputStream();
              String controlData = "";
                while (inData.read() != -1){
                  controlData += inData.read();
                System.out.println("FTP Data: " + controlData);
              catch (IOException e){
                System.out.println("Uh oh, got an IOException error!");
                e.printStackTrace();     
            catch (MalformedURLException e) {
              System.out.println("Uh oh, got an MalformedURLException error!");
              e.printStackTrace();    
            }

  • Srvconfig -init problem

    Hello,
    I am getting this error when i run srvconfig -init
    I am installing RAC on redhat AS 2.1 - following oracles guide and mr puschitz's page. all has gone well until right before i create the actual database.
    [oracle@rac2 u01]$ srvconfig -init
    oracle.ops.mgmt.rawdevice.RawDeviceException: PRKR-1064 : General Exception in OCR
    at oracle.ops.mgmt.rawdevice.RawDeviceUtil.<init>(RawDeviceUtil.java:136)
    at oracle.ops.mgmt.rawdevice.RawDeviceUtil.main(RawDeviceUtil.java:2071)
    [oracle@rac2 u01]$ ll
    total 385
    -rw-r--r-- 1 oracle dba 393216 Jan 6 14:19 cmdiskfile
    -rw-rw-r-- 1 oracle dba 0 Jun 28 2000 srvconfigfile
    [oracle@rac2 u01]$
    does anybody know what this means, or has anybody seen this before? any help would be greatly appreciated,
    best regards,
    Bryan.

    This is interesting. I did do chmod 777 /u01/srvconfigfile
    on rac2 - the command hung for the whole night (i do not know a lot about ocfs),
    so when i came back in i rebooted the system as i was unable to kill chmod process
    or umount the shared drive. When it came back up:
    On rac2
    [root@rac2 u01]# pwd
    /u01
    [root@rac2 u01]# ll
    total 10695
    -rw-r--r-- 1 oracle dba 393216 Jan 6 14:19 cmdiskfile
    -rw-rw-r-- 1 oracle dba 10557440 Jun 28 2000 srvconfigfile
    [root@rac2 u01]# dd if=/u01/srvconfigfile of=/dev/null bs=4096
    2577+1 records in
    2577+1 records out
    [root@rac2 u01]# cat /var/opt/oracle/srvConfig.loc
    srvconfig_loc=/u01/srvconfigfile
    [root@rac2 u01]# mount -v | grep ocfs
    /dev/sdg1 on /u01 type ocfs (rw)
    /dev/sdg2 on /u02 type ocfs (rw)
    /dev/sdg3 on /u03 type ocfs (rw)
    /dev/sdg4 on /u04 type ocfs (rw)
    [root@rac2 u01]#
    [root@rac2 u01]# su - oracle
    [oracle@rac2 oracle]$ srvconfig -init
    CMCLI ERROR: OpenCommPort: connect failed with error 111.
    CMCLI ERROR: OpenCommPort: connect failed with error 111.
    CMCLI ERROR: OpenCommPort: connect failed with error 111.
    [oracle@rac2 oracle]$
    I assumed this to be a failure message. Now this I run on rac1
    [oracle@rac1 oracle]$ cd /u01
    [oracle@rac1 u01]$ ll
    total 10703
    -rw-r--r-- 1 oracle dba 393216 Jan 6 2004 cmdiskfile
    -rw-rw-r-- 1 oracle dba 10565120 Jan 7 2004 srvconfigfile
    [oracle@rac1 u01]$ srvconfig -init
    [oracle@rac1 u01]$ ll
    total 10703
    -rw-r--r-- 1 oracle dba 393216 Jan 6 2004 cmdiskfile
    -rw-rw-r-- 1 oracle dba 10565120 Jan 7 2004 srvconfigfile
    [oracle@rac1 u01]$
    If the command runs through without error, but there is no change in
    filesize when i run on rac1 (there was a change after i ran on rac2)
    - can i assume this is success - should i continue and attempt to
    create database? Should i empty the file and try again or is it ok now?
    as always any help hugely appreciated,
    Ireland.

  • Plasmoid init problems

    Hello,
    I'm trying to follow the Python Plasma tutorial http://techbase.kde.org/Development/Tut … ingStarted. After adding the plasmoid with plasmapkg and running it with plasmoidviewer, I get this error
    plasmoidviewer(25748)/plasma main: setting FormFactor to "planar"
    plasmoidviewer(25748)/plasma main: setting Location to "floating"
    plasmoidviewer(25748)/plasma main: setting containment to "null"
    plasmoidviewer(25748)/plasma FullView::addApplet: adding applet "hello-python" in "null"
    plasmoidviewer(25748)/libplasma Plasma::CoronaPrivate::addContainment: loading of containment "null" failed.
    plasmoidviewer(25748)/kdecore (KSycoca) KSycocaPrivate::openDatabase: Trying to open ksycoca from "/var/tmp/kdecache-przemek/ksycoca4"
    plasmoidviewer(25748) KServiceFactory::findServiceByDesktopPath: "findServiceByDesktopPath: not found"
    plasmoidviewer(25748)/libplasma Plasma::AppletPrivate::init: Check your constructor! You probably want to be passing in a Service::Ptr or a QVariantList with a valid storageid as arg[0].
    plasmoidviewer(25748)/libplasma Plasma::isPluginVersionCompatible: plugin is compiled against incompatible Plasma version 4294967295
    plasmoidviewer(25748)/libplasma Plasma::ContainmentPrivate::addApplet: Applet "hello-python" could not be loaded.
    plasmoidviewer(25748) KServiceFactory::findServiceByDesktopPath: "findServiceByDesktopPath: not found"
    plasmoidviewer(25748)/libplasma Plasma::AppletPrivate::init: Check your constructor! You probably want to be passing in a Service::Ptr or a QVariantList with a valid storageid as arg[0].
    plasmoidviewer(25748)/libplasma Plasma::Applet::paint: failed!
    plasmoidviewer(25748)/libplasma Plasma::Applet::paint: failed!
    plasmoidviewer(25748)/libplasma Plasma::Applet::paint: failed!
    plasmoidviewer(25748)/libplasma Plasma::Applet::paint: failed!
    plasmoidviewer(25748)/libplasma Plasma::Applet::paint: failed!
    and a dull plasmoid shows up, with the text "Could not find requested component: hello-python".
    Does anyone know how to fix this?
    Best regards and Happy Easter,
    Przemek

    Hello,
    It's quite some time since you posted, but today I tried the C++ Plasma Tutorial and I'm getting a very similar error regarding an incompatible Plasma version:
    $ plasmoidviewer -c desktop tutorial1
    plasmoidviewer(8069)/libplasma Plasma::isPluginVersionCompatible: plugin is compiled against incompatible Plasma version 4294967295 This build is compatible with 3 .0.0 ( 196608 ) to 3.1.0 ( 196924 )
    plasmoidviewer(8069)/libplasma Plasma::ContainmentPrivate::addApplet: Applet "tutorial1" could not be loaded.
    plasmoidviewer(8069) KServiceFactory::findServiceByDesktopPath: "findServiceByDesktopPath: not found"
    plasmoidviewer(8069)/libplasma Plasma::AppletPrivate::init: Check your constructor! You probably want to be passing in a Service::Ptr or a QVariantList with a valid storageid as arg[0].
    Did you find a solution to this one?
    Searching the web for the error message one finds close to nothing and thus I wonder if this may be an issue specific to Arch?
    Thanks for any ideas and best regards,
    Jonas

  • Language init problem

    Hello,
    I tried installing SAP BO on my development machine and I got everything working except when my program tries to call SAPbobs.Company.Connect() I get the -8020 error (lang init)
    What does it mean and how do i fix it?
    Thanks,
    Nadav

    Strange,
    Unfortunatly i dont have constant ineternet access. So i wont be able to join you on msn. I'm running out of ideas. Dou you have a falid fiscal period. You won't be able to connect if your fiscal period is over already in SBO.
    Hope this helps

  • Archiving in R/3 - Impact in BW?  How to solve Init-Problem?

    Hello,
    following question: currently we think about an R/3 Archiving Projekt.
    In scope we have different archiving objects. Now I have concerns
    when we do an re-initalization on BW side.
    I thought about a second ODS-Object (= Backup ODS). Where I run a
    selective deletion job in order to have the init run double. When then we have to re-init. I can "move" my init.-request from the backup ODS to my "reporting" ODS.
    Somebody got another idea how to solve delta /init. runs in BW linked to archiving objects?
    (For full-updates directly to Cube I can select - e.g. Fisc.Year/Period.)
    Any input is welcome.
    Thanks in advance.

    Hi Pascal,
    your idea to have a back-up ODS with all the R/3 archived data is good, so, when you have to delete the original ODS content and then you have to/can re-init it only with the available data in R/3 (without the archived object), you can use the back-up ODS in order to refill your reporting ODS with the archived data.
    This is good if you want:
    - to make (and maintain) all archived data available for reporting
    - to preserve the same granularity
    Otherwise, you can store in BW all the R/3 archived data in another object and then you can use a multiprovider to make your reporting (in this case you have to copy your query from an infoprovider to the multiprovider).
    Considerations about the data redundancy (and related disc space) have to be done in the solution analysis phase.
    Consider also that for the LBWE extractors (you can check this in the OLI* transaction for the setup jobs), you have the possibility to reload your archived objects..in this case you don't need to create a backup ODS.
    Hope it helps (and don't forget to assign some points by clickin'on the yellow star for each reply of the contributors that help you !)
    Bye,
    Roberto

  • It seems the OSFM player streaming causes init problems for Flash Player in Linux

    I've been running a number of tests with the MediaPlayerSprite. When the video is to be streamed via RTMP FlashPlayer10 Linux debugger hangs for quite a while before drawing anything to the stage. The problem lies in the OSFMplayer/FlashPlayer because if you do not add the player to the stage via addChild you can hear the video almost instantaneously. However once you addChild the Flash Player goes dead for about 15 secs at least before the stage items appear.
    In addition if you set the MPS autoplay to false all your onstage assets appear, however once you click a the play button things freeze up before they stream. The workaround here is to wait about 15 secs before clicking the play button then streaming is instant ( on most occasions ). With non streamed media assets appear once the compile is done.
    Ubuntu 9.10 64 bit / FlashBuilder

    This sounds like a Flash Player (Linux) bug, as the addChild call wouldn't go through any OSMF code.
    I did a quick search in the Flash Player bug database, and the only issue that looks similar is this one:
    https://bugs.adobe.com/jira/browse/FP-2914
    Recommend you file a bug with the Flash Player team.

  • Beryl init problems [solved]

    So I heard about Beryl on these forums and thought I'd try it.  I have Beryl, XGL, and some Beryl manager apps installed on a laptop with a 7900 GS video card running the closed-source nvidia drivers.  My window manager is XFCE4, and I normally run it on xorg.  I installed beryl-manager via pacman, and when I run the Beryl Manager from the XFCE menu, I get a gem in the system tray.  I right-click, select Select Window Manager, and click Beryl, and all I see is my desktop icons shift around a bit.  If I go back to the same menu, the xfwm4 radio button is still selected.
    If I try to run Beryl from a terminal within X via XFCE4, I get this:
    [root@myhost ~]# beryl
    * Beryl system compatiblity check *
    Detected xserver : NVIDIA
    Checking Display :0.0 ...
    Checking for XComposite extension : passed (v0.3)
    Checking for XDamage extension : passed
    Checking for RandR extension : passed
    Checking for XSync extension : passed
    Checking Screen 0 ...
    Checking for GLX_SGIX_fbconfig : passed
    Checking for GLX_EXT_texture_from_pixmap : passed
    Checking for non power of two texture support : passed
    Checking maximum texture size : passed (4096x4096)
    Relaunching beryl with __GL_YIELD="NOTHING"
    * Beryl system compatiblity check *
    Detected xserver : NVIDIA
    Checking Display :0.0 ...
    Checking for XComposite extension : passed (v0.3)
    Checking for XDamage extension : passed
    Checking for RandR extension : passed
    Checking for XSync extension : passed
    Checking Screen 0 ...
    Checking for GLX_SGIX_fbconfig : passed
    Checking for GLX_EXT_texture_from_pixmap : passed
    Checking for non power of two texture support : passed
    Checking maximum texture size : passed (4096x4096)
    *** glibc detected *** beryl: double free or corruption (fasttop): 0x0000000000586400 ***
    ======= Backtrace: =========
    /lib/libc.so.6[0x2b4cc2703f3d]
    /lib/libc.so.6(__libc_free+0x76)[0x2b4cc2705576]
    /lib/libdl.so.2[0x2b4cc2cf7555]
    /lib/libdl.so.2(dlopen+0x32)[0x2b4cc2cf7122]
    /usr/lib/libberylsettings.so.0[0x2b4cc258e985]
    /usr/lib/libberylsettings.so.0(beryl_settings_context_set_backend+0xbb)[0x2b4cc258ef4b]
    /usr/lib/libberylsettings.so.0(beryl_settings_context_new+0x2a1)[0x2b4cc2590421]
    beryl(addDisplay+0x4fe)[0x4104ce]
    beryl(main+0x48a)[0x40bafa]
    /lib/libc.so.6(__libc_start_main+0xf4)[0x2b4cc26b72f4]
    beryl[0x40b589]
    ======= Memory map: ========
    00400000-0043a000 r-xp 00000000 08:03 239549 /usr/bin/beryl
    00539000-0053b000 rw-p 00039000 08:03 239549 /usr/bin/beryl
    0053b000-005a2000 rw-p 0053b000 00:00 0 [heap]
    40000000-40002000 rwxp 00000000 00:0d 5063 /dev/zero
    2aaaaaaab000-2aaaaab2b000 rw-p 2aaaaaaab000 00:00 0
    2aaaaab3d000-2aaaaab47000 r-xp 00000000 08:03 31978 /lib/libnss_files-2.5.so
    2aaaaab47000-2aaaaac46000 ---p 0000a000 08:03 31978 /lib/libnss_files-2.5.so
    2aaaaac46000-2aaaaac48000 rw-p 00009000 08:03 31978 /lib/libnss_files-2.5.so
    2aaaaac48000-2aaaaac55000 r-xp 00000000 08:03 371831 /usr/lib/libgcc_s.so.1
    2aaaaac55000-2aaaaad54000 ---p 0000d000 08:03 371831 /usr/lib/libgcc_s.so.1
    2aaaaad54000-2aaaaad55000 rw-p 0000c000 08:03 371831 /usr/lib/libgcc_s.so.1
    2aaaac000000-2aaaac021000 rw-p 2aaaac000000 00:00 0
    2aaaac021000-2aaab0000000 ---p 2aaaac021000 00:00 0
    2b4cc161f000-2b4cc1639000 r-xp 00000000 08:03 31969 /lib/ld-2.5.so
    2b4cc1639000-2b4cc163a000 rw-p 2b4cc1639000 00:00 0
    2b4cc1738000-2b4cc1739000 r--p 00019000 08:03 31969 /lib/ld-2.5.so
    2b4cc1739000-2b4cc173a000 rw-p 0001a000 08:03 31969 /lib/ld-2.5.so
    2b4cc173a000-2b4cc175d000 r-xp 00000000 08:03 377185 /usr/lib/libpng12.so.0.16.0
    2b4cc175d000-2b4cc185c000 ---p 00023000 08:03 377185 /usr/lib/libpng12.so.0.16.0
    2b4cc185c000-2b4cc185d000 rw-p 00022000 08:03 377185 /usr/lib/libpng12.so.0.16.0
    2b4cc185d000-2b4cc185e000 rw-p 2b4cc185d000 00:00 0
    2b4cc185e000-2b4cc1860000 r-xp 00000000 08:03 375929 /usr/lib/libXcomposite.so.1.0.0
    2b4cc1860000-2b4cc195f000 ---p 00002000 08:03 375929 /usr/lib/libXcomposite.so.1.0.0
    2b4cc195f000-2b4cc1960000 rw-p 00001000 08:03 375929 /usr/lib/libXcomposite.so.1.0.0
    2b4cc1960000-2b4cc1962000 r-xp 00000000 08:03 369850 /usr/lib/libXdamage.so.1.0.0
    2b4cc1962000-2b4cc1a61000 ---p 00002000 08:03 369850 /usr/lib/libXdamage.so.1.0.0
    2b4cc1a61000-2b4cc1a62000 rw-p 00001000 08:03 369850 /usr/lib/libXdamage.so.1.0.0
    2b4cc1a62000-2b4cc1a67000 r-xp 00000000 08:03 377221 /usr/lib/libXfixes.so.3.1.0
    2b4cc1a67000-2b4cc1b66000 ---p 00005000 08:03 377221 /usr/lib/libXfixes.so.3.1.0
    2b4cc1b66000-2b4cc1b67000 rw-p 00004000 08:03 377221 /usr/lib/libXfixes.so.3.1.0
    2b4cc1b67000-2b4cc1b68000 rw-p 2b4cc1b67000 00:00 0
    2b4cc1b68000-2b4cc1b6e000 r-xp 00000000 08:03 376842 /usr/lib/libXrandr.so.2.1.0
    2b4cc1b6e000-2b4cc1c6e000 ---p 00006000 08:03 376842 /usr/lib/libXrandr.so.2.1.0
    2b4cc1c6e000-2b4cc1c6f000 rw-p 00006000 08:03 376842 /usr/lib/libXrandr.so.2.1.0
    2b4cc1c6f000-2b4cc1c78000 r-xp 00000000 08:03 375484 /usr/lib/libSM.so.6.0.0
    2b4cc1c78000-2b4cc1d78000 ---p 00009000 08:03 375484 /usr/lib/libSM.so.6.0.0
    2b4cc1d78000-2b4cc1d79000 rw-p 00009000 08:03 375484 /usr/lib/libSM.so.6Aborted
    If I try to run it at bash via command line, I get an error of "no screens found."
    For reference, here is my xorg.conf.  I have adjusted it here and there in an attempt to get Beryl to work.
    # File generated by xorgconfig.
    # Copyright 2004 The X.Org Foundation
    # Permission is hereby granted, free of charge, to any person obtaining a
    # copy of this software and associated documentation files (the "Software"),
    # to deal in the Software without restriction, including without limitation
    # the rights to use, copy, modify, merge, publish, distribute, sublicense,
    # and/or sell copies of the Software, and to permit persons to whom the
    # Software is furnished to do so, subject to the following conditions:
    # The above copyright notice and this permission notice shall be included in
    # all copies or substantial portions of the Software.
    # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
    # The X.Org Foundation BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
    # WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF
    # OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
    # SOFTWARE.
    # Except as contained in this notice, the name of The X.Org Foundation shall
    # not be used in advertising or otherwise to promote the sale, use or other
    # dealings in this Software without prior written authorization from
    # The X.Org Foundation.
    # Refer to the xorg.conf(5) man page for details about the format of
    # this file.
    # Module section -- this section is used to specify
    # which dynamically loadable modules to load.
    Section "Module"
    # This loads the DBE extension module.
    Load "dbe" # Double buffer extension
    # This loads the miscellaneous extensions module, and disables
    # initialisation of the XFree86-DGA extension within that module.
    SubSection "extmod"
    Option "omit xfree86-dga" # don't initialise the DGA extension
    EndSubSection
    # This loads the font modules
    # Load "type1"
    # Load "speedo"
    Load "freetype"
    # Load "xtt"
    # This loads the GLX module
    Load "glx"
    # This loads the DRI module
    Load "dri"
    Load "GLCore"
    Load "record"
    Load "fbdevhw"
    EndSection
    # Files section. This allows default font and rgb paths to be set
    Section "Files"
    # The location of the RGB database. Note, this is the name of the
    # file minus the extension (like ".txt" or ".db"). There is normally
    # no need to change the default.
    # RgbPath "/usr/share/X11/rgb"
    # Multiple FontPath entries are allowed (which are concatenated together),
    # as well as specifying multiple comma-separated entries in one FontPath
    # command (or a combination of both methods)
    FontPath "/usr/share/fonts/misc"
    FontPath "/usr/share/fonts/75dpi"
    FontPath "/usr/share/fonts/100dpi"
    # FontPath "/usr/share/fonts/TTF"
    # FontPath "/usr/share/fonts/Type1"
    # FontPath "/usr/lib/X11/fonts/local/"
    # FontPath "/usr/lib/X11/fonts/misc/"
    # FontPath "/usr/lib/X11/fonts/75dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/100dpi/:unscaled"
    # FontPath "/usr/lib/X11/fonts/Speedo/"
    # FontPath "/usr/lib/X11/fonts/Type1/"
    # FontPath "/usr/lib/X11/fonts/TrueType/"
    # FontPath "/usr/lib/X11/fonts/freefont/"
    # FontPath "/usr/lib/X11/fonts/75dpi/"
    # FontPath "/usr/lib/X11/fonts/100dpi/"
    # The module search path. The default path is shown here.
    # ModulePath "/usr/lib/modules"
    EndSection
    # Server flags section.
    Section "ServerFlags"
    # Uncomment this to cause a core dump at the spot where a signal is
    # received. This may leave the console in an unusable state, but may
    # provide a better stack trace in the core dump to aid in debugging
    # Option "NoTrapSignals"
    # Uncomment this to disable the <Ctrl><Alt><Fn> VT switch sequence
    # (where n is 1 through 12). This allows clients to receive these key
    # events.
    # Option "DontVTSwitch"
    # Uncomment this to disable the <Ctrl><Alt><BS> server abort sequence
    # This allows clients to receive this key event.
    # Option "DontZap"
    # Uncomment this to disable the <Ctrl><Alt><KP_+>/<KP_-> mode switching
    # sequences. This allows clients to receive these key events.
    # Option "Dont Zoom"
    # Uncomment this to disable tuning with the xvidtune client. With
    # it the client can still run and fetch card and monitor attributes,
    # but it will not be allowed to change them. If it tries it will
    # receive a protocol error.
    # Option "DisableVidModeExtension"
    # Uncomment this to enable the use of a non-local xvidtune client.
    # Option "AllowNonLocalXvidtune"
    # Uncomment this to disable dynamically modifying the input device
    # (mouse and keyboard) settings.
    # Option "DisableModInDev"
    # Uncomment this to enable the use of a non-local client to
    # change the keyboard or mouse settings (currently only xset).
    # Option "AllowNonLocalModInDev"
    EndSection
    # Input devices
    # Core keyboard's InputDevice section
    Section "InputDevice"
    Identifier "Keyboard1"
    Driver "kbd"
    # For most OSs the protocol can be omitted (it defaults to "Standard").
    # When using XQUEUE (only for SVR3 and SVR4, but not Solaris),
    # uncomment the following line.
    # Option "Protocol" "Xqueue"
    Option "AutoRepeat" "500 30"
    # Specify which keyboard LEDs can be user-controlled (eg, with xset(1))
    # Option "Xleds" "1 2 3"
    # Option "LeftAlt" "Meta"
    # Option "RightAlt" "ModeShift"
    # To customise the XKB settings to suit your keyboard, modify the
    # lines below (which are the defaults). For example, for a non-U.S.
    # keyboard, you will probably want to use:
    # Option "XkbModel" "pc105"
    # If you have a US Microsoft Natural keyboard, you can use:
    # Option "XkbModel" "microsoft"
    # Then to change the language, change the Layout setting.
    # For example, a german layout can be obtained with:
    # Option "XkbLayout" "de"
    # or:
    # Option "XkbLayout" "de"
    # Option "XkbVariant" "nodeadkeys"
    # If you'd like to switch the positions of your capslock and
    # control keys, use:
    # Option "XkbOptions" "ctrl:swapcaps"
    # These are the default XKB settings for Xorg
    # Option "XkbRules" "xorg"
    # Option "XkbModel" "pc105"
    # Option "XkbLayout" "us"
    # Option "XkbVariant" ""
    # Option "XkbOptions" ""
    # Option "XkbDisable"
    Option "XkbRules" "xorg"
    Option "XkbModel" "pc104"
    Option "XkbLayout" "us"
    EndSection
    # Core Pointer's InputDevice section
    Section "InputDevice"
    Driver "synaptics"
    Identifier "Mouse[1]"
    Option "Device" "/dev/psaux"
    Option "Protocol" "auto-dev"
    Option "LeftEdge" "1700"
    Option "RightEdge" "5300"
    Option "TopEdge" "1700"
    Option "BottomEdge" "4200"
    Option "FingerLow" "25"
    Option "FingerHigh" "30"
    Option "MaxTapTime" "180"
    Option "MaxTapMove" "220"
    Option "VertScrollDelta" "100"
    Option "MinSpeed" "0.06"
    Option "MaxSpeed" "0.12"
    Option "AccelFactor" "0.0010"
    Option "SHMConfig" "on"
    # Option "Repeater" "/dev/ps2mouse"
    EndSection
    Section "InputDevice"
    # Identifier and driver
    Identifier "Mouse1"
    Driver "mouse"
    Option "Protocol" "Auto" # Auto detect
    Option "Device" "/dev/input/mice"
    # When using XQUEUE, comment out the above two lines, and uncomment
    # the following line.
    # Option "Protocol" "Xqueue"
    # Mouse-speed setting for PS/2 mouse.
    # Option "Resolution" "256"
    # Baudrate and SampleRate are only for some Logitech mice. In
    # almost every case these lines should be omitted.
    # Option "BaudRate" "9600"
    # Option "SampleRate" "150"
    # Mouse wheel mapping. Default is to map vertical wheel to buttons 4 & 5,
    # horizontal wheel to buttons 6 & 7. Change if your mouse has more than
    # 3 buttons and you need to map the wheel to different button ids to avoid
    # conflicts.
    Option "ZAxisMapping" "4 5 6 7"
    # Emulate3Buttons is an option for 2-button mice
    # Emulate3Timeout is the timeout in milliseconds (default is 50ms)
    # Option "Emulate3Buttons"
    # Option "Emulate3Timeout" "50"
    # ChordMiddle is an option for some 3-button Logitech mice
    # Option "ChordMiddle"
    EndSection
    # Other input device sections
    # this is optional and is required only if you
    # are using extended input devices. This is for example only. Refer
    # to the xorg.conf man page for a description of the options.
    # Section "InputDevice"
    # Identifier "Mouse2"
    # Driver "mouse"
    # Option "Protocol" "MouseMan"
    # Option "Device" "/dev/mouse2"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball"
    # Driver "magellan"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "spaceball2"
    # Driver "spaceorb"
    # Option "Device" "/dev/cua0"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen0"
    # Driver "microtouch"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "1412"
    # Option "MaxX" "15184"
    # Option "MinY" "15372"
    # Option "MaxY" "1230"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Section "InputDevice"
    # Identifier "touchscreen1"
    # Driver "elo2300"
    # Option "Device" "/dev/ttyS0"
    # Option "MinX" "231"
    # Option "MaxX" "3868"
    # Option "MinY" "3858"
    # Option "MaxY" "272"
    # Option "ScreenNumber" "0"
    # Option "ReportingMode" "Scaled"
    # Option "ButtonThreshold" "17"
    # Option "ButtonNumber" "1"
    # Option "SendCoreEvents"
    # EndSection
    # Monitor section
    # Any number of monitor sections may be present
    Section "Monitor"
    Identifier "monitor"
    # HorizSync is in kHz unless units are specified.
    # HorizSync may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    HorizSync 31.5 - 82.0
    # HorizSync 30-64 # multisync
    # HorizSync 31.5, 35.2 # multiple fixed sync frequencies
    # HorizSync 15-25, 30-50 # multiple ranges of sync frequencies
    # VertRefresh is in Hz unless units are specified.
    # VertRefresh may be a comma separated list of discrete values, or a
    # comma separated list of ranges of values.
    # NOTE: THE VALUES HERE ARE EXAMPLES ONLY. REFER TO YOUR MONITOR'S
    # USER MANUAL FOR THE CORRECT NUMBERS.
    VertRefresh 50-100
    EndSection
    # Graphics device section
    # Any number of graphics device sections may be present
    # Standard VGA Device:
    Section "Device"
    Identifier "Standard VGA"
    VendorName "Unknown"
    BoardName "Unknown"
    # The chipset line is optional in most cases. It can be used to override
    # the driver's chipset detection, and should not normally be specified.
    # Chipset "generic"
    # The Driver line must be present. When using run-time loadable driver
    # modules, this line instructs the server to load the specified driver
    # module. Even when not using loadable driver modules, this line
    # indicates which driver should interpret the information in this section.
    Driver "vga"
    # The BusID line is used to specify which of possibly multiple devices
    # this section is intended for. When this line isn't present, a device
    # section can only match up with the primary video device. For PCI
    # devices a line like the following could be used. This line should not
    # normally be included unless there is more than one video device
    # intalled.
    # BusID "PCI:0:10:0"
    # VideoRam 256
    # Clocks 25.2 28.3
    EndSection
    # Device configured by xorgconfig:
    Section "Device"
    Identifier "video card"
    Driver "nvidia"
    Option "AllowGLXWithComposite" "true"
    #VideoRam 262144
    # Insert Clocks lines here if appropriate
    EndSection
    # Screen sections
    # Any number of screen sections may be present. Each describes
    # the configuration of a single screen. A single specific screen section
    # may be specified from the X server command line with the "-screen"
    # option.
    Section "Screen"
    Identifier "Screen 1"
    Device "video card"
    Monitor "monitor"
    DefaultDepth 24
    Option "AllowGLXWithComposite" "True"
    Option "RenderAccel" "True"
    Option "AddARGBGLXVisuals" "True"
    # Subsection "Display"
    # Depth 8
    # Modes "1280x1024" "1024x768" "800x600" "640x480"
    # ViewPort 0 0
    # EndSubsection
    # Subsection "Display"
    # Depth 16
    # Modes "1280x1024" "1024x768" "800x600" "640x480"
    # ViewPort 0 0
    # EndSubsection
    # Subsection "Display"
    # Depth 24
    # Modes "1280x1024" "1024x768" "800x600" "640x480"
    # ViewPort 0 0
    # EndSubsection
    Subsection "Display"
    Depth 0
    Modes "1680x1050"
    ViewPort 0 0
    EndSubsection
    EndSection
    # ServerLayout sections.
    # Any number of ServerLayout sections may be present. Each describes
    # the way multiple screens are organised. A specific ServerLayout
    # section may be specified from the X server command line with the
    # "-layout" option. In the absence of this, the first section is used.
    # When now ServerLayout section is present, the first Screen section
    # is used alone.
    Section "ServerLayout"
    # The Identifier line must be present
    Identifier "Simple Layout"
    # Each Screen line specifies a Screen section name, and optionally
    # the relative position of other screens. The four names after
    # primary screen name are the screens to the top, bottom, left and right
    # of the primary screen. In this example, screen 2 is located to the
    # right of screen 1.
    Screen "Screen 1"
    # Each InputDevice line specifies an InputDevice section name and
    # optionally some options to specify the way the device is to be
    # used. Those options include "CorePointer", "CoreKeyboard" and
    # "SendCoreEvents".
    InputDevice "Mouse[1]" "CorePointer"
    InputDevice "Mouse1" "AlwaysCore"
    InputDevice "Keyboard1" "CoreKeyboard"
    EndSection
    # Section "DRI"
    # Mode 0666
    # EndSection
    Section "Extensions"
    Option "Composite" "Enable"
    Option "RENDER" "Enable"
    EndSection
    Any ideas?  I'd really like this window manager to work!
    Last edited by synthead (2007-05-24 09:59:08)

    Here is my configuration for nvidia in xorg.conf:
      Section "Device"
          Identifier     "Card0"
          Driver         "nvidia"
          VendorName     "All"
          BoardName      "All"
          Option         "NoLogo" "True"
          Option         "AddARGBGLXVisuals"
      EndSection
      Section "Screen"
          Identifier     "Screen0"
          Device         "Card0"
          Monitor        "Monitor0"
          Option         "AddARGBGLXVisuals"
    EndSection
      Section "Module"
          Load           "ddc"
          Load           "dbe"
          Load           "extmod"
          Load           "glx"
          Load           "bitmap"
          Load           "type1"
          Load           "freetype"
          Load           "record"
      EndSection
      Section "Extensions"
          Option         "Composite" "Enable"
      EndSection
    My beryl works perfectly well with this configuration.

  • Applet init problem

    Hi,
    I work on an tool which is implemented as a applet.
    When i would start the applet i became errors like following from the java console :
    java.lang.NoClassDefFoundError..............
    if i update my current html view with the reload button on my browser sometimes the applet started successful.
    has anyone a idea??
    here is my html file:
    <HTML>
    <BODY>
    <APPLET code="RequirementClient.class" width=99% height=99%></APPLET>
    </BODY>
    </HTML>
    here 's my file list on my web directory:
    http://localhost/RequirementTool/RequirementClient.html
    http://localhost/RequirementTool/RequirementCient.class
    http://localhost/RequirementTool/packages/
    and so on
    Thanks a lot:

    cross-post
    http://forum.java.sun.com/thread.jsp?forum=31&thread=481259&tstart=0&trange=15

Maybe you are looking for