Installing BlazeDS on shared tomcat instance

Is it possible to successfully install BlazeDS on a shared Tomcat instance, where I may not be able to add files to the tomcat/lib folder or modify the catalina.properties file? I need tu support custom authentication, as described here:
   http://opensource.adobe.com/wiki/display/blazeds/Installation+Guide#InstallationGuide-Addi tionalserverspecificconfiguration
which seems to require modification to the lib folder and the catalina.properties file.
-JM

Do you get any error messages on the Tomcat logs when the app is started?
Johnking08 wrote:
 I created a simple Java testing class and put it in BlazeDS war file.
What do you mean by this? Have you deployed the blazeds.war and your own war file to the server or did you somehow put your code inside the blazeds.war?

Similar Messages

  • Deploying to shared tomcat instance

    Hi All
    I'm new to servlet, and even newer to Creator. I'm trying to deploy a relatively simple two page application (Compiles and deploys with no problem locally on sun app server) to a shared instance of tomcat. This means that I can't simply send over the WAR file and the the jstl.jar and standard.jar files, but i have to copy the class files directly into the remote ~/public_html/WEB-INF/classes/ dir. what i've done is basically copied the entire local /build/web/ directory into my public_html directory. All dependant libraries and (i think)xml config files are in the correct places. When I try to get to the app I get redirected to a page with a null pointer exception originating at the constructor of the Page1 of the app (bottom of page). Where (Page1.java:166) is the constructor of the main page of the app. I'm guessing that its something that I'm missing in the xml config files which are simply the ones generated by creator.
    Thanks in advance for any help.
    andy
    java.lang.NullPointerException
         com.sun.rave.web.ui.appbase.AbstractPageBean.<init>(AbstractPageBean.java:85)
         pnp_census.Page1.<init>(Page1.java:166)
         sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         java.lang.reflect.Constructor.newInstance(Constructor.java:494)
         java.lang.Class.newInstance0(Class.java:350)
         java.lang.Class.newInstance(Class.java:303)
         org.apache.catalina.servlets.InvokerServlet.serveRequest(InvokerServlet.java:369)
         org.apache.catalina.servlets.InvokerServlet.doGet(InvokerServlet.java:133)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:689)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)

    Going through the code, I'm seeing that the exception is being thrown here: in the constructor of AbstractPageBean (Super of Page1) :
    Map map = FacesContext.getCurrentInstance().getExternalContext().getRequestMap();
    Does anybody have any Idea which xml conf file may effect this? or why it would be different between SunAppServer and Tomcat?
    Thanks

  • Problems on installing BlazeDS on GoDaddy's shared Linux web hosting server

    GoDaddy's shared Linux hosting supports Tomcat (V 5.0.27 on JVM 1.5.0_22).
    I installed BlazeDS v3.2.0.3978 on the same Tomcat (5.0.27) with the same JVM (1.5.0_22) in my Laptop and it works fine. I created a
    simple Java testing class and put it in BlazeDS war file. I deployed the BlazeDS war file in the local Tomcat. I created a testing MXML file with the RemoteObject to access the Java class using localhost as the URL. Everything works fine.
    Now I deployed the same BlazeDS war file with a different WEB-INF/Flex/services-conf.xml (differnet host name) in the Tomcat in GoDaddy
    and using the same MXML file with the services-config.xml pointing to the URL hosted by GoDaddy. I got a long error message.
    It was too long and out of the screen and I can only see the middle part of it as following:
    initialDestinationId = (null)
              messageAgents = (Array)#9
                [0] (mx.rpc::AsyncRequest)#10
                  authenticated = false
                  autoConnect = true
                  channelSet = (mx.messaging::ChannelSet)#6
                  clientId = (null)
                  connected = false
                  defaultHeaders = (null)
                  destination = "blazeds-tester"
                  id = "FA03C06F-D7F6-2CED-58F9-975C1FCE94A4"
                  reconnectAttempts = 0
                  reconnectInterval = 0
                  requestTimeout = -1
                  subtopic = ""
          connected = false
          connectTimeout = -1
          enableSmallMessages = true
          endpoint = "http://xyz.com/blazeds/messagebroker/amf"
          failoverURIs = (Array)#11
          id = "my-amf"
          mpiEnabled = false
          netConnection = (flash.net::NetConnection)#12
            client = (mx.messaging.channels::AMFChannel)#4
            connected = false
            objectEncoding = 3
            proxyType = "none"
            uri = "http://xyz.com/blazeds/messagebroker/amf"
          piggybackingEnabled = false
          polling = false
          pollingEnabled = true
          pollingInterval = 3000
          protocol = "http"
          reconnecting = false
          recordMessageSizes = false
          recordMessageTimes = false
          requestTimeout = -1
          uri = "http://xyz.com/blazeds/messagebro
    It seems that the BlazeDS was not running in Tomcat at GoDaddy because I got a similar error when I shutted down the local Tomcat running
    in my laptop and have the MXML file to call the localhost Tomcat's BlazeDS:
    (mx.messaging.channels::AMFChannel)#4
              initialDestinationId = (null)
              messageAgents = (Array)#9
                [0] (mx.rpc::AsyncRequest)#10
                  authenticated = false
                  autoConnect = true
                  channelSet = (mx.messaging::ChannelSet)#6
                  clientId = (null)
                  connected = false
                  defaultHeaders = (null)
                  destination = "blazeds-tester"
                  id = "CE8C6CE6-5448-C6A2-2E04-9768F9E6C04C"
                  reconnectAttempts = 0
                  reconnectInterval = 0
                  requestTimeout = -1
                  subtopic = ""
          connected = false
          connectTimeout = -1
          enableSmallMessages = true
          endpoint = "http://localhost:8080/blazeds/messagebroker/amf"
          failoverURIs = (Array)#11
          id = "my-amf"
          mpiEnabled = false
          netConnection = (flash.net::NetConnection)#12
            client = (mx.messaging.channels::AMFChannel)#4
            connected = false
            objectEncoding = 3
            proxyType = "none"
            uri = "http://localhost:8080/blazeds/messagebroker/amf"
          piggybackingEnabled = false
          polling = false
          pollingEnabled = true
          pollingInterval = 3000
          protocol = "http"
          reconnecting = false
    Any suggestions? Has anyone successfully deployed and run BlazeDS in the Tomcat in GoDaddy's shared Linux web server?

    Do you get any error messages on the Tomcat logs when the app is started?
    Johnking08 wrote:
     I created a simple Java testing class and put it in BlazeDS war file.
    What do you mean by this? Have you deployed the blazeds.war and your own war file to the server or did you somehow put your code inside the blazeds.war?

  • Urgent!! How to setup Tomcat instance in windows??

    Urgent!! How to setup Tomcat instance in windows??
    I have the next problem when execute tomcat.bat start:
    sin espacion en entorno
    you must set java_home to point at your java development kit installation

    You need to set the following two environment variables after you install tomcat on windows
    set JAVA_HOME= {Java directory path}
    set TOMCAT_HOME= {Tomcat directory path}
    Do this and try running start.bat again. It should get past this error.

  • Multiple tomcat instances in one zone

    I would like to install multiple tomcat instances in the same zone. the first instance starts without an issue. The second instance fails and gives an error message that it 'could not reserve enough space for object heap'. We are able to run multiple instances of tomcat on our solaris servers without a problem. Is there something I'm missing or is this a feature of zones? I've tried it in two separate zones with the same result.

    Don't set the environment variable in your profile, that sets the env variable the same in every terminal session you launch. You need to set the WSHOME variable differently in each terminal depending on which instance you are working with.
    I believe that should work.
    Xoth wrote:I am running idm on rhel 4. I want to run mulitple instance of tomcat 5.5.25. I have another instance set up ok but have run into a snag. In my /etc/profile I state for my first idm/tomcat instance...
    WSHOME=/usr/local/apache-tomcat-5.5.25/webapps/2008110601_idm7.1
    export WSHOME
    PATH=$WSHOME/bin:$PATH
    export PATH
    How to I set WSHOME for mulitple instances? I dont think I can add another WSHOME variable pointing to the other instance. I want them running at the same time.

  • Multiple Tomcat instances on the same server

    Can we have multiple tomcat instances load balanced on the same physical box without VM. Has there been any such implementations. How can CMS be distributed across. What can the know architecture for the same.
    Regards
    Vijsy

    This can be done, but it really depends on the load balancer you use.
    There is no recommendation from BusinessObjects and you might want to consult the load balancer vendor for instructions and support.
    Regards
    Caroline

  • How do I install apps without sharing my credit card information, when I press install it ask for my apple ID I put it in and after it says to review my iTunes account

    How do I install apps without sharing my credit card information, when I press install it ask for my apple ID I put it in and after it says to review my iTunes account

    Click the none option for your credit card when you review your apple id

  • Acrobat 7, needed with FrameMaker 7: How do I get and install an "Adobe PDF printer instance?"

    In FrameMaker, when I try to save a FrameMaker file as a PDF file, I get the following message: "FrameMaker could not find Adobe PDF printer instance, which must be installed to execute "Save as PDF" command".  I have a sinking feeling that I deleted that printer instance from my list of printers, thinking I did not need such a printer. I have tried uninstalling and reinstalling FrameMaker 7, Acrobat 7 and Reader 9. All reinstalled successfully, EXCEPT still no Adobe PDF printer instance. Thus my question: how do I get and install that Adobe PDF printer instance?
    .( I am using a new computer. I still have my old computer available, with the Adobe PDF printer instance on it. If I could find where in the old machine (Windows XP)  the files are for it, I could copy them to the new machine).
    Thanks in advance  for any advice.

    Just curious,
    What is the new machine's OS (& is it 32-bit or 64-bit)?
    Be well...

  • Photoshop elements 11 install stops at sharing progs . Have tried all the trouble shoot info. All useless. Help Please

    Photoshop elements 11 install stops at sharing progs . Have tried all the trouble shoot info. All useless. Help Please
    Windows 8.1 OS

    Does everything include this:
    Troubleshoot installation | Photoshop Elements, Premiere Elements | Windows

  • Unable to Install BlazeDS on Grails 1.3.7

    Hi,
    Can someone please help me install BlazeDS plugin on Grails, i am stuck at this point. Please help me resolve this issue. I have posted all the details at StackOverFlow.com http://bit.ly/qMpA1T but have not got any response so far. I am also pasting the details here too:
    Following is the complete stacktrace 
    Resolving plugin JAR dependencies ...
    :: problems summary ::
    :::: WARNINGS
        module not found: com.adobe.flex#flex-messaging-opt;4.0.0.14931.1
    ==== grailsHome: tried
      D:\Platforms\Grails\grails-1.3.7\lib/flex-messaging-opt-4.0.0.14931.1.xml
      -- artifact com.adobe.flex#flex-messaging-opt;4.0.0.14931.1!flex-messaging-opt.jar:
      D:\Platforms\Grails\grails-1.3.7\lib/flex-messaging-opt-4.0.0.14931.1.jar
    ==== grailsHome: tried
      D:\Platforms\Grails\grails-1.3.7\dist/flex-messaging-opt-4.0.0.14931.1.xml
      -- artifact com.adobe.flex#flex-messaging-opt;4.0.0.14931.1!flex-messaging-opt.jar:
      D:\Platforms\Grails\grails-1.3.7\dist/flex-messaging-opt-4.0.0.14931.1.jar
    ==== grailsHome: tried
      -- artifact com.adobe.flex#flex-messaging-opt;4.0.0.14931.1!flex-messaging-opt.jar:
      D:\Platforms\Grails\grails-1.3.7/plugins/grails-flex-messaging-opt-4.0.0.14931.1.jar
    ==== grailsCentral: tried
      -- artifact com.adobe.flex#flex-messaging-opt;4.0.0.14931.1!flex-messaging-opt.jar:
      http://svn.codehaus.org/grails-plugins/grails-flex-messaging-opt/tags/RELEASE_4_0_0_14931_1/grails-flex-messaging-opt-4.0.0.14931.1.jar
    I also tried to install the spring-security-core and spring-security-acl before the blazeds which went successful, but when i try to install blazeds after these two plugins it fails due to the same previous error:
    ::  UNRESOLVED DEPENDENCIES   ::
    :: com.adobe.flex#flex-messaging-opt;4.0.0.14931.1: not found
    [delete] Deleting directory C:\Users\Akeel\.grails\1.3.7\projects\todolist\plugins\blazeds-2.0
    Failed to install plugin [blazeds-2.0]. Plugin has missing JAR dependencies.
    Please let me know if further detail is required to pin down the problem.

    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Issues installing blazeds

    Hi .I have followed the instructions for installing blazeds and got to the stage where i can launch startdb.bat and it all seems to load ok...but then when i put http://localhost:8400/samples/ into the web browser i get an error....any help would be great. thx

    This forum is only for discussions on the forums themselves. The Photoshop Elements one is here:
    http://forums.adobe.com/community/photoshop_elements

  • Session Tracking between two tomcat instances

    Hi.
    Am using two different tomcat instances. i want to pass a username from one context to another thru jsp/servlet. can anybody help me without the knowledge of cookies...
    for ex:
    webapps
    - app1
    - app2
    i want to pass username from app1 to app2.
    thanks

    Yep,
    In the servlet on ServerA have setSession and getSession methods.
    When you create the session and when you add to it, call setSession:
    setSession(session);This is what the setSession method looks like
    public void setSession(HttpSession session)
      this.session = session;
    }When servletA calls servletB, pass an instance of servletA to it.
    ServletB b = new ServletB(servletA);servletB's contructor:
    public ServletB(servletA)
      this.servletA = servletA;
    }Now you can call ServletA's getSession method from ServletB:
    session = servletA.getSession();and this is what ServletA's getSession looks like:
    public HttpSession getSession()
      return session;
    }

  • Uncaught exception: shared webkit instance unavaliabl​e: null

    whenever i open the browser i get this "uncaught exception: shared webkit instance unavaliable: null" i have tried all that crackberry tells me to pull batterie ect can anyone help

    Hi and Welcome to the Forums!
    I suggest the following steps, in order, even if they seem redundant to what you have already tried (steps 1 and 2 each should result in a message coming to your BB...please wait for that before proceeding to the next step):
    1) Register HRT
    KB00510 How to register a BlackBerry smartphone with the wireless network
    2) Delete and Resend Service Books
    KB05000Delete the service book for the BlackBerry Internet Service email account from the BlackBerry smartphone
    KB02830 Send the service books for the BlackBerry Internet Service
    3) Batt Pull Reboot
    Anytime random strange behavior or sluggishness creeps in, the first thing to do is a battery pop reboot. With power ON, remove the back cover and pull out the battery. Wait about a minute then replace the battery and cover. Power up and wait patiently through the long reboot -- ~5 minutes. See if things have returned to good operation. Like all computing devices, BB's suffer from memory leaks and such...with a hard reboot being the best cure.
    Hopefully that will get things going again for you! If not, then please think back as to what changed just before this started. A new app? Any updates? The tiniest thing could be causal, so please think carefully.
    Good luck and let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Error installing IDS: ABAP Process of Instance IDS/DVEBMGS00 (ABAP:UNKNOWN) did not start after 10 minutes

    Hi All,
    Im installing EHP6 on windows server 2008 r2 (VM ware 10). After getting past my initial problems, im stuck on step 21/29.
    Create Instance. Im getting the attached error.
    I can make out from this file that it is network related issue, but cannot find a solution to this. Can anybody please help me out?
    Here are my trace files :
    1. dev_disp:
    trc file: "dev_disp", trc level: 1, release: "720"
    sysno      00
    sid        IDS
    systemid   562 (PC with Windows NT)
    relno      7200
    patchlevel 0
    patchno    100
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    \\VINEETABAP\sapmnt\IDS\SYS\profile\IDS_DVEBMGS00_VINEETABAP
    pid        4508
    kernel runs with dp version 131000(ext=118000) (@(#) DPLIB-INT-VERSION-131000-UC)
    length of sys_adm_ext is 588 bytes
    *** SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 4508) [dpxxdisp.c   1287]
      shared lib "dw_xml.dll" version 100 successfully loaded
      shared lib "dw_xtc.dll" version 100 successfully loaded
      shared lib "dw_stl.dll" version 100 successfully loaded
      shared lib "dw_gui.dll" version 100 successfully loaded
      shared lib "dw_mdm.dll" version 100 successfully loaded
      shared lib "dw_rndrt.dll" version 100 successfully loaded
      shared lib "dw_abp.dll" version 100 successfully loaded
      shared lib "dw_sym.dll" version 100 successfully loaded
      shared lib "dw_aci.dll" version 100 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    rdisp/dynamic_wp_check : 1
    rdisp/calculateLoadAverage : 1
    Sun Aug 24 11:27:37 2014
    *** ERROR => NiHLGetHostName: NiPGetHostByAddr failed (rc=-1) [nixxhl.cpp   495]
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 6 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  6404]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: write dp-profile-values into sys_adm_ext
    DpIPCInit2: start server >VINEETABAP_IDS_00                       <
    DpShMCreate: sizeof(wp_adm) 43024 (2264)
    DpShMCreate: sizeof(tm_adm) 5517056 (27448)
    DpShMCreate: sizeof(wp_ca_adm) 64000 (64)
    DpShMCreate: sizeof(appc_ca_adm) 64000 (64)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/584064/584080
    DpShMCreate: sizeof(comm_adm) 584080 (1144)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm) 0 (104)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm) 0 (80)
    DpShMCreate: sizeof(vmc_adm) 0 (2152)
    DpShMCreate: sizeof(wall_adm) (41664/36752/64/192)
    DpShMCreate: sizeof(gw_adm) 48
    DpShMCreate: sizeof(j2ee_adm) 3952
    DpShMCreate: SHM_DP_ADM_KEY (addr: 000000000F7D0050, size: 6368736)
    DpShMCreate: allocated sys_adm at 000000000F7D0060
    DpShMCreate: allocated wp_adm_list at 000000000F7D3040
    DpShMCreate: allocated wp_adm at 000000000F7D3230
    DpShMCreate: allocated tm_adm_list at 000000000F7DDA50
    DpShMCreate: allocated tm_adm at 000000000F7DDAA0
    DpShMCreate: allocated wp_ca_adm at 000000000FD209B0
    DpShMCreate: allocated appc_ca_adm at 000000000FD303C0
    DpShMCreate: allocated comm_adm at 000000000FD3FDD0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 000000000FDCE770
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated gw_adm at 000000000FDCE820
    DpShMCreate: allocated j2ee_adm at 000000000FDCE860
    DpShMCreate: allocated ca_info at 000000000FDCF7E0
    DpShMCreate: allocated wall_adm at 000000000FDCF870
    DpCommAttachTable: attached comm table (header=000000000FD3FDD0/ft=000000000FD3FDE0)
    DpSysAdmIntInit: initialize sys_adm
    rdisp/test_roll : roll strategy is DP_NORMAL_ROLL
    dia token check not active (10 token)
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    DpRqQInit: keep protect_queue / slots_per_queue 0 / 2001 in sys_adm
    rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    <ES> Info: em/initial_size_MB( 2047MB) not multiple of em/blocksize_KB( 4096KB)
    <ES> Info: em/initial_size_MB rounded up to 2048MB
    Sun Aug 24 11:27:38 2014
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 511 blocks reserved for free list.
    ES initialized.
    mm.dump: set maximum dump mem to 96 MB
    DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE
    MPI: dynamic quotas disabled.
    MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 4.0.1 4.0.1 5.1) [dpxxdisp.c   1673]
    Sun Aug 24 11:27:43 2014
    *** ERROR => MsIAttachEx: NiBufConnect to VINEETABAP/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]
    ***LOG Q0L=> DpLoopInit, nomscon () [dpxxdisp.c   1774]
    Sun Aug 24 11:27:58 2014
    CCMS uses Shared Memory Key 73 for monitoring.
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    Sun Aug 24 11:27:59 2014
    CCMS: Initalized shared memory of size 60000000 for monitoring segment.
    CCMS: Checking Downtime Configuration of Monitoring Segment.
    Sun Aug 24 11:28:00 2014
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpAppcBlksLow: max appc blocks in queue is 500 (50 %)
    DpWpBlksLow: max wp blocks in queue is 800 (80 %)
    Sun Aug 24 11:28:37 2014
    *** ERROR => MsIAttachEx: NiBufConnect to VINEETABAP/3900 failed (rc=NIECONN_PENDING) [msxxi.c      718]
    *** ERROR => DpHdlDeadWp: W0 (pid 5580) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W1 (pid 5328) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W2 (pid 4940) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W3 (pid 5824) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W4 (pid 2700) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W5 (pid 4052) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W6 (pid 5148) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W7 (pid 5932) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W8 (pid 4540) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W9 (pid 5616) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W10 (pid 3076) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W11 (pid 4592) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W12 (pid 164) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W13 (pid 1988) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W14 (pid 5400) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W15 (pid 5916) died (severity=0, status=0) [dpxxwp.c     1522]
    *** ERROR => DpHdlDeadWp: W16 (pid 5464) died (severity=0, status=0) [dpxxwp.c     1522]
    *** DP_FATAL_ERROR => DpWPCheck: no more work processes
    *** DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1121
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Aug 24 11:28:47 2014
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long) Sun Aug 24 05:58:47 2014
    ========================
    No Type  Pid    Status  Cause Start Rstr  Err Sem Time Program          Cl  User         Action                    Table
    0 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    1 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    2 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    3 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    4 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    5 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    6 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    7 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    8 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    9 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    10 UPD       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    11 ENQ       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    12 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    13 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    14 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    15 SPO       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    16 UP2       -1 Ended         no    no     1   0    0                                    NO_ACTION                          
    Dispatcher Queue Statistics Sun Aug 24 05:58:47 2014
    ===========================
    +------+--------+--------+--------+------------+------------+
    |  Typ |    now |   high |    max | writes     |  reads     |
    +------+--------+--------+--------+------------+------------+
    | NOWP |      0 |      2 |   2000 |          5 |          5 |
    +------+--------+--------+--------+------------+------------+
    |  DIA |      2 |      2 |   2000 |          2 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  UPD |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  ENQ |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  BTC |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  SPO |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  UP2 |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    max_rq_id 5
    wake_evt_udp_now 0
    wake events       total     5,  udp     4 ( 80%),  shm     1 ( 20%)
    since last update total     5,  udp     4 ( 80%),  shm     1 ( 20%)
    DpGetLoadAverage: la1[1] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[1] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[1] = 0.011111 / -1.000000 %
    Dispatcher Load Statistics
    +------+---------+---------+---------+
    |  Typ |     LA1 |     LA5 |    LA15 |
    +------+---------+---------+---------+
    |  DIA |   0.000 |   0.000 |   0.011 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[2] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[2] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[2] = 0.000000 / -1.000000 %
    |  UPD |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[3] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[3] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[3] = 0.000000 / -1.000000 %
    |  ENQ |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[4] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[4] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[4] = 0.000000 / -1.000000 %
    |  BTC |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[5] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[5] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[5] = 0.000000 / -1.000000 %
    |  SPO |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[6] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[6] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[6] = 0.000000 / -1.000000 %
    |  UP2 |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    Dump of tm_adm structure: Sun Aug 24 05:58:47 2014
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    RM-T19, U20,                 , , 11:28:00, M0, W-1,     , 1/0
    Workprocess Comm. Area Blocks Sun Aug 24 05:58:47 2014
    =============================
    Slots: 1000, Used: 0, Max: 0
    +------+--------------+----------+-------------+
    |   id | owner        |   pid    | eyecatcher  |
    +------+--------------+----------+-------------+
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1121
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Aug 24 11:28:52 2014
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >VINEETABAP_IDS_00                       < (normal)
    DpJ2eeDisableRestart
    DpHalt: switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    DpHalt: stop work processes
    DpHalt: stop gateway
    killing process (1192) (SOFT_KILL)
    *** ERROR => DpProcKill: kill failed [dpntdisp.c   397]
    DpHalt: stop icman
    killing process (4164) (SOFT_KILL)
    DpHalt: terminate gui connections
    send SHUTDOWN to REM TM 19
    DpWpBlksLow: wp_blks_in_queue/limit/max = 0/800/1000
    DpLockWpBlkEx: my wp blk start index is 0
    DpLockWpBlkEx: lock wp ca_blk 0
    return errno (-17) to T19
    DpTmSend: errormsg without overhead: use mode 0
    NiBufIAlloc: malloc NiBufadm, to 0 bytes
    DpTmSend: try to send 14 bytes to T19/M0
    NiBufSend starting
    NiIWrite: hdl 18 sent data (wrt=14,pac=1,MESG_IO)
    REL WP ca_blk 0
    set status of T19 to TM_DISCONNECTED
    NiBufISelUpdate: new MODE -- (r-) for hdl 18 in set0
    SiSelNSet: set events of sock 428 to: ---
    NiBufISelRemove: remove hdl 18 from set0
    SiSelNRemove: removed sock 428 (pos=2)
    SiSelNRemove: removed sock 428
    NiSelIRemove: removed hdl 18
    DpDelSocketInfo: del info for nihdl 18 (pos/type=2/3)
    NiICloseHandle: shutdown and close hdl 18/sock 428
    NiBufIClose: clear extension for hdl 18
    dp_tm_adm[19].stat = DP_SLOT_FREE
    DpGetSchedule: next schedule 1408859932/146000
    DpGetSchedule: no schedule found
    DpITmSlotRelease: release slot 19
    DpListRemove: remove elem 19 from tmadm_inuse_list
    DpListRemove: 19 elems in tmadm_inuse_list
    DpListInsert: insert elem 19 into tmadm_free_list (at begin)
    DpListInsert: 182 elems in tmadm_free_list
    DpHalt: wait for end of work processes
    DpHalt: wait for end of gateway
    *** ERROR => [DpProcDied] Process died  (PID:1192  HANDLE:1124  rc:0x1) [dpnttool2.c  147]
    DpHalt: wait for end of icman
    [DpProcDied] Process lives  (PID:4164  HANDLE:1132)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1121
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Aug 24 11:28:53 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:4164  HANDLE:1132)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1121
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Aug 24 11:28:54 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:4164  HANDLE:1132)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1121
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Aug 24 11:28:55 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:4164  HANDLE:1132)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1121
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Aug 24 11:28:56 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:4164  HANDLE:1132)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1121
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Aug 24 11:28:57 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:4164  HANDLE:1132)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1121
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Aug 24 11:28:58 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:4164  HANDLE:1132)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1121
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Aug 24 11:28:59 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:4164  HANDLE:1132)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1121
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Sun Aug 24 11:29:00 2014
    NiISelect: TIMEOUT occured (1000ms)
    *** ERROR => [DpProcDied] Process died  (PID:4164  HANDLE:1132  rc:0x0) [dpnttool2.c  147]
    DpHalt: not attached to the message server
    DpHalt: cleanup EM
    EsCleanup( )
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 4508) [dpxxdisp.c   11252]
    DpHalt: Good Bye .....

    I have a feeling you might have better luck posting this in the BASIS forum and not ABAP.

  • Install PDK in an OC4J instance of OracleAS

    Hello.
    I have installed an OracleAS + Portal 10g (9.0.4), and I have created a new OC4J instance, named OC4J_newinstance.
    My question is: How do I install PDK in OC4J_newinstance?
    I have found a lot of tutorials and forums, but all of them explained how to install PDK in an OC4J STANDALONE instance. Please help me, and thanks in advance!
    Greetings!
    ps: I need to install PDK because I want to develop my own portlets, using my own JSP pages. I already have done that, but using an OC4J STANDALONE instance, and I want to use my OracleAS OC4J_newinstance.

    Hi Shail,
    i referred the link you have sent it was helpful to me, but the thing is while deleting the shared library apache.webservices it is saying the shared library is in use. When we brought down the Application Server and try to run the removeSharedLibrary command we got other error.
    Error: "Failed at "Could not get DeploymentManager".
    This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
    Is the way which i have done is correct ?? Please reply me.
    Thank You,
    Ravi kumar.

Maybe you are looking for