DB_HEAP access method with db_hotbackup utility

I open a Db handle with DB_HEAP access method and do nothing about it . When first created , the db file is 8kb , but after excuting db_hotbackup utility the db file is 4kb. if I do db_hotbackup under the failover environment , BDB give me an error message :
     db_hotbackup: Backup Failed: BDB0075 DB_PAGE_NOTFOUND: Requested page not found
     db_hotbackup: BDB5043 HOT BACKUP FAILED!
Other access method is ok . I try to set the Db pagesize 8kb but still wrong .
I think a db file is bigger than a page size. So it's hard to understand.
Thanks

Sorry about mix the two problems. Let me make it clearly :
1 .Create an Environment contains an empty DB_HEAP database file with the code below.
     1.1 compile the code and mkdir "fileHome" for Environment direcotory,
     1.2 execute the program
2. execute { db_hotbackup -h ./fileHome -b ./failover } . and in failover directory the database file will  become smaller than it in Environment direcotry.
3. chang code { const char* fileHome = "fileHome"; } to { const char* fileHome = "failover"; }
4. compile the changed code and execute again.( for creating region files in the failover directory)
5. execute { db_hotbackup -h ./failover -b ./failover_back } after this we can see the wrong message :
           db_hotbackup: Backup Failed: BDB0075 DB_PAGE_NOTFOUND: Requested page not found
           db_hotbackup: BDB5043 HOT BACKUP FAILED!
