Execution stops after retrieving the factory from the ServletContext while

Hi,
I just started working with Quartz, so I am clueless as to why I am getting this error. This is my first time tying to integrate Quartz 1.6.0 in a web app. I am using the JSF Framework. Although I have added the necessary jars I am still getting the error above: servlet.jar not loaded. If you follow the java code and server output you can see that after retrieving the factory from the ServletContext there is no further execution . Following is the definition of the class used for scheduling:
Quartz Version: 1.6.0
IDE : Netbeans 5.0
AppServer: Tomcat 5.5
*************************************** JAVA CODE *************************************
* BirthdayScheduler.java
* Created on May 20, 2008, 5:24 PM
package com.csg.cs.cscomwebdev.servlet.timer;
import java.io.*;
import java.net.*;
import java.util.Date;
import javax.servlet.*;
import javax.servlet.http.*;
import org.quartz.JobDetail;
import org.quartz.SchedulerException;
import org.quartz.SimpleTrigger;
import org.quartz.impl.StdSchedulerFactory;
import org.quartz.Scheduler;
* @author Arijit Datta
* @version
public class BirthdayScheduler extends HttpServlet {
/** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
* @param request servlet request
* @param response servlet response
protected void processRequest(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
response.setContentType("text/html;charset=UTF-8");
PrintWriter out = response.getWriter();
out.close();
/** Handles the HTTP <code>GET</code> method.
* @param request servlet request
* @param response servlet response
protected void doGet(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
/** Handles the HTTP <code>POST</code> method.
* @param request servlet request
* @param response servlet response
protected void doPost(HttpServletRequest request, HttpServletResponse response)
throws ServletException, IOException {
processRequest(request, response);
/** Returns a short description of the servlet.
public String getServletInfo() {
return "Short description";
public void init()
System.out.println(" ------------ STARTTING JOB --------------");
// Retrieve the ServletContext
ServletContext theApplicationsServletContext = this.getServletContext();
// Retrieve the factory from the ServletContext
StdSchedulerFactory factory =(StdSchedulerFactory)theApplicationsServletContext.getAttribute("QuartzFactory Servlet.QUARTZ_FACTORY_KEY");
System.out.println(" ------------ FACTORY GOT --------------");
try {
// Retrieve the scheduler from the factory
Scheduler scheduler = factory.getScheduler();
System.out.println(" ------------ SCHEDULER GOT --------------");
// Start the scheduler
scheduler.start();
System.out.println(" ------------ SCHEDULER STARTED --------------");
//Creating a job
JobDetail birthdayJobDetail = new JobDetail("birthdayReminderJob", scheduler.DEFAULT_GROUP, BirthdayReminderJob.class );
System.out.println(" ------------ JOB CREATED --------------");
//Creating a trigger
SimpleTrigger birthdayJobtrigger = new SimpleTrigger("birthdayReminderTrigger",scheduler.DEFAULT_GROUP, new Date(),null,SimpleTrigger.REPEAT_INDEFINITELY, 60L * 1000L);
System.out.println(" ------------ TRIGGER CREATED --------------");
//Scheduling the job
scheduler.scheduleJob(birthdayJobDetail,birthdayJobtrigger );
System.out.println(" ------------ JOB SCHEDULED --------------");
} catch (SchedulerException ex) {
System.out.println(ex.getMessage());
} ************************************* SECTION OF WEB.XML ************************
<servlet>
<description>Quartz Initializer Servlet</description>
<servlet-name>QuartzInitializer</servlet-name>
<servlet-class>org.quartz.ee.servlet.QuartzInitializerServlet</servlet -class>
<init-param>
<param-name>shutdown-on-unload</param-name>
<param-value>true</param-value>
</init-param>
<init-param>
<param-name>start-scheduler-on-load</param-name>
<param-value>true</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet>
<servlet-name>BirthdayScheduler</servlet-name>
<servlet-class>com.csg.cs.cscomwebdev.servlet.timer.BirthdayScheduler< /servlet-class>
<load-on-startup>1</load-on-startup>
</servlet> *********************************** SERVER OUTPUT *******************************
Using CATALINA_BASE: C:\Documents and Settings\165171\.netbeans\5.0\jakarta-tomcat-5.5.9_base
Using CATALINA_HOME: D:\Program Files\netbeans-5.0\enterprise2\jakarta-tomcat-5.5.9
Using CATALINA_TMPDIR: C:\Documents and Settings\165171\.netbeans\5.0\jakarta-tomcat-5.5.9_base\temp
Using JAVA_HOME: C:\Program Files\Java\jdk1.5.0_02
May 20, 2008 7:27:13 PM org.apache.coyote.http11.Http11Protocol init
INFO: Initializing Coyote HTTP/1.1 on http-8084
May 20, 2008 7:27:13 PM org.apache.catalina.startup.Catalina load
INFO: Initialization processed in 766 ms
May 20, 2008 7:27:13 PM org.apache.catalina.core.StandardService start
INFO: Starting service Catalina
May 20, 2008 7:27:13 PM org.apache.catalina.core.StandardEngine start
INFO: Starting Servlet Engine: Apache Tomcat/5.5.9
May 20, 2008 7:27:13 PM org.apache.catalina.core.StandardHost start
INFO: XML validation disabled
May 20, 2008 7:27:14 PM org.apache.catalina.loader.WebappClassLoader validateJarFile
INFO: validateJarFile(D:\Java Programs\cs\CSCOMWEBDEV\build\web\WEB-INF\lib\servlet.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
log4j:WARN No appenders could be found for logger (org.apache.catalina.session.ManagerBase).
log4j:WARN Please initialize the log4j system properly.
------------ STARTTING JOB --------------
------------ FACTORY GOT --------------
May 20, 2008 7:27:15 PM org.apache.coyote.http11.Http11Protocol start
INFO: Starting Coyote HTTP/1.1 on http-8084
May 20, 2008 7:27:15 PM org.apache.jk.common.ChannelSocket init
INFO: JK: ajp13 listening on /0.0.0.0:8009
May 20, 2008 7:27:15 PM org.apache.jk.server.JkMain start
INFO: Jk running ID=0 time=0/32 config=null
May 20, 2008 7:27:15 PM org.apache.catalina.storeconfig.StoreLoader load
INFO: Find registry server-registry.xml at classpath resource
May 20, 2008 7:27:16 PM org.apache.catalina.startup.Catalina start
INFO: Server startup in 2802 ms Can anybody please help out? Where exactly am I going wrong?
Thanks a lot!
AD

Your stop condition is "continue if true". This means that, unless you press the button, the while loop will stop after one iteration.
First, you should change the termination condition to "stop if true".
Then you should make the stop button "latch when released" (right-click..mechanical action). Else you don't have a well defined state after the program stops.
You should decide on a reasonable loop rate and enter it for the wait control. (beter use a diagram constant if the value is always the same).
Why do you need to continue reading in a loop? Are you expecting the response to change over time?
Do you want to keep appending to the string indicator or only show the latest characters received?
Maybe you also need a wait between the writing and reading?
Delete the ms timer value indicator, it is completely useless.
Do you get any error codes?
Don't use the run continous button. Use the plain run button.
What device are you communicating with? Do you have documentation?
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • My MacMini does not stop after giving the order ''switch off''.What can I do?

    My MacMini does not stop after giving the order ''switch off''.
    It stops only, after pushing the button ''on/off'' for some seconds.
    What can I do?
    frahsun

    boot the Mac into safe mode, repair permissions while in it, then reboot normally.
    if that doesn't help, try resetting the System Management Controller (SMC).

  • While loop never stops after reading the result

    I 'amattaching the program with thismessage in which while loop never stops, going on continuing until I stops it manualy using the off button What i have to do to get it off automatically afetr execution and reading the query and getting the result in Read in Front panel
    Attachments:
    PMd VI.vi ‏33 KB

    Your stop condition is "continue if true". This means that, unless you press the button, the while loop will stop after one iteration.
    First, you should change the termination condition to "stop if true".
    Then you should make the stop button "latch when released" (right-click..mechanical action). Else you don't have a well defined state after the program stops.
    You should decide on a reasonable loop rate and enter it for the wait control. (beter use a diagram constant if the value is always the same).
    Why do you need to continue reading in a loop? Are you expecting the response to change over time?
    Do you want to keep appending to the string indicator or only show the latest characters received?
    Maybe you also need a wait between the writing and reading?
    Delete the ms timer value indicator, it is completely useless.
    Do you get any error codes?
    Don't use the run continous button. Use the plain run button.
    What device are you communicating with? Do you have documentation?
    LabVIEW Champion . Do more with less code and in less time .

  • The PSE 10 process doesn't stop after closing the application. Why??

    On Windows 7, the PSE 10 process doesn't stop when closing the  application, therefore the PSE 10 app. will not restart once it is closed. The user must stop the process from task manager or reboot before PSE 10 can be restarted on a Windows 7 machine. The forum suggestion to double-click the exe (instead of the shortcut) as a solution, obviously isn't a solution and can't work. There are no updates to PSE 10 and the only access to any support is through this forum. There have been complaints about this on blogs all over the Internet. Why can't Adobe come up with a fix/update or if they have where is it posted?

    First of all, there is no difference between the files on the disk and those downloaded as the trial. The only difference is that one comes with a serial number and the other does not. You can put your serial number into the trial version and it will then be activated. The only way the disk would behave differently is if there is some physical flaw (scratches, warping, etc). Usually such damage will cause the installation to fail, it's pretty difficult for such damage to modify the files in such a way that they still install but behave differently.
    If you are dropping a file on the shortcut and the Photoshop Elements Editor is opening but the file is not, there could be a few different things going on there. Check your shortcut properties first: does it go to PhotoshopElementsEditor.exe or Photoshop Elements 10.0.exe? If the former, then there are probably some missing support files. If the latter, this is the Welcome Screen, which has likely been configured to launch the Editor automatically. However, you would be sending the file to the Welcome Screen, which doesn't do anything with the file. It is not capable of passing the file off to the Editor, only capable of launching it.
    Also, double-clicking a shortcut is generally the exact same thing as double-clicking the file the shortcut points to, but you can add modifiers to shortcuts to make them behave differently.

  • Printing from an IPad2 to my C410A printer stopped after shared the printer.

    Please help to clear up my IPad2/HP Printer problem.  I have a HP C410a.  The C410a printer is wired to a Dell desktop.  The Dell desktop is wired to my Cisco Linksys E4200 router.  The C410 shows a strong wireless signal to the Cisco router.  A year ago, a MacBook Air and two IPads were brought into my home wireless network.  They instantly and automatically saw the C410 printer.  They could print.  Six months later, I introduced an additional Dell desktop to my home network.  It has a wireless connection to the router.  It could not see the printer.  I made the printer a shared printer. The new Dell desktop then saw the printer and could print.  The three Apple products then could no longer see the printer.  With research, I was able to use the options on the Air laptop to find the printer, and now it works on the printer.  The IPads do not offer the same menu options as the laptop, and I cannot point them to the printer.  How can I get the IPads to see the C410a printer, again?  Everyone has the latest SW.  Everyone has been unplugged and turned on in the right order.  Thanks!

    I think I may know what is going on....from what your telling me your connected to the Dell PC via USB and the printers wireless radio was on....that is why the ipads could see it because it was broadcasting a signal.  IF that is the case then your printer probally is not broad casting the signal anymore.  The Printer must be wireless or ethernet to the router or the printer just needs to broad broadcast a signal for the iPads to see it.
    I was an HP employee
    If I have helped you solve your issue please mark it as solved
    **Say Thanks By Clicking on the Kudos Star**

  • SAP stop after of the start

    Dear Gurus!!!!
    I've executed an system copy homogeneous, but when I executed start SAP, this stop wp's.
    In the trace of the Developer trace of the disp+work shows me the following message:
    trc file: "dev_disp", trc level: 1, release: "640"
    Mon Feb 19 21:01:18 2007
    kernel runs with dp version 128(ext=102) (@(#) DPLIB-INT-VERSION-128)
    length of sys_adm_ext is 312 bytes
    systemid   561 (PC with Windows NT)
    relno      6400
    patchlevel 0
    patchno    43
    intno      20020600
    make:      multithreaded, ASCII, 64 bit
    pid        6104
    ***LOG Q00=> DpSapEnvInit, DPStart (01 6104) [dpxxdisp.c   1100]
         shared lib "dw_xml.dll" version 43 successfully loaded
         shared lib "dw_xtc.dll" version 43 successfully loaded
         shared lib "dw_stl.dll" version 43 successfully loaded
         shared lib "dw_gui.dll" version 43 successfully loaded
    Mon Feb 19 21:01:22 2007
    WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  3886]
    MtxInit: -2 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: JAVA is not active
    DpShMCreate: sizeof(wp_adm)          6624     (828)
    DpShMCreate: sizeof(tm_adm)          2847776     (14168)
    DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    DpShMCreate: sizeof(comm_adm)          212000     (424)
    DpShMCreate: sizeof(vmc_adm)          0     (400)
    DpShMCreate: sizeof(wall_adm)          (25648/36736/64/104)
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 000000000E970050, size: 3159136)
    DpShMCreate: allocated sys_adm at 000000000E970050
    DpShMCreate: allocated wp_adm at 000000000E971850
    DpShMCreate: allocated tm_adm_list at 000000000E973230
    DpShMCreate: allocated tm_adm at 000000000E973260
    DpShMCreate: allocated wp_ca_adm at 000000000EC2A680
    DpShMCreate: allocated appc_ca_adm at 000000000EC2ECD0
    DpShMCreate: allocated comm_adm_list at 000000000EC30440
    DpShMCreate: allocated comm_adm at 000000000EC30460
    DpShMCreate: allocated vmc_adm_list at 000000000EC64080
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 000000000EC640B0
    DpShMCreate: allocated wall_adm at 000000000EC640C0
    MBUF state OFF
    Mon Feb 19 21:01:23 2007
    EmInit: MmSetImplementation( 2 ).
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 127 blocks reserved for free list.
    ES initialized.
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG Q0K=> DpMsAttach, mscon ( SRV01037) [dpxxdisp.c   9736]
    CCMS: Initalizing shared memory of size 40000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 6400, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1025]
    DpMsgAdmin: Set patchno for this platform to 43
    Release check o.K.
    Mon Feb 19 21:02:06 2007
    ERROR => W0 (pid 4596) died [dpxxdisp.c   12187]
    ERROR => W1 (pid 4396) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xbf --> 0xbe
    ERROR => W2 (pid 4208) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xbe --> 0xbc
    ERROR => W3 (pid 4244) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xbc --> 0xb8
    ERROR => W4 (pid 4236) died [dpxxdisp.c   12187]
    ERROR => W5 (pid 4476) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xb8 --> 0xb0
    ERROR => W6 (pid 3412) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xb0 --> 0xa0
    ERROR => W7 (pid 4332) died [dpxxdisp.c   12187]
    my types changed after wp death/restart 0xa0 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    killing W0-4596 (SIGUSR2)
    ERROR => DpWpKill(4596, SIGUSR2) failed [dpxxtool.c   2468]
    killing W1-4396 (SIGUSR2)
    ERROR => DpWpKill(4396, SIGUSR2) failed [dpxxtool.c   2468]
    killing W2-4208 (SIGUSR2)
    ERROR => DpWpKill(4208, SIGUSR2) failed [dpxxtool.c   2468]
    killing W3-4244 (SIGUSR2)
    ERROR => DpWpKill(4244, SIGUSR2) failed [dpxxtool.c   2468]
    killing W4-4236 (SIGUSR2)
    ERROR => DpWpKill(4236, SIGUSR2) failed [dpxxtool.c   2468]
    killing W5-4476 (SIGUSR2)
    ERROR => DpWpKill(4476, SIGUSR2) failed [dpxxtool.c   2468]
    killing W6-3412 (SIGUSR2)
    ERROR => DpWpKill(3412, SIGUSR2) failed [dpxxtool.c   2468]
    killing W7-4332 (SIGUSR2)
    ERROR => DpWpKill(4332, SIGUSR2) failed [dpxxtool.c   2468]
    NiWait: sleep (10000 msecs) ...
    NiISelect: timeout 10000 ms
    NiISelect: maximum fd=1317
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Feb 19 21:02:19 2007
    NiISelect: TIMEOUT occured (10000 ms)
    dump system status
    Workprocess Table (long)               Tue Feb 20 02:02:19 2007
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program  Cl  User         Action                    Table
    0 DIA     4596 Ended         no      1   0             0                                                             
    1 DIA     4396 Ended         no      1   0             0                                                             
    2 UPD     4208 Ended         no      1   0             0                                                             
    3 ENQ     4244 Ended         no      1   0             0                                                             
    4 BTC     4236 Ended         no      1   0             0                                                             
    5 BTC     4476 Ended         no      1   0             0                                                             
    6 SPO     3412 Ended         no      1   0             0                                                             
    7 UP2     4332 Ended         no      1   0             0                                                             
    Dispatcher Queue Statistics               Tue Feb 20 02:02:19 2007
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    3
    2000
    10
    10
    --------++++--
    +
    DIA
    5
    5
    2000
    5
    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          13
    wake_evt_udp_now     0
    wake events           total     9,  udp     8 ( 88%),  shm     1 ( 11%)
    since last update     total     9,  udp     8 ( 88%),  shm     1 ( 11%)
    Dump of tm_adm structure:               Tue Feb 20 02:02:19 2007
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    Workprocess Comm. Area Blocks               Tue Feb 20 02:02:19 2007
    =============================
    Slots: 300, Used: 1, Max: 0
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    --------++--
    +
    0
    DISPATCHER
    -1
    WPCAAD000
    NiWait: sleep (5000 msecs) ...
    NiISelect: timeout 5000 ms
    NiISelect: maximum fd=1317
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Feb 19 21:02:25 2007
    NiISelect: TIMEOUT occured (5000 ms)
    Shutdown server ...
    DpJ2eeDisableRestart
    DpModState: buffer in state MBUF_PREPARED
    NiBufSend starting
    NiIWrite: write 110, 1 packs, MESG_IO, hdl 3, data complete
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    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
    Stop work processes...
    Stop gateway
    killing process (2896) (SOFT_KILL)
    Stop icman
    killing process (4624) (SOFT_KILL)
    Terminate gui connections
    [DpProcDied] Process lives  (PID:2896  HANDLE:1284)
    waiting for termination of gateway
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1317
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Feb 19 21:02:26 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process died  (PID:2896  HANDLE:1284)
    [DpProcDied] Process lives  (PID:4624  HANDLE:1276)
    waiting for termination of icman
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1317
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Feb 19 21:02:27 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:4624  HANDLE:1276)
    waiting for termination of icman
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1317
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Feb 19 21:02:28 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:4624  HANDLE:1276)
    waiting for termination of icman
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1317
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Feb 19 21:02:30 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:4624  HANDLE:1276)
    waiting for termination of icman
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1317
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Feb 19 21:02:31 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:4624  HANDLE:1276)
    waiting for termination of icman
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1317
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Feb 19 21:02:32 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:4624  HANDLE:1276)
    waiting for termination of icman
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1317
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Feb 19 21:02:33 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:4624  HANDLE:1276)
    waiting for termination of icman
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1317
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Feb 19 21:02:34 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:4624  HANDLE:1276)
    waiting for termination of icman
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1317
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Feb 19 21:02:36 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:4624  HANDLE:1276)
    waiting for termination of icman
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1317
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Feb 19 21:02:37 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process lives  (PID:4624  HANDLE:1276)
    waiting for termination of icman
    NiWait: sleep (1000 msecs) ...
    NiISelect: timeout 1000 ms
    NiISelect: maximum fd=1317
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Mon Feb 19 21:02:38 2007
    NiISelect: TIMEOUT occured (1000 ms)
    [DpProcDied] Process died  (PID:4624  HANDLE:1276)
    DpHalt: cancel all lcom connections
    MPI CancelAll 2 -> 0
    MPI DeleteAll 2 -> 0
    NiIMyHostName: hostname = 'SRV01037'
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    DpConvertRequest: net size = 163 bytes
    NiBufSend starting
    NiIWrite: write 562, 1 packs, MESG_IO, hdl 3, data complete
    MsINiWrite: sent 562 bytes
    send msg (len 110+452) to name          -, type 4, key -
    detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   9962]
    NiBufSend starting
    NiIWrite: write 110, 1 packs, MESG_IO, hdl 3, data complete
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiSelClear: removed hdl 3 from selectset
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    blks_in_queue/wp_ca_blk_no/wp_max_no = 1/300/8
    LOCK WP ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 20)
    MBUF component DOWN
    NiBufClose: clear extensions for hdl 3
    NiBufSetStat: bufstat of hdl 3 changed from OK to OFF
    NiICloseHandle: shutdown and close hdl 3 / socket 1296
    MsIDetach: detach MS-system
    EsCleanup ....
    ***LOG Q05=> DpHalt, DPStop ( 6104) [dpxxdisp.c   8495]
    Good Bye .....
    And in the trace shows me the message
    >TS> Mon Feb 19 21:08:30 2007
    T:3484 ======> Connect to SAP gateway failed
    Connect_PM  TPNAME=IGS.DET, GWHOST=SRV01037, GWSERV=3301
    ERROR       partner not reached (host 192.168.9.225, service 3301)
    TIME        Mon Feb 19 21:08:30 2007
    RELEASE     640
    COMPONENT   NI (network interface)
    VERSION     37
    RC          -10
    MODULE      nixxi_r.cpp
    LINE        8593
    DETAIL      NiPConnect2
    SYSTEM CALL SiPeekPendConn
    ERRNO       10061
    ERRNO TEXT  WSAECONNREFUSED: Connection refused
    COUNTER     8
    Please, your help me

    HI Luis,
    This may be due to Network related problem with DNS server, better to take help of your network team to resolve this.
    Please refer these notes for detailed infol
    525900 - GZZ > 1 possible network problems detected
    501902 - Error in the SAP dispatcher
    124562 - Hostname resolution problems (DNS timeouts)
    Cheers,
    Shaym

  • Firefox exe dont stop after closing the browser

    firstly i open firefox then when i want to close it i press the x button. it closes. but the firefox.exe process doesnt close. so my computer locks. the cpu usage raise 100%. i cant do anything. my solution is closing the process from the task manager. but i am bored doing that everytime. i formatted my pc several times. checked it by kaspersky uptodate. i dont estimate that i have a virus. because firefox did this problem immediately after the pc format. i formatted the pc. then before drivers i installed firefox but it was the same problem again. i like the browser but this grate my nerves. send the massege to my e mail addres [email protected]

    https://support.mozilla.com/en-US/kb/Firefox%20hangs <br />See '''hang-at-exit'''

  • Background java thread stops after running the fx thread

    in my server thread i am accepting a file . so i used Platform.runLater() to display a scene that gets confirmation from user. But when it reach the scene it is not going back to the server thread.
    class server implements Runnable
    public void run()
    while(true)
    // accepts client
    Platform.runLater(new Runnable(){    //  after this fx its not goin to the while
    // display confirmation message
    // writing the file
    }

    Post a bit more code, calling Platform.runLater() will not cause this behaviour. In fact, it should immediately return and continue with the while. You can add print statements if you want to be sure what is happening.
    The only reason I could think of is if the while(true) is already on the FX application thread but that seems unlikely.

  • Forms process won't stop after closing the browser

    I am running the Forms (904) in the application server. When I close the browser, the forms process (on the server) ifweb90.exe won't stop on the server.
    Is there a message that can be catched when the browser is closed? thanks.
    I am running the forms on XP.

    Hi,
    the forms processes on the middle tier will stop when the listener servlet recognises that the client applet doesn´t exist anymore.
    The amount of time the listener servlet needs to recognize that the client applet doesn´t exist anymore depends on the "heartbeat" and the "timeout" Parameters configured in the formsweb.cfg Configuration File of the Oracle Webforms Installation.
    Normally you don´t have to worry about these parameters their default values will fit the most environments.
    regards

  • Itunes 10.5.3 stop after playing the first video, and i need to restart itunes in order to play another video..

    anyone know how to solve this problem? previously i was able to play multiple video without having any problem..

    I'm having this same problem, did you figure out how to fix it?

  • When installing Flash, it stops right around the begging while, "Trying to connect to the server", anyone know how to fix this?

    Like I said, when trying to connect to the server, the installation makes no progress, for hours. I've tried re-downloading the installer, simply restarting the installation, and i can't think of anything else to do. Does anyone have a fix to this?

    Do those folders exist on the server?
    You'll need to navigate into the mailstore folder via terminal.
    With dovecot, all folders start with a "."
    Do you see all of those dup folders?
    Check permissions on your entire mailstore, everything should be owned by '_dovecot' and group 'mail'
    You could reset perms of the mailstore (assuming default location of the mailstore) with:
    sudo chown -R _dovecot:mail /Library/Server/Mail/Data/mail/

  • After installing the Ipad IOS 7 had to be restored

    I can not stop.After installing the Ipad IOS 7 had to be restored and now it will not boot, just the apple on the black screen. What can I do now????

    Try putting your iPad into recovery mode in order to restore now.
    http://support.apple.com/kb/HT1808

  • Retrieve namespace  declarations from unmarshalled object

    Hi,
         I hope this is a beginner's question:
    Still working on a web service, that uses an EJB for implementation. I'm using types/classes that were derived automatically from a WSDL (top-down/outside-in/what have you), or rather the corresponding schemata. I'm trying to retrieve namespace declarations from the unmarshalled object/element, but  they are not contained in the "otherAttributes" [Map<QName, String>] member field of the respective object. However, I can retrieve any other attribute, qualified and non qualified, as long as the namespace isn't that of xmlns (http://www.w3.org/2000/xmlns/). For example:
    Client:
                MyElement my_element = new MyElement();
                Map<QName, String> atts = my_element.getOtherAttributes();
                QName ns_att = new QName("http://www.w3.org/2000/xmlns/", "a");
                atts.put(ns_att, "http://www.example.com/");
                QName test_att = new QName("test-att");
                atts.put(test_att, "http://www.example2.com");
    Service:
                MyElement my_element = parent.getMyElement(); // ...
                Map<QName, String> atts = my_element.getOtherAttributes();
                for (QName qn :  atts.keySet()) {
                    System.out.println("qn: ["+qn+"] value["+atts.get(qn)+"]");
    This would print:
    qn: [test-att] value[http://www.example2.com]
    What am I missing? How do I get the namespace declaration? Thanks for your help in advance.
    Cheers,
    Felix

    I'll try to explain in a better way ...
    I have a server with 2 different client and each client communicate to the server with a different interface.
    My needs are to recognize from the server, the type of the client that are operating, and to do this I was thinking to recognize the interface used from the client to interact with the server
    An other option is that, from the client, after retrieving the server and it's cast, a can call a method to pass to the server object, the type of the interface actually used.
    But I think this makes a bit of nonsense because When I receive the marshalled object in my opinion doesn't make sense that i have to say the object it's type (the interface used).
    the object is already alive and I think it has to know the interface used to refer it even if is on another VM
    The cast operation doesn't store nothing into the current object instance?
    local code example (I don't know if with JRMI the situation is different because the different JVM)
    Map foo = new HashTable();
    I need a method like
    foo.curretUsedInterface() ... that return "Map"
    instead of
    foo.getClass().getName() that return "HashMap"
    It's possible to obtain this information or I have to try another idea to make the server distinguish the client type?
    thank you very much for your comprehension

  • Retrieve used interface from implementation class

    Hi to everyboby
    I have a remoteObject that implement 2 interface (I1, I2). These interfaces are child of common father interface (I0).
    This remote object is received unmarshalled and casted to one of the to directly implemented interface I1 or I2,
    After that I want to execute a method declared into the interface I0 on the server side, that prints out the name of the interface used during casting after the unmarshall operation on the client side.
    How can I retrieve the name of the current interface used to refer the object into the client side, from the server side?
    Anyone as suggestions?
    thank you very much
    Edited by: dj3mb3 on Jun 10, 2010 5:49 AM

    I'll try to explain in a better way ...
    I have a server with 2 different client and each client communicate to the server with a different interface.
    My needs are to recognize from the server, the type of the client that are operating, and to do this I was thinking to recognize the interface used from the client to interact with the server
    An other option is that, from the client, after retrieving the server and it's cast, a can call a method to pass to the server object, the type of the interface actually used.
    But I think this makes a bit of nonsense because When I receive the marshalled object in my opinion doesn't make sense that i have to say the object it's type (the interface used).
    the object is already alive and I think it has to know the interface used to refer it even if is on another VM
    The cast operation doesn't store nothing into the current object instance?
    local code example (I don't know if with JRMI the situation is different because the different JVM)
    Map foo = new HashTable();
    I need a method like
    foo.curretUsedInterface() ... that return "Map"
    instead of
    foo.getClass().getName() that return "HashMap"
    It's possible to obtain this information or I have to try another idea to make the server distinguish the client type?
    thank you very much for your comprehension

  • Hi,  iTunes is no longer syncing my iPhoto library to my iPhone 4. Everything was syncing fine when I first got the phone, but, over the past week or so, it's stopped syncing photos.   Now, after attempting to start from scratch by deleting all the photos

    Hi,
    iTunes is no longer syncing my iPhoto library to my iPhone 4. Everything was syncing fine when I first got the phone, but, over the past week or so, it's stopped syncing photos.
    Now, after attempting to start from scratch by deleting all the photos on my iPhone, iTunes won't sync ANY photos from iPhoto back to my iPhone. I've restarted my phone, computer, etc., force quit all photo-related apps on my iPhone, and tried various combinations of turning iTunes' photo syncing on/off, switching photo sync folders, etc., all to no avail -- I can't get my iPhoto library back on to my iPhone no matter what I do.
    Anyone encounter a similar situation? (I've already sent feedback to Apple.) Thanks in advance.

    Try deleting what is called the iPod Photo Cache. 
    http://support.apple.com/kb/TS1314

Maybe you are looking for

  • Photoshop cs6 for mac os x 10.6.8 with problem

    I downloaded photoshop cs6 this adobe.com to my mac, and when I open says no and open 'compatible with this type of mac. because  this appearing  this?  My mac is ' mac os x 10.6.8. how do I download it compatible with my mac?

  • Which iOS SDK does AIR 3.5 use?

    How can we find out which iOS SDK is being used by Adobe AIR? We're using Adobe AIR SDK 3.5 with Flash Builder. Is it possible to change the iOS SDK? The -platformsdk compiler argument shows as unsupported inside Flash Builder. Thank you.

  • Problem in sending email ??

    Hi Guys we are facing a strange problem. We have a lot os programs which sends emails from SAP. Since this week the system is not sending any emails. Once the program is executed the program generates the emails which we can see in the SOST transacti

  • Load Path as Selection

    I completed my path and clicked Load Path as a Selection.  I have 2 cut out areas (holes) in the path, and the selection process did not include the holes, even though the path shows them.  I had the button pressed "exclude overlapping path areas" wh

  • Reg OAF page creation

    Hi , Can we create a OAF page based on global temporary table? Regards,