The problem I said on the previous time is I try to insert some record to the database but failed. I just wonder if this BDB version is not supportint DB_HEAP access method.
The code is :
#include<iostream>
#include<cstring>
#include<cstdlib>
#include"db_cxx.h"
int main()
  u_int32_t env_flags = DB_CREATE |
       DB_INIT_LOCK |
       DB_INIT_LOG |
       DB_INIT_TXN |
       DB_INIT_MPOOL;
  u_int32_t db_flags = DB_CREATE | DB_AUTO_COMMIT;
  const char* fileHome = "fileHome";
  const char* filename = "simpletxn.db";
  Db *dbp = NULL;
  DbEnv myEnv(0);
  try{
  myEnv.open(fileHome,env_flags,0);
  dbp = new Db(&myEnv,0);
  dbp->set_pagesize(8 * 1024);
  dbp->open(0,
   filename,
   NULL,
   DB_HEAP,
   db_flags,
   0);
  }catch(DbException& e){
  std::cerr<<"error when opening environment and database: "<<filename<<","<<fileHome<<std::endl;
  std::cerr<<e.what()<<std::endl;
  try{
  if(dbp != NULL)
  dbp->close(0);
  myEnv.close(0);
  }catch(DbException& e){
  std::cerr<<"error when closing environment and database: "<<filename<<","<<fileHome<<std::endl;
  std::cerr<<e.what()<<std::endl;
  return 0;
Thanks !!!

Similar Messages

  • Error accessing method in 3rd party dll

    already asked for help a few weeks ago but no one answered and i still wasn't able to figure out what the problem...
    i have a 3rd party dll and im trying to access some methods (USING JNI)- i have no problem accessing methods with no parameters and they work fine but a method with parameters just wwont work.
    i guess that its something with my syntax - probably incorrect data type when converting from java type to native type...
    i dont have any previous expirience with c so help would be appriciated...
    heres my java code:
    package pavel2.javay;
    class Test {
        native String VersionGet();
        native String loadDll();
        native String LogInMT4(int account,String  pass,String server,String a,String v,String c,String d);
        static {
            System.loadLibrary("pavel2");
        public static void main(String args[]) {
            Test t = new Test();
            System.out.println(t.loadDll());
            System.out.println(t.LogInMT4(230622,"qd1bvvs","Orion-DEMO","","","",""));
    }and the dll wrapper:
    #include <windows.h>
    #include <C:\\Program Files\\Java\\jdk1.6.0_10\\include\\jni.h>
    #include <C:\\Program Files\\Java\\jdk1.6.0_10\\include\\win32\\jni_md.h>
    typedef char*   (*LogIn_MT4)( const int login, const char *password, const char *server, const char *proxyserver,
                   const char *proxytype, const char *proxylogin, const char *proxypassword);
    HINSTANCE hOle2Dll;
    JNIEXPORT jstring JNICALL Java_pavel2_javay_Test_loadDll(JNIEnv * env, jobject jobj){
         hOle2Dll = LoadLibrary(TEXT("D:\\pavel2\\tzmt4api.dll"));
         return  (*env)->NewStringUTF(env, "tzmt4api.dll loaded!!");
         /*if (OleInitialize(NULL) == S_OK)
              if ( hOle2Dll >= 32 )
                   //FreeLibrary ( hOle2Dll ) ;
    JNIEXPORT jstring JNICALL Java_pavel2_javay_Test_LogInMT4(JNIEnv * env, jobject jobj,jint login, jstring password, jstring server,jstring proxyserver,jstring proxytype,jstring proxylogin,jstring proxypassword){
                   LogIn_MT4 fnc ;
                   fnc = (LogIn_MT4)GetProcAddress ( hOle2Dll , "LogIn_MT4" ) ;
                   if ( fnc == NULL )
                        MessageBox(NULL, TEXT("Error loading Method"), TEXT("Error"), MB_OK);
                   else
                   const char *pass = (*env)->GetStringUTFChars(env, password, NULL);
                   const char *ser = (*env)->GetStringUTFChars(env, server, NULL);
                   const char *proxyserv = (*env)->GetStringUTFChars(env, proxyserver, NULL);
                   const char *proxyt = (*env)->GetStringUTFChars(env, proxytype, NULL);
                   const char *proxylog = (*env)->GetStringUTFChars(env, proxylogin, NULL);
                   const char *proxypass = (*env)->GetStringUTFChars(env, proxypassword, NULL);
                   int a=fnc(login, pass, ser, proxyserv,proxyt,proxylog,proxypass);
                   (*env)->ReleaseStringUTFChars(env, password, pass);
                   (*env)->ReleaseStringUTFChars(env, server, ser);
                   (*env)->ReleaseStringUTFChars(env, proxyserver, proxyserv);
                   (*env)->ReleaseStringUTFChars(env, proxytype, proxyt);
                   (*env)->ReleaseStringUTFChars(env, proxylogin, proxylog);
                   (*env)->ReleaseStringUTFChars(env, proxypassword, proxypass);
                   //return  (*env)->NewStringUTF(env, empty);
                   return  (*env)->NewStringUTF(env, "logged");
                             //int c = fnc(login, *password, *server, "", "", "", "");
    BOOL APIENTRY DllMain( HMODULE hModule,
                           DWORD  ul_reason_for_call,
                           LPVOID lpReserved
         switch (ul_reason_for_call)
         case DLL_PROCESS_ATTACH:
         case DLL_THREAD_ATTACH:
         case DLL_THREAD_DETACH:
         case DLL_PROCESS_DETACH:
              //todo: unregister class here
              break;
         return TRUE;
    }this is the output:
    tzmt4api.dll loaded!!
    # An unexpected error has been detected by Java Runtime Environment:
    # EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0xcccccccc, pid=3792, tid=3824
    # Java VM: Java HotSpot(TM) Client VM (11.0-b15 mixed mode, sharing windows-x86)
    # Problematic frame:
    # C 0xcccccccc
    # An error report file with more information is saved as:
    # C:\Program Files\TradeZone\TZMT4APInew\Work\hs_err_pid3792.log
    # If you would like to submit a bug report, please visit:
    # http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    Process finished with exit code 1
    p.s - it looks like the login method works but when returning to java the VM crashes
    can anyone help me?

    jschell - tried this already and got the same ..
    ejp - i cant do this bucause i dont have a .lib and this proccess can run only on windows unfortunately...
    my problem is that i dont know the how to create the correct type for the method:
    this is the signature:
    typedef int  (*LogIn_MT4)( const int login, const char *password, const char *server, const char *proxyserver,
                   const char *proxytype, const char *proxylogin, const char *proxypassword);how do i create in c this var types?
    int a=fnc(1531, "asas", "asd", "","","","");how do i create
    const char *xxx type? and its okay for the int just to write a number or i also need to declare it?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Time Capsule 4 gen. with iMac OS X Lion   3 Windows PC (XP OS, Vista OS, Seven OS) cable modem with TC as Wi-Fi. Time Machine on iMac found TC for backup easily. Have Wi-Fi access on PC XP with Airport utility but cannot create TC.

    Installed today Time Capsule 4 gen. with iMac OS X Lion. I also have  3 Windows PC (XP OS, Vista OS, Seven OS). Internet Access is cable modem with TC as Wi-Fi. Time Machine on iMac found TC for backup easily. Have Wi-Fi access on PC XP with Airport utility but cannot create TC. Does the Airport utility under Windows is way to access backup capabilities with TC ?

    The TC is really just an external networked hard disk plus router.. you can access the hard disk and place files on it from any computer. You can backup any computer to the TC but it will have to use a backup software in windows.. there are literally thousands available. The built in msbackup is horrible.. but you can download lots of different software and buy then online for not a lot. Macrium Reflect has a free disk image backup, and when you pay for it includes incremental. I think disk images are well worth it, as they recover much better.. and their is a proper method of recovery using a boot cd.
    BTW the TC space is not endless. And it is designed to hold a large number of incremental backups.. so anything you do in backing up several machines will make the number of backups limited. Remember you can also use a usb hard disk plugged in as a Network accessible disk. But it has to be formatted HFS+ or Fat32.. the later being highly undesirable.

  • Cannot access airport express with airport utility...

    I've been using my old Airport Express, since it has a modem, to access my dialup service , I need to change the access number but Airport Utility reports that it can't access the AE with this version...(It sees it fine)...what do I need to do to change the number?  I've tried several different older versions of AU and get the same result....

    Try the direct link.
    http://support.apple.com/downloads/DL1482/en_US/AirPortUtility56.dmg
    I have been having some issues with the apple support and discussions area with my ISP.. something seems to be not compatible.
    There is a free method .. since you need to pay for Pacifist.. there is a simpler free utility but it does the job .. unpkg
    This is my version of Tesserax's which is of course just fine as well.
    How to load 5.6 into ML.
    1. Download 5.6 for Lion.
    http://support.apple.com/kb/DL1482
    Click to open the dmg but do not attempt to install the pkg.. it won't work anyway.
    Leave the package open on the desktop so you can see the file. AirportUtility56.pkg
    2. Download and install unpkg.
    http://www.timdoug.com/unpkg/
    Run unpkg on the desktop.. If your Mac refuses to run the software, because it wasn’t downloaded from the Apple store, go to security in preferences and allow other software to work.. this is limitation of trade methinks. You can set back later if you like.
    Now drag the AirPortUtility56.pkg file over to unpkg.. and it will create a new directory of the same name on the desktop.. in finder, open the new directory, drill down.. applications, utilities .. there lo and behold is Airport utility 5.6 .. drag it to your main utilities directory or just run it from current location.
    You cannot uninstall version 6 (now 6.3 if you updated) so don't try.. and you cannot or should not run them both at the same time.. although I have had no problems when doing so.
    For screen shots see this post.
    https://discussions.apple.com/thread/4668746?tstart=0

  • Public methods with package-only access?!

    Hello,
    I've just encountered the following problem:
    I was trying to invoke a method from the interface java.util.List via reflection on an instanceo obtained via java.util.Arrays.asList(Object[] array).
    Although this method is public (since is is declared in a public interface), the invocation failed with an IllegalAccessException.
    I guess the reckoning behind this is that the entire class has package protected access, thus you may not access any member reflectively outside its package.
    Does this really make sense? Is there a way to circumvent this behaviour?
    Any thoughts appreciated!

    I doubt your assumption (package protected) because
    asList simple returns an ArrayList. And if in an
    interface a method is declared you cannot reduce it's
    visibilty in an implementing class.Yes, the methods are all declared public, but the entire class (java.util.Arrays.ArrayList) is package-protected.
    But still, it's strange: you can obtein the method using, for instance, Arrays.asList(new Object[]{"hallo"})getClass().getMethod("size", null), but you cannot invoke it! Ironically, the error message of the IllegalAccessException says "cannot access member with modifiers public"...
    >
    But you can set the method accesible for reflection
    calls through:
    Method.setAccessible(true)
    Ah, thanks, now it works!
    But isn't that kinda dirty? If there was a Security Manager present, it would immediately fail, wouldn't it?
    I'd still like to understand why you cannot simply invoke a public method of a package-protected class!

  • Mac-formatted external HD only access with Disk Utility

    Hello!
    I read a lot about problems with Mavericks and WD harddrives. But i did not found anything about my problem:
    - bought a new HD and formatted with Disk Utility
    - copied all important data to it, all fine
    - next day for my surprise i couldn´t see this HD in Finder
    - looked in Disk Utility and the HD is there
    - if i click on the drive and "open" then i can see it in finder and have access to all data, but if i click on "reveal in finder" i can´t see it!
    - i started CarbonCopyCloner and did a complete backup to a new second backup HD, CCC recognized the HD and everything worked fine
    - now the backup HD has the same problem, i can see it only in Disk Utility
    - it seems that the error moved from one drive to the other, so my guess is it has nothing to do with brands or a hardware failure
    - i´m searching now for hours but i don´t find a solution
    - i now have one (very important) data HD and a backup HD as a clone with the same problem
    - all other HD´s i have are showing correctly in finder!
    Does anyone have any ideas?

    After hours of searching this is the solution:
    Open Terminal, then
    defaults write com.apple.finder AppleShowAllFiles TRUE
    killall Finder
    sudo chflags nohidden /Volumes/"Name Of Drive"
    killall Finder
    defaults write com.apple.finder AppleShowAllFiles FALSE
    killall Finder
    This thread helped me:
    http://forums.macrumors.com/showthread.php?t=209905&highlight=drive&page=4

  • How can I access CAPI 2.0 methods with LabView ?

    I must use CAPI 2.0 (common ISDN interface) method with LabView (graphical interface), the work is to command a ISDN S/T card on PXI Bus, and this card support CAPI 2.0.

    This depends upon what type of interface you have to the ISDN. I assume you have either Basic Rate Interface (BRI) or Primary Rate Interface (PRI). Do you have a DLL to control it? If so, you can use the "Call Library Function Node" VI to access this DLL and just make calls to it. If you have an ActiveX Server, you can use the LabVIEW ActiveX Automation VIs to access it.
    J.R. Allen

  • Access control's method with MVVM

    Let's say I want to access an element control's method with MVVM.
    My idea is to call these methods through an event fired from ViewModel, maybe using
    DependencyProperty and Blend interactivy.
    Some suggestions?

    I don't really get what you're trying to achieve. Could you be more explicit?
    If you need to name a control you're on the wrong track with MVVM! Generally you should really
    not call a control's methods from a ViewModel, otherwise that'll make it impossible to run unit tests on that class.

  • Issues with access method G.

    hello,
    i am using access method G,its working fine users are able to get the print outs , but the issue is in the windows selection box only ALL is highligted and they are not able to select the page numbers its disabled.
    and one  more issue is we have 2 printers one head office and site office.In head office printer they are able to take the print out along with their company logo but in the site office with same configuration and same kind printer logo is not being displayed .
    kindly suggest me for these issues.
    thanks in advance.
    regards,
    Divya

    Usually this means, that some necessary controls are not properly registered in the registry and hence can't be found. You may solve that by removing the SAPGUI from the PC completely, booting the machine and reinstall the GUI.
    Markus

  • Duplex printing problem with access method G

    Dear all,
    We have Canon GP300-405 PS Ver 1.0 printer.
    Previously, with access method F: Printing on front end computer, we were able to do duplex printing.
    Now we have changed the the access method to G: Front End Printing with Control Tech and we are not able to do duplex printing
    We have ECC 6.0 / AIX / Oracle
    I installed SAPGUI patch 17 but still I am not able to do duplex printing
    Any suggestion?
    Rgds..../

    Sandy,
    This note will answer your query
    Note 1149136 - Options for front-end printing (access method G)
    Character string: "DcMode" [printer-specific]
    Default: 0x0800
    Other values: (Nearly) all, see below
    Effect:
    This parameter determines WHEN to send the control of
    a) orientation portrait/landscape
    b) paper size
    c) duplex
    d) tray
    You need to set above mentioned parameters.
    Regards,

  • Can Time Capsule hard drive be accessed with Disk Utility? I'm having issues...

    How does one mount , inspect , verify , and possibly repair a Time Capsule hard drive  with Disk Utility ?
    My 500Gb 1st gen Time Capsule  ( used wireless with Airport)  has quit backing up new data . ( iMac Core2Duo, Snow Leopard) .  TC  says it needs 238 Gb of available space, but only has 35 Gb available. So it quit doing new  incremental backup altogether. It's almost like it wants to start over.
    Airport connection seems good.  Time Capsule seems healthy enough ( for being 3.5 years old) .  I really dont want to lose the data on the existing backup.
    What is the nature of this glitch ?

    I'm sorry , LaP , but " Time Capsule become too full " is not the cause of my problem .
    In fact, I just got done pruning the iMac system hard drive a little  to free up some  10 Gb of new space , yet created only maybe 1-2 Gb of new data to archive. The TC had been doing regular daily backups without issue and Time Machine  was showing me stuff from about ten days back.
    The TC informed me it needed 235 Gb of space but only had 34 Gb available. That 235 Gb needed is totally in error.  My problem more resembles corrupt hard disk directories . Maybe Permissions ?  which is why I asked about using Disk Utility.
    Yes, I do need a newer larger TC, but pigs don't fly and money does not grow on trees to make tha happen. The backup I have now is fine and should work if I need to restore anything in the forseeable. New data will not be archived, alas.

  • Front - end print with new access method G - having issues for some users

    Hi Gurus,
    Recently we have implemented the new access method G for front-end printing. it is working fine for 90% users in our company. but some users having problems in printing to WINDEFAULT using this new method.
    Here is the SAP GUI trace file for the error that they are getting.
    (Error)(25.09.09 15:42:36.444):    CALL METHOD "CreateControl"[DispID=5] OF [#1/0x0AE31790/1/{83658045-6571-3232-7082-797884697868}]
                        #0: LONG "101"
                        #1: STRING "SAPFPRINT.sapfprintCtrl.1"
                        #2: LONG "0"
                        #3: LONG "10"
    IDispatch::Invoke raised exceptionException occurred
    (Error)                       :   
    (Error)                       :    ****************************ERROR OCCURED IN MODULE: [{83658045-6571-3232-7082-797884697868}]******************************************************************************************************
    (Error)                       :    PROGRAM_ID                                 |MODULE_NAME              |METHOD_NAME       |ERROR DESCRIPTION         |VERSION                    |GUI VERSION               |MODULE_PATH              |
    (Error)                       :    *****************************************************************************************************************************************************************************************************
    (Error)                       :    {83658045-6571-3232-7082-797884697868}     |Class name not found     |CreateControl     |Create control failed     |Version info not found     |Gui Version not found     |Module doesnot exist     |
    (Error)                       :    *****************************************************************************************************************************************************************************************************
    (Error)                       :   
    (Error)                       :    Exception fire by :SAP Frontend Server
    (Error)                       :    Exception info:Create control failed
    (Error)                       :    Exception code:65535
    Did any one face this error? what could be the resolution?
    We are already on SAP GUI 710 patch level 11
    DISP+Work  : 229
    Appreciate your answers
    Thanks,
    Srini

    Usually this means, that some necessary controls are not properly registered in the registry and hence can't be found. You may solve that by removing the SAPGUI from the PC completely, booting the machine and reinstall the GUI.
    Markus

  • Intermittent access issue with Oracle Applications EBS R12.1.3 URL

    We are facing intermittent access issue with EBS R12.1.3 URL .There are no errors generated in the access log and the IP from which we are using to access is the URL does not appear in the access  log either.
    1. No of concurrent users : 10 at a time
    2. no. of JVM Processes for OACORE : 1
      <oacore_nprocs oa_var="s_oacore_nprocs">1</oacore_nprocs>   3. Heap size settings:
              <oacore_jvm_start_options oa_var="s_oacore_jvm_start_options">-server -verbose:gc -Xmx1024M -Xms128M -XX:MaxPermSize=160M -XX:NewRatio=2  -XX:+PrintGCTimeStamps -XX:+UseTLAB -XX:+UseParallelGC  -XX:ParallelGCThreads=2  -Dcom.sun.management.jmxremote -Djava.security.policy=$ORACLE_HOME/j2ee/oacore/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false -Doracle.security.jazn.config=/u01/ebsstack/NFR2DW/inst/apps/NFR2DW_cinvlapp3036/ora/10.1.3/j2ee/oacore/config/jazn.xml</oacore_jvm_start_options>
              <oacore_jvm_stop_options oa_var="s_oacore_jvm_stop_options">-server -verbose:gc -Xmx1024M -Xms128M -XX:MaxPermSize=160M -XX:NewRatio=2  -XX:+PrintGCTimeStamps -XX:+UseTLAB -XX:+UseParallelGC  -XX:ParallelGCThreads=2  -Djava.security.policy=$ORACLE_HOME/j2ee/oacore/config/java2.policy -Djava.awt.headless=true -Dhttp.webdir.enable=false</oacore_jvm_stop_options>
      <oacore_nprocs oa_var="s_oacore_nprocs">1</oacore_nprocs>

    15/01/09 02:25:44.713 html: Broken pipe
    15/01/09 02:25:44.724 html: Broken pipe
    15/01/09 02:25:44.725 html: Broken pipe
    15/01/09 02:25:44.725 html: Broken pipe
    15/01/09 02:25:44.725 html: Broken pipe
    15/01/09 02:25:44.725 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:44.696 html: Broken pipe
    15/01/09 02:25:44.725 html: Broken pipe
    15/01/09 02:25:44.725 html: Broken pipe
    15/01/09 02:25:44.725 html: Broken pipe
    15/01/09 02:25:44.726 html: Broken pipe
    15/01/09 02:25:44.726 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:44.956 html: Broken pipe
    15/01/09 02:25:44.956 html: Broken pipe
    15/01/09 02:25:44.956 html: Broken pipe
    15/01/09 02:25:44.956 html: Broken pipe
    15/01/09 02:25:44.956 html: Broken pipe
    15/01/09 02:25:44.956 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
            at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
            at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.9 html: Broken pipe
    15/01/09 02:25:45.10 html: Broken pipe
    15/01/09 02:25:45.10 html: Broken pipe
    15/01/09 02:25:45.10 html: Broken pipe
    15/01/09 02:25:45.10 html: Broken pipe
    15/01/09 02:25:45.10 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.64 html: Broken pipe
    15/01/09 02:25:45.64 html: Broken pipe
    15/01/09 02:25:45.64 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.512 html: Broken pipe
    15/01/09 02:25:45.512 html: Broken pipe
    15/01/09 02:25:45.513 html: Broken pipe
    15/01/09 02:25:45.513 html: Broken pipe
    15/01/09 02:25:45.513 html: Broken pipe
    15/01/09 02:25:45.513 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
            at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
            at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.549 html: Broken pipe
    15/01/09 02:25:45.549 html: Broken pipe
    15/01/09 02:25:45.549 html: Broken pipe
    15/01/09 02:25:45.549 html: Broken pipe
    15/01/09 02:25:45.549 html: Broken pipe
    15/01/09 02:25:45.550 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.604 html: Broken pipe
    15/01/09 02:25:45.605 html: Broken pipe
    15/01/09 02:25:45.605 html: Broken pipe
    15/01/09 02:25:45.605 html: Broken pipe
    15/01/09 02:25:45.605 html: Broken pipe
    15/01/09 02:25:45.605 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.609 html: Broken pipe
    15/01/09 02:25:45.609 html: Broken pipe
    15/01/09 02:25:45.609 html: Broken pipe
    15/01/09 02:25:45.609 html: Broken pipe
    15/01/09 02:25:45.609 html: Broken pipe
    15/01/09 02:25:45.609 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.611 html: Broken pipe
    15/01/09 02:25:45.611 html: Broken pipe
    15/01/09 02:25:45.611 html: Broken pipe
    15/01/09 02:25:45.611 html: Broken pipe
    15/01/09 02:25:45.612 html: Broken pipe
    15/01/09 02:25:45.612 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
            at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
            at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.613 html: Broken pipe
    15/01/09 02:25:45.613 html: Broken pipe
    15/01/09 02:25:45.613 html: Broken pipe
    15/01/09 02:25:45.613 html: Broken pipe
    15/01/09 02:25:45.613 html: Broken pipe
    15/01/09 02:25:45.614 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
            at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
            at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.616 html: Broken pipe
    15/01/09 02:25:45.616 html: Broken pipe
    15/01/09 02:25:45.617 html: Broken pipe
    15/01/09 02:25:45.617 html: Broken pipe
    15/01/09 02:25:45.617 html: Broken pipe
    15/01/09 02:25:45.617 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.635 html: Broken pipe
    15/01/09 02:25:45.635 html: Broken pipe
    15/01/09 02:25:45.635 html: Broken pipe
    15/01/09 02:25:45.635 html: Broken pipe
    15/01/09 02:25:45.635 html: Broken pipe
    15/01/09 02:25:45.635 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.638 html: Broken pipe
    15/01/09 02:25:45.638 html: Broken pipe
    15/01/09 02:25:45.638 html: Broken pipe
    15/01/09 02:25:45.639 html: Broken pipe
    15/01/09 02:25:45.639 html: Broken pipe
    15/01/09 02:25:45.639 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
            at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
            at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.650 html: Broken pipe
    15/01/09 02:25:45.650 html: Broken pipe
    15/01/09 02:25:45.650 html: Broken pipe
    15/01/09 02:25:45.651 html: Broken pipe
    15/01/09 02:25:45.651 html: Broken pipe
    15/01/09 02:25:45.651 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.658 html: Broken pipe
    15/01/09 02:25:45.658 html: Broken pipe
    15/01/09 02:25:45.658 html: Broken pipe
    15/01/09 02:25:45.658 html: Broken pipe
    15/01/09 02:25:45.658 html: Broken pipe
    15/01/09 02:25:45.659 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.674 html: Broken pipe
    15/01/09 02:25:45.675 html: Broken pipe
    15/01/09 02:25:45.675 html: Broken pipe
    15/01/09 02:25:45.675 html: Broken pipe
    15/01/09 02:25:45.675 html: Broken pipe
    15/01/09 02:25:45.675 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:25:45.678 html: Broken pipe
    15/01/09 02:25:45.678 html: Broken pipe
    15/01/09 02:25:45.678 html: Broken pipe
    15/01/09 02:25:45.678 html: Broken pipe
    15/01/09 02:25:45.678 html: Broken pipe
    15/01/09 02:25:45.678 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)
            at java.nio.channels.Channels.write(Channels.java:60)
            at java.nio.channels.Channels.access$000(Channels.java:47)
            at java.nio.channels.Channels$1.write(Channels.java:134)
            at com.evermind.server.http.AJPOutputStream.endRequest(AJPOutputStream.java:117)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:317)
            at com.evermind.server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:234)
            at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:29)
            at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:879)
            at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:28:40.342 html: 10.1.3.4.0 Stopped
    15/01/09 02:29:23.990 10.1.3.4.0 Started
    15/01/09 02:29:28.464 html: 10.1.3.4.0 Started
    15/01/09 02:29:33.291 html: oracle.apps.fnd.security.LeakDetectionFilter.initialized:1420788573291
    15/01/09 02:29:33.297 html: LeakSetting:
            global:true,session:false,aggressive:false,stderr:false,appslog:false,corelog:false
            ignoring:null
    15/01/09 02:31:29.20 html: chain failed
    com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpIOException: Broken pipe
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.EvermindServletOutputStream.write(EvermindServletOutputStream.java:210)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpApplication.include(HttpApplication.java:4198)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:54)
            at oracle.apps.jtf.base.session.ReleaseResFilter.doFilter(ReleaseResFilter.java:26)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.EvermindFilterChain.doFilter(EvermindFilterChain.java:15)
            at oracle.apps.fnd.security.AppsServletFilter.doFilter(AppsServletFilter.java:318)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.FileRequestDispatcher.handleWithFilter(FileRequestDispatcher.java:133)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.FileRequestDispatcher.unprivileged_forwardInternal(FileRequestDispatcher.java:283)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.FileRequestDispatcher.access$100(FileRequestDispatcher.java:29)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.FileRequestDispatcher$2.oc4jRun(FileRequestDispatcher.java:254)
            at oracle.oc4j.security.OC4JSecurity.doPrivileged(OC4JSecurity.java:284)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.FileRequestDispatcher.forwardInternal(FileRequestDispatcher.java:259)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:868)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:453)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:313)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].server.http.AJPRequestHandler.run(AJPRequestHandler.java:199)
            at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
            at com.evermind[Oracle Containers for J2EE 10g (10.1.3.4.0) ].util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
            at java.lang.Thread.run(Thread.java:619)
    15/01/09 02:31:29.20 html: Servlet error
    java.io.IOException: Broken pipe
            at sun.nio.ch.FileDispatcher.write0(Native Method)
            at sun.nio.ch.SocketDispatcher.write(SocketDispatcher.java:29)
            at sun.nio.ch.IOUtil.writeFromNativeBuffer(IOUtil.java:104)
            at sun.nio.ch.IOUtil.write(IOUtil.java:75)
            at sun.nio.ch.SocketChannelImpl.write(SocketChannelImpl.java:334)

  • Fail to access CRX with JcrUtils.getRepository

    I just started with CQ5/CRX/JCR, so I beg your pardon if asking silly questions.
    I'm running a CQ5 Standalone Server (CQ_5_5_Quickstart.jar) on my Windows 7 and am fine with accessing it with my browser and the URL "http://localhost:4502".
    Now I try to access it via a Java-client using the JcrUtils.getRepository-method, as described in http://dev.day.com/docs/en/crx/current/developing/accessing_the_crx.html.
    But this fails with message:
    javax.jcr.RepositoryException: Unable to access a repository with the following settings:
        org.apache.jackrabbit.repository.uri: http://localhost:4502/crx/server
    The following RepositoryFactory classes were consulted:
        org.apache.jackrabbit.commons.JndiRepositoryFactory: declined
    Perhaps the repository you are trying to access is not available at the moment.
    at org.apache.jackrabbit.commons.JcrUtils.getRepository(JcrUtils.java:199)
    at org.apache.jackrabbit.commons.JcrUtils.getRepository(JcrUtils.java:239)
    at AccessJCR.connectJcrUtils2(AccessJCR.java:32)
    at AccessJCR.main(AccessJCR.java:16)
    I'm not sure about the used URL; I just took it from cited webpage. There is said: "The default server's endpoint URL is http://host:port/crx/server. Make sure you adapt the client-side connection URL in case of customized server installation.".
    I didn't customize anything so this should be ok. I will attach the complete Code, hopefully you can give some hints.
    Regards,
    Ulrich
    [code]
    import java.util.*;
    import javax.jcr.*;
    public class AccessJCR {
          public AccessJCR() {}
          public static void main(String[] args) {
               AccessJCR ajcr = new AccessJCR();
               try {
                    ajcr.connect();
               catch (Exception ce) {
                    ce.printStackTrace();
          private void connect() throws Exception {
               //Create a connection to the Day CQ repository running on local host
               Repository repository = org.apache.jackrabbit.commons.JcrUtils.getRepository("http://localhost:4502/crx/server");
    [/code]

    Got it to run at last. Had to add a lot of jar files to the classpath of my client. Up to now the classpath is longer than my program. I will attach the complete list here. I'm still wondering whether there is a complete package or at least a description to setup for JcrUtils. I think I simply didn't find one.
    But anyway thank you very much for the hint. It helped a lot.
    Ulrich
    jcr-2.0.jar <-- http://www.day.com/day/en/products/jcr/jsr-283.html
    jackrabbit-jcr-commons-2.2.0.jar <-- http://jarvana.com/jarvana/archive-details/org/apache/jackrabbit/jackrabbit-jcr-commons/2. 2.0/jackrabbit-jcr-commons-2.2.0.jar
    jackrabbit-spi-commons-2.2.8.jar <-- http://repo1.maven.org/maven2/2.2.8/jackrabbit-spi-commons-2.2.8.jar (Maven Repository)
    jackrabbit-jcr2dav-2.5.1.jar <-- http://mvnrepository.com/artifact/org.apache.jackrabbit/jackrabbit-jcr2dav/2.5.1 (Maven Repository)
    jackrabbit-spi-2.2.8.jar <-- http://repo1.maven.org/maven2/2.2.8/jackrabbit-spi-2.2.8.jar (Maven Repository)
    jackrabbit-jcr2spi-2.2.8.jar <-- http://repo1.maven.org/maven2/2.2.8/jackrabbit-jcr2spi-2.2.8.jar (Maven Repository)
    jackrabbit-spi2jcr-2.5.1.jar <-- http://mvnrepository.com/artifact/org.apache.jackrabbit/jackrabbit-spi2jcr/2.5.1 (Maven Repository)
    jackrabbit-spi2dav-2.5.1.jar <-- http://mvnrepository.com/artifact/org.apache.jackrabbit/jackrabbit-spi2dav (Maven Repository)
    jackrabbit-spi2dav-2.5.1.jar <-- http://mvnrepository.com/artifact/org.apache.jackrabbit/jackrabbit-spi2dav (Maven Repository)
    jackrabbit-webdav-2.2.8.jar <-- http://repo1.maven.org/maven2/2.2.8/jackrabbit-webdav-2.2.8.jar (Maven Repository)
    jackrabbit-jcr-commons-1.5.5.jar <-- http://mvnrepository.com/artifact/org.apache.jackrabbit/jackrabbit-jcr-commons/1.5.5 (Maven Repository)
    slf4j-api-1.7.1.jar <-- http://www.slf4j.org/download.html-slf4j-1.7.1.zip (SLF4J Project)
    slf4j-nop-1.7.1.jar <-- http://www.slf4j.org/download.html-slf4j-1.7.1.zip (SLF4J Project)
    commons-httpclient-3.1.jar <-- http://mvnrepository.com/artifact/commons-httpclient/commons-httpclient/3.1
    commons-codec-1.7.jar <-- http://commons.apache.org/codec/download_codec.cgi
    commons-logging-1.1.1.jar <-- http://commons.apache.org/logging/download_logging.cgi

  • Spring java.lang.IllegalAccessError: tried to access method org.springframe

    Hi
    I am looking to use OEPE to allow me to adapt a RAD approach to the web part of our applications while keeping our CI builds consistant.
    We use WebLogic 10.3 with struts 1.2.9, Spring 2.5, Hibernate 3.X and maven 2.
    I am using Eclipse 3.5 SR1 with OEPE version Oracle Enterprise Pack for Eclipse 11.1.1.3.0
    I created a test Dynamic Web Application using maven 2 and this works OK with a test WebLogic Server 10.3. I then deleted this from the WebLogic Server so I could try using it with OEPE.
    I deploy this Dynamic Web Application using OEPE (via autogenerated_ear_) to WebLogic Server
    My initial problems were classpath errors where it seems that my Maven dependent jars were NOT picked up by my web application. To overcome this I copied the maven dependencies to <my web app>\src\main\webapp\WEB-INF\lib
    I could then use my initial struts action but failed with:
    Root cause of ServletException.
    java.lang.IllegalAccessError: tried to access method org.springframework.web.struts.ActionSupport.getWebApplicationContext()Lorg/springframework/web/context/WebApplicationContext; from class com.myco.springtxn.web.struts.SaveNewCakeAction_beaVersion0_7
         at com.myco.springtxn.web.struts.SaveNewCakeAction_beaVersion0_7.execute(SaveNewCakeAction.java:31)
         at com.myco.springtxn.web.struts.SaveNewCakeAction.execute(SaveNewCakeAction.java)
         CakeService cakeService = (CakeService) getWebApplicationContext().getBean("cakeService");
    Some more data:
    TRACE:
    Saving Cake with name oepe cake and description copied in jars
    <24-Oct-2009 21:13:16 o'clock BST> <Error> <HTTP> <BEA-101017> <[weblogic.servlet.internal.WebAppServletContext@d9f6cb - appName: '_auto_generated_ear_', name: 'sdw', context-path: '/sdw', spec-version: '2.5', request: weblogic.servlet.internal.ServletRequestImpl@148bedb[
    POST /sdw/saveNewCake.do HTTP/1.1
    Accept: */*
    Referer: http://localhost:7001/sdw/enterCake.do
    Accept-Language: en-gb
    Content-Type: application/x-www-form-urlencoded
    UA-CPU: x86
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; NGD_build; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
    Content-Length: 41
    Connection: Keep-Alive
    Cache-Control: no-cache
    Cookie: refresh=; JSESSIONID=dG4BKjLBdL3LWMPkJG3r1Tw64hjpBMWwvplvypkGZlTYhb6cJD9M!-36198065; ADMINCONSOLESESSION=7gyTKjLQgQfNlPlQ1cBydQXgHcgljjQn8tnHL4Qn5GWr8pLWZG0W!1523650153
    ]] Root cause of ServletException.
    java.lang.IllegalAccessError: tried to access method org.springframework.web.struts.ActionSupport.getWebApplicationContext()Lorg/springframework/web/context/WebApplicationContext; from class com.myco.springtxn.web.struts.SaveNewCakeAction_beaVersion0_7
         at com.myco.springtxn.web.struts.SaveNewCakeAction_beaVersion0_7.execute(SaveNewCakeAction.java:31)
         at com.myco.springtxn.web.struts.SaveNewCakeAction.execute(SaveNewCakeAction.java)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
         at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:432)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.utils.FastSwapFilter.doFilter(FastSwapFilter.java:66)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    I AM USING;
    1. Operating System - Windows XP Professional
    2. Eclipse Version - 3.5.1
    3. WLS Version - 10.3
    4. Brief app shape description. Dynamic Web App
    5. The .classpath a
    <?xml version="1.0" encoding="UTF-8"?>
    <classpath>
         <classpathentry kind="src" output="target/classes" path="src/main/java"/>
         <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
         <classpathentry kind="con" path="oracle.eclipse.tools.weblogic.lib.system">
              <attributes>
                   <attribute name="owner.project.facets" value="jst.web"/>
              </attributes>
         </classpathentry>
         <classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.web.container"/>
         <classpathentry kind="con" path="org.eclipse.jst.j2ee.internal.module.container"/>
         <classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/Spring2.5">
              <attributes>
                   <attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
                   <attribute name="owner.project.facets" value="oracle.struts;spring.core"/>
              </attributes>
         </classpathentry>
         <classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/Struts">
              <attributes>
                   <attribute name="org.eclipse.jst.component.dependency" value="/WEB-INF/lib"/>
                   <attribute name="owner.project.facets" value="oracle.struts"/>
              </attributes>
         </classpathentry>
         <classpathentry kind="con" path="org.maven.ide.eclipse.MAVEN2_CLASSPATH_CONTAINER"/>
         <classpathentry kind="output" path="target/classes"/>
    </classpath>
    web app cache
    <webapp-structure>
    <registeredFiles>
    <entry>
    <string>currentBuild</string>
    <path-set>
    <pathsSet class="linked-hash-set">
    <string>index.jsp</string>
    <string>META-INF/MANIFEST.MF</string>
    <string>pages/cakeSavedInfo.jsp</string>
    <string>pages/enterCake.jsp</string>
    <string>pages/welcome.jsp</string>
    <string>WEB-INF/applicationContext.xml</string>
    <string>WEB-INF/config/struts-config.xml</string>
    <string>WEB-INF/tld/c.tld</string>
    <string>WEB-INF/tld/fmt.tld</string>
    <string>WEB-INF/tld/struts-bean.tld</string>
    <string>WEB-INF/tld/struts-html-el.tld</string>
    <string>WEB-INF/tld/struts-html.tld</string>
    <string>WEB-INF/tld/struts-logic.tld</string>
    <string>WEB-INF/tld/struts-tiles.tld</string>
    <string>WEB-INF/web.xml</string>
    <string>WEB-INF/weblogic.xml</string>
    <string>WEB-INF/classes/com/myco/springtxn/web/controller/CakeController.class</string>
    <string>WEB-INF/classes/com/myco/springtxn/web/controller/spring/AnnotatedSpringCakeController.class</string>
    <string>WEB-INF/classes/com/myco/springtxn/web/struts/CakeForm.class</string>
    <string>WEB-INF/classes/com/myco/springtxn/web/struts/EnterNewCakeAction.class</string>
    <string>WEB-INF/classes/com/myco/springtxn/web/struts/SaveNewCakeAction.class</string>
    <string>WEB-INF/classes/com/myco/springtxn/web/util/Logging.class</string>
    <string>WEB-INF/lib/SpringTxnServices-0.0.1-SNAPSHOT.jar</string>
    <string>WEB-INF/lib/spring-2.5.6.jar</string>
    <string>WEB-INF/lib/commons-logging-1.0.4.jar</string>
    <string>WEB-INF/lib/commons-lang-2.4.jar</string>
    <string>WEB-INF/lib/hibernate-core-3.3.1.GA.jar</string>
    <string>WEB-INF/lib/antlr-2.7.2.jar</string>
    <string>WEB-INF/lib/commons-collections-3.1.jar</string>
    <string>WEB-INF/lib/dom4j-1.6.1.jar</string>
    <string>WEB-INF/lib/xml-apis-1.0.b2.jar</string>
    <string>WEB-INF/lib/jta-1.1.jar</string>
    <string>WEB-INF/lib/slf4j-api-1.5.2.jar</string>
    <string>WEB-INF/lib/hibernate-annotations-3.4.0.GA.jar</string>
    <string>WEB-INF/lib/ejb3-persistence-1.0.2.GA.jar</string>
    <string>WEB-INF/lib/hibernate-commons-annotations-3.1.0.GA.jar</string>
    <string>WEB-INF/lib/hibernate-entitymanager-3.4.0.GA.jar</string>
    <string>WEB-INF/lib/javassist-3.4.GA.jar</string>
    <string>WEB-INF/lib/hibernate-validator-3.1.0.GA.jar</string>
    <string>WEB-INF/lib/slf4j-log4j12-1.5.2.jar</string>
    <string>WEB-INF/lib/log4j-1.2.14.jar</string>
    <string>WEB-INF/lib/SpringLegacyModule-0.0.1-SNAPSHOT.jar</string>
    <string>WEB-INF/lib/struts-1.2.9.jar</string>
    <string>WEB-INF/lib/commons-beanutils-1.7.0.jar</string>
    <string>WEB-INF/lib/commons-digester-1.6.jar</string>
    <string>WEB-INF/lib/commons-fileupload-1.0.jar</string>
    <string>WEB-INF/lib/commons-validator-1.1.4.jar</string>
    <string>WEB-INF/lib/oro-2.0.7.jar</string>
    <string>WEB-INF/lib/xalan-2.5.1.jar</string>
    <string>WEB-INF/lib/struts-el-1.2.9.jar</string>
    <string>WEB-INF/lib/standard-1.0.6.jar</string>
    <string>WEB-INF/lib/jstl-1.1.2.jar</string>
    <string>WEB-INF/lib/spring-webmvc-struts-2.5.6.jar</string>
    <string>WEB-INF/lib/spring-beans-2.5.6.jar</string>
    <string>WEB-INF/lib/spring-core-2.5.6.jar</string>
    <string>WEB-INF/lib/spring-context-2.5.6.jar</string>
    <string>WEB-INF/lib/aopalliance-1.0.jar</string>
    <string>WEB-INF/lib/spring-web-2.5.6.jar</string>
    <string>WEB-INF/lib/spring-webmvc-2.5.6.jar</string>
    <string>WEB-INF/lib/spring-context-support-2.5.6.jar</string>
    </pathsSet>
    </path-set>
    </entry>
    </registeredFiles>
    </webapp-structure>

    Got back to testing this (been busy in my day job). I realised that I had not tested hot deployment. So I switched on FastSwop by adding the following the the weblogic.xml (of the web applicatiion):
    Gives
    Accept-Encoding: gzip, deflate
    User-Agent: Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; NGD_build; .NET CLR 1.1.4322; .NET CLR 2.0.50727; MS-RTC LM 8; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)
    Content-Length: 22
    Connection: Keep-Alive
    Cache-Control: no-cache
    Cookie: JSESSIONID=T6PTK7yS3jdJzzLsP5nNB6TNCyLFMcYxZf8j1rRRGBXZ8hSbBQT2!580994594
    ]] Root cause of ServletException.
    java.lang.IllegalAccessError: tried to access method org.springframework.web.struts.ActionSupport.getWebApplicationContext()Lorg/springframework/web/context/WebApplicationContext; from class com.myco.springtxn.web.struts.SaveNewCakeAction_beaVersion0_8
         at com.myco.springtxn.web.struts.SaveNewCakeAction_beaVersion0_8.execute(SaveNewCakeAction.java:31)
         at com.myco.springtxn.web.struts.SaveNewCakeAction.execute(SaveNewCakeAction.java)
         at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:431)
         at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:236)
         at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1196)
         Truncated. see log file for complete stacktrace
    >
    I find this sad since using tomcat I can hot deploy without any problem

Maybe you are looking for

  • Itunes 11 can no longer open playlist in separate window

    i use playlists constantly in preparation for my DJ'ing. i allways have two windows open while selecting tracks from OTHER playlist to create new sets. I cannot believe Apple would leave out such a simple operation, their engineers probably too busy

  • Urgent!!!!How to deploy only an EJB from Weblogic to oc4j.

    Hi How can i deploy only EJB from Weblogic into oc4j without any web application or client coming into pitcture as my client access bean remotely.... regards, Sapthapathi

  • LG 42pc5d Plasma TV issues

    The remote no longer turns on/off the set, also will not change channels or volume. Changed batteries, etc. Remote for cable box also will not turn on/off set, however, will allow volume to work. Any suggestions???

  • Can I have a role inheriting another role in weblogic 9?

    I have two global roles: AppUser and AppAdmin. An AppAdmin is an AppUser. Is it possible to configure this fact in weblogic 9? Here is what I tried. I added AppUser and AppAdmin as global roles using the wl9 console. Then I tried to add a condition o

  • Camera Raw Universal update not working

    Hey there .... heeeeelp .... I've just upgraded to a Mac Book Pro Core 2 Duo system, and it seems like the Camera Raw updater is not functioning on this system. I get no previews with my Canon 400D/XTi on import, which is what this update was suposse