Netscape Messaging Server & iPlanet Web Server question

The netscape messaging server (v 4.1) is receiving emails which are html-only formatted. Through webmail, the body appears to be empty. When checking the message store, the message is not empty. When accessing through webmail, we are able to view the emails that arrive in the html and plain text formats (both together) or plain text, but not those that arrive html-only. The webserver is iPlanet Web Server, Enterprise Edition.
Is there any workaround for that, or is it a limitation of the web server?

WEll, um,
1. Netscape Messaging Server 4.xx, all versions have been End Of Support life for over 2 years.
2. There is no web server involved, here. Messaging itself serves the http interface.
3. Yes, there is a workaround. Upgrade. You're using very old bits, and the only real answer is for you to use a current product, if you need current features.
Messaging Server 5.2p2 is considered "mature", though still under support. No new features are getting added.
Messaging Server 6.2 is the current product. It's part of the Sun Java Enterprise System, and may be downloaded.

Similar Messages

  • After installing iPlanet Web Server v6 SP2, there is error message: https-admserv60 cannot be found??

    After installing iPlanet Web Server v6 SP2 on Windows 2000 SP2, error message in the event log shows up. "The description for Event ID ( 0 ) in Source ( https-admserv60 ) cannot be found."
    "The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. The following information is part of the event: startup: server started successfully."
    The iPlanet 6SP2 seems to work fine but these error message occur after rebooting the server. There is actually 2 messaages: one for the admin server and the
    other for the actual web server instance. Both state
    'server started successfully' but these messages still
    appear.
    Any ideas how to correct this?
    Thanks,
    JD Trinaca

    this will occur, as the 6.x servers do not use the lodctrl to place the perf monitor messages in the registry...as long as the server starts & runs ok, you can ignore these particular errors

  • Iplanet web server 6.0 ACL question

    Hi,
    I am using ACLs to protect some of my URLs in iplanet web server 6.0.
    I am getting one problem. Its not a problem actually but would like to know how to avoid authenticating the users 2 times.
    In my ACL file, when ever I create an entry for a path, I am getting the following by default.
    authenticate (user,group) {
    database = "default";
    method = "basic";
    My entry is like this with the above lines.
    acl "path=/www/develop/itsecurity/admin";
    authenticate (user,group) {
    database = "default";
    method = "basic";
    allow absolute (all)
    (user = "modadmin");
    allow absolute (all)
    (user = "itsecadm");
    deny (all)
    (user = "anyone");
    Now if the entry is like this with
    authenticate (user,group) {
    database = "default";
    method = "basic";
    after the first line, then whenever that particulaar user "itsecadm" tries to access the URL, he gets userid and password dialogue box. After entring into the page, if he tries to access or click any other link, it is asking the userid and password again.If he gives this second time, next time onwards it is not asking userid and password.
    But When I remove the lines
    authenticate (user,group) {
    database = "default";
    method = "basic";
    from the file for that particular entry, it is not asking 2nd time userid/password.
    Could you please tel me why this happening. Why this entry is created whenever I am adding a new one into ACL file?
    Is any one facing the similar problem with iplanet web server 6.0 ACL files?
    Thanks & Regards
    Murthy

    Hi,
    Thank you for your suggestion. I have tried with your option also. Still I am getting the second time userid/password dialogue box.
    Is there any other solution to avoid the second time user authentication dialogue box?
    Do you want to see the ACL file?
    Thanks & Regards,
    Murthy

  • FW: iPlanet Web Server 4.x Advisory

    All--
    A message from iPlanet about iWS:
    Recommend Immediate Patch/Upgrade
    We are writing to inform you of an important upgrade recommendation. iPlanet
    has identified a security vulnerability in the iPlanet Web Server Enterprise
    Edition 4.x products. This problem does not affect any Web Server releases
    prior to the 4.x versions, however it does affect all iPlanet applications
    operating on the Web Server platform.
    A patch and implementation instructions to address the problem are now
    available on the iPlanet.com Tech Support site at
    http://www.iplanet.com/support/. Without this patch/upgrade, the problem
    will persist and affect your site's data security, potentially leading to a
    data corruption event.
    iPlanet urges all iPlanet Web Server customers to upgrade immediately to
    prevent any potential data security risks, and we apologize for any
    inconvenience that this may cause you.
    If you have additional technical questions, please call your technical
    support contact.
    Sincerely,
    Annelies Habermacher
    Vice President, Worldwide Customer Support
    iPlanet E-Commerce Solutions
    See the following links for more information:
    http://atstake.com/research/advisories/2001/index.html#041601-1
    http://www.kb.cert.org/vuls/id/276767
    The iPlanet JATO Team

    Can you provide the error logs file of the instance which fails to start?
    Thanks

  • Global data in a servlet using iPlanet Web Server

    Our configuration is an Applet->Servlet->JNI->C/C++ code.
    We have C code that does a number of lengthy mathematical calculations. This C code not only uses its own global variables but, it is also comprised of numerous subroutines that all call each other, reading and writing global C variables as they go. These globals are all isolated to the C code shareable object (.so) library that is included using the LoadLibrary call when the servlet is initialized.
    The problem is that in a multi-user environment (3-5 simultaneous users) we need to have each user have their own "copy" of the servlet (and the C code) so that users will not be accessing each other's global data. We can NOT have only one copy of the C code and define it as synchronized because the calculations that are performed can take a very long time and we can not hold off user requests while the firs user finishes.
    Our hope is that there is a way to configure the iPlanet Web server such that each new user that starts up a copy of the Applet/Servlet combination will get their own "space" so that they can work independently of any other user. We have at most 20 users of this system and only 3-5 simultaneous users so we should not have a problem with memory or CPU speed.
    If anyone has a solution, I would greatly appreciate it!

    The C library is shareable. But you don't want it to be shared. That's your question summarized, isn't it?
    You probably can't prevent it from being shared, so to prevent multiple use of it you would have to queue up the requests to be done one at a time. WynEaston's suggestion of having the servlet implement SingleThreadModel would help, but I believe the servlet spec allows servers to run multiple copies of a servlet that does that (as opposed to running a single copy in multiple threads).
    Your other alternative is to rewrite the math in Java, or at least in some object-oriented language where you don't need global variables (which are the source of your problem). All right, I can already hear you saying "But that wouldn't be as fast!" Maybe not, but that isn't everything. Now you have a problem in queueing theory: do you want a single server that's fast, but jobs have to wait for it, or do you want multiple servers that aren't as fast, but jobs don't have to wait? That's a question you would have to evaluate based on the usage of your site, and it isn't an easy one.

  • Plumtree portal server (v5.0.1) hosted on iPlanet Web Server (v6.0)

    Has anyone tried to port the Plumtree Corporate Portal v5.0.1 portal server component to iPlanet Enterprise Web Server 6.0 (aka SunONE Web Server, v6.0 )? Plumtree doesn't support this, but I am trying to merge a custom SSO authenticator to the Plumtree portal (v5.0.1). The authenticator runs as a plug-in to SunONE Web Server and has been in place on our customer's web site for a long time now.
    I have this working great in with SSL turned off, but I am having a difficult time getting past an error when I turn on SSL. I can get the portal server to run fine with SSL turned on through Tomcat on the same machine, using the same certificate and JRE. I can also get the SunONE server to run other servlet applications fine with SSL turned on. However, there appears to be either: (1) an incompatibility between SunONE's NSServlet plug-in that handles servlets and the Plumtree framework classes that set up replies via SSL, or (2) a configuration error in my setup somewhere. I'm hoping that (2) is the real culprit, but I've tried just about everything I can think of, and haven't been able to resolve this problem.
    The server starts up fine and I can load non-portal content without a problem. But when I log in, the portal's main community page that should be returned is not being returned to the client. PTSpy (a debugging aid for the Plumtree portal) doesn't indicate any problems, so I know the content is being built by the portal correctly, but the built page is never being sent back to the requesting client.
    Here is the error that gets logged to my SunONE server's error log:
    [29/Dec/2003:15:05:53] failure ( 2772): Internal error: Unexpected error condition thrown (unknown exception,no description), stack: java.lang.NoClassDefFoundError: javax/net/ssl/SSLSocket
    at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:793)
    at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:702)
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:583)
    at java.net.URL.openStream(URL.java:960)
    at org.apache.xerces.readers.DefaultReaderFactory.createReader(DefaultReaderFactory.java:149)
    at org.apache.xerces.readers.DefaultEntityHandler.startReadingFromDocument(DefaultEntityHandler.java:493)
    at org.apache.xerces.framework.XMLParser.parseSomeSetup(XMLParser.java:314)
    at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:1097)
    at org.apache.xerces.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:195)
    at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:124)
    at com.plumtree.openfoundation.xml.dom.XPBuilder.LoadDocumentFromURI(XPBuilder.java:203)
    at com.plumtree.xpshared.jsutil.JSRegistry.LookupJSComponentVersions(JSRegistry.java:243)
    at com.plumtree.xpshared.jsutil.JSRegistry.GetJSComponentVersions(JSRegistry.java:184)
    at com.plumtree.xpshared.jsutil.JSRegistry.GetJSComponent(JSRegistry.java:465)
    at com.plumtree.xpshared.jsutil.JSRegistry.GetJSComponent(JSRegistry.java:444)
    at com.plumtree.uiinfrastructure.statichelpers.ConfigHelper.GetCommonJSIncludes(ConfigHelper.java:1330)
    at com.plumtree.uiinfrastructure.form.AFormAS.DisplayCommonJavaScript(AFormAS.java:59)
    at com.plumtree.portalpages.common.uiparts.PlumtreeAS.DisplayCommonJavaScript(PlumtreeAS.java:88)
    at com.plumtree.portalpages.common.uiparts.PlumtreeDP.DisplayHead(PlumtreeDP.java:599)
    at com.plumtree.portalpages.common.uiparts.PlumtreeDP.Display(PlumtreeDP.java:112)
    at com.plumtree.portaluiinfrastructure.activityspace.Interpreter.ProcessDisplayPageOrRedirect(Interpreter.java:816)
    at com.plumtree.portaluiinfrastructure.activityspace.Interpreter.HandleRequest(Interpreter.java:1589)
    at com.plumtree.portaluiinfrastructure.activityspace.Interpreter.DoService(Interpreter.java:448)
    at com.plumtree.uiinfrastructure.web.XPPage.service(XPPage.java:141)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.iplanet.server.http.servlet.NSServletRunner.invokeServletService(NSServletRunner.java:919)
    at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1061)
    at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:981)It looks like a Java classpath issue, but I've verified (even in the same log file with java debugging turned on) that the SSLSocket class is getting loaded. I've even tried moving the specification of the jar file containing this class (jsse.jar, part of the JRE) to the beginning and end of my classpath setting.
    I'm using the same JRE that is bundled with the Tomcat release supplied with my Plumtree 5.0.1 installation (1.4.1_02). I can't get the JRE that came bundled with the SunONE v6.0 release to work at all.
    I've posted a similar message on a couple other forums (Java and iPlanet-related, as well as on Plumtree's customer forum) and haven't found an answer yet. Does anyone have any ideas?

    In case anyone else experiences this, I have apparently stumbled upon an issue with iPlanet's handling a specified JRE/JDK instead of the supplied JDK in iPlanet Web Server v6.0, SP5, though I found a way around it to resolve my problem.
    I had been specifying a different JRE to run with through the administrative server manager. However, even though I was specifying to load all the JRE's jar files in my classpath setting, iPlanet was only loading the rt.jar file for my specified JRE. With verbose logging turned on, the error log was indicating that the other classpath specified jar files were being loaded, but apparently they were not being used. The JDK that was released with iPlanet appears to be being used for all other JRE classes outside of those defined in rt.jar. Since the JDK supplied with the iPlanet release didn't contain jsse.jar, which contains SSL support, it was not being loaded and was causing the problem I was seeing.
    Instead of specifying the JRE of a different JDK that I was using, I changed the global setting in the administrative server manager to override the entire JDK. This has resolved my problem.
    So if you specify a JRE to override the iPlanet supplied JDK/JRE, it appears that only the rt.jar file of the specified JRE will be loaded, and the jar files associated with the iPlanet-supplied JRE will be used for all other classes. Specification of a complete JDK to override the supplied one will resolve this.

  • Calling servlet problem in iPlanet web server.

    Hello, friends.
    I have installed iPlanet web server 6.0. After installation I am using the default virtual server only. Thus, for all testing pages also, I use the default Document Root only (C:\iplanet\servers\docs\testsite) (I think, here "docs" is the default document root, right? If I am wrong, please correct me). I have got 2 JSP pages and 1 servlet. I put the JSP pages, into "testsite" folder and put the servlet into a folder called "myservlets" (C:iplanet\servers\docs\myservlets).
    The jsp1.jsp page calls the servlet.class and in return the servlet redirects to jsp2.jsp page.
    My question is: what paths should I use in jsp1.jsp file and in servlet.class file?
    Thanks in Advance for all your help,
    ~ Nirav

    There is a major security breach in authenticating
    iPlanet Web Server 6.0 SP3 and SP4 using Sun ONE
    Directory Server. Using a valid user id, any
    password except null string would allow user access
    the restricted resources. iPlanet Web Server 6.0 SP5
    and 4.1 SP12 worked fine with similar configuration.Did you get an answer for this?
    We are having the exact same problems with our iPlanet Web server 6.0 SP3.
    thank you.

  • Deploying war files on iplanet web server 6.0

    Hello All,
    I tried to deploy an war file on iplanet web server 6.0 using both command line wdeploy and iplanet webserver browser based admin tool. Both the times it did say successfully deployed. I checked the WEB-INF files and it does contain all class files..But the problem is when I try to post a form to one of the class files the error log says as if it cannot find the class file.(I tried the sample app HelloWorld supplied by vendor)
    =========
    05/Mar/2002:13:19:14] config (13777): for host xx.xx.xx.xx trying to POST /samples/helloworld/GreeterServlet, handle-processed reports: The request method is not applicable to this requested resource.
    =================
    any help in this regards is appreciated
    Thanks
    sudhir

    Hello,
    I got few steps to deploy the WAR file, if you followed the same steps and got the error then ignore this else try with this steps.
    a) Set your environment variable IWS_SERVER_HOME to your server_root directory.
    b) Add the server_root/bin/https/httpsadmin/bin directory to your classpath.
    c) Configure your virtual server for web applications.
    From the Server Manager page, select the VirtualServerClass tab, select a Class, and click the Manage button.
    Select a Virtual Server and go to the Java Web Apps Settings page for that virtual server. Make sure that the virtual server has Web Apps State turned On, and web-apps.xml is the name of Web Apps File.
    To extract the sample WAR file HelloWorld.war in server_root/plugins/servlets/examples/web-apps/HelloWorld, use the wdeploy command as follows:
    wdeploy deploy -u /hello -i server.iplanet.com -v testvs -d
    /iws60/https-server.mydomain.com/testvs/web-apps/hello
    /iws60/plugins/servlets/examples/web-apps/HelloWorld/HelloWorld.war
    The syntax for the command is as follows:
    wdeploy deploy -u uri_path -i instance -v vs_id [-d directory] war_file
    uri_path Specify the URI prefix (a path to access the web application from the browser).
    instance Specify the server instance name. (Note: Do not include "https" in the front.)
    vs_id Specify the Virtual Server name as it appears on the Manage Virtual Servers page.
    directory Specify a directory to extract WAR files. If this directory doesn't exist already, it will be created for you now.
    war_file Specify the name of the WAR file.
    If the WAR file is extracted successfully, the message "web application deploy successful" appears at the command line.
    For verification, go to the /iws60/https-server.iplanet.com/testvs/web-apps/hello directory. It should have the following contents:
    colors
    index.jsp
    META-INF
    WEB-INF/
    web.xml
    /classes/
    HelloWorldServlet.class
    HelloWorldServlet.java
    SnoopServlet.class
    SnoopServlet.java
    In the server_instance/config directory, the web-apps.xml file should have the following entry:
    <vs>
    <web-app uri="/hello"
    dir="/iws60/https-server.iplanet.com/testvs/web-apps/hello"/>
    </vs>
    Restart the server instance from the command line or go to the admin GUI and apply configuration changes to the server instance.
    Now when you access the webserver instance in your browser, the Error log of that server instance will record successful initialization of the web application environment(web-apps.xml) for the virtual server(vs name). You can access the web application from a browser as follows:
    http://server.Mydomain.com:80/hello/index.jsp
    or:
    http://server.Mydomain.com/hello/
    The syntax is as follows:
    http://vs_urlhost[:vs_port]/uri_path/[index_page]
    Thanks
    Selva

  • Using Struts Example in IPlanet web Server 6.0

    Hai
         i am new to struts and i was trying to run the example application shiped along with the binary distribution
         in iplanet webserver 6.0.
         I have extracted the struts-example.war file in to a folder named strutsexamples under my iplanetdocroot\servers\docs\ Using the
         link DeployWebApplications in the admin side of the iplanet application.
         By doing the above steps all the example files are extracted in to the folder iplanetdocroot\servers\docs\strutsexamples directory .
    Problem 1:      when i restarted the server i found the following error in the log file
              [06/Apr/2003:19:58:03] info ( 394): successful server startup
              [06/Apr/2003:19:58:03] info ( 394): iPlanet-WebServer-Enterprise/6.0SP1 B08/20/2001 01:49
              [06/Apr/2003:19:58:05] info ( 394): Installing a new configuration
              [06/Apr/2003:19:58:05] info ( 394): [LS ls1] http://gdcblr1596.gdcblr, port 80 ready to accept requests
              [06/Apr/2003:19:58:05] info ( 394): A new configuration was successfully installed
              [06/Apr/2003:19:58:09] info ( 394): Loading IWSSessionManager by default.
              [06/Apr/2003:19:58:09] info ( 394): IWSSessionManager: Maximum number of sessions is 1000
              [06/Apr/2003:19:58:10] info ( 394): Adding web application (/diva) at (E:/iPlanet/Servers/docs/diva)
              [06/Apr/2003:19:58:10] info ( 394): Loading IWSSessionManager by default.
              [06/Apr/2003:19:58:10] info ( 394): IWSSessionManager: Maximum number of sessions is 1000
              [06/Apr/2003:19:58:10] info ( 394): Adding web application (/struts) at (E:/iPlanet/Servers/docs/struts)
              [06/Apr/2003:19:58:10] info ( 394): Loading IWSSessionManager by default.
              [06/Apr/2003:19:58:10] info ( 394): IWSSessionManager: Maximum number of sessions is 1000
              [06/Apr/2003:19:58:10] info ( 394): Adding web application (/strutsexamples) at (E:/iPlanet/Servers/docs/strutsexamples)
              [06/Apr/2003:19:58:10] info ( 394): Loading IWSSessionManager by default.
              [06/Apr/2003:19:58:10] info ( 394): IWSSessionManager: Maximum number of sessions is 1000
              [06/Apr/2003:19:58:11] info ( 394): vs(https-gdcblr1596.gdcblr)servlet 'action' class = 'org.apache.struts.action.ActionServlet' loaded in context =                '/strutsexamples'
              [06/Apr/2003:19:58:11] info ( 394): action: init
              [06/Apr/2003:19:58:13] warning ( 394): vs(https-gdcblr1596.gdcblr)ServletException thrown in servlet.init; context = /strutsexamples, servlet = 'action';           stack tace: javax.servlet.UnavailableException: Parsing error processing resource path
                   at org.apache.struts.action.ActionServlet.initModuleConfig(ActionServlet.java, Compiled Code)
                   at org.apache.struts.action.ActionServlet.init(ActionServlet.java, Compiled Code)
                   at javax.servlet.GenericServlet.init(GenericServlet.java:258)
                   at com.iplanet.server.http.servlet.WServletEntity.loadAndInitServlet(WServletEntity.java:98)
                   at com.iplanet.server.http.servlet.WebApplication.init(WebApplication.java, Compiled Code)
                   at com.iplanet.server.http.servlet.VirtualServer.init(VirtualServer.java, Compiled Code)
                   at com.iplanet.server.http.servlet.NSServletRunner.VSInit(NSServletRunner.java:680)
              , root cause:
              [06/Apr/2003:19:58:13] info ( 394): Successfully initialized web application environment (web-apps.xml) for virtual server (https-gdcblr1596.gdcblr)
    Problem 2: when i was trying to invoke the example by typing http://localhost/strutsexamples/ i am getting only the following errors .
                   [06/Apr/2003:20:03:17] info ( 394): vs(https-gdcblr1596.gdcblr)servlet 'jsp' class = 'org.apache.jasper.servlet.JspServlet' loaded in context =                     '/strutsexamples'
                   [06/Apr/2003:20:03:17] info ( 394): jsp: init
                   [06/Apr/2003:20:03:18] info ( 394): jsp: init
                   [06/Apr/2003:20:03:19] failure ( 394): Internal error: servlet service function had thrown ServletException (uri=/strutsexamples/):                          javax.servlet.ServletException, stack: javax.servlet.ServletException
                        at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:453)
                        at jsps.index_jsp._jspService(_index_jsp.java, Compiled Code)
                        at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
                        at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
                        at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:247)
                        at org.apache.jasper.servlet.JspServlet$JspServletWrapper.access$6(JspServlet.java:237)
                        at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:520)
                        at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:589)
                        at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
                        at com.iplanet.server.http.servlet.NSServletRunner.invokeServletService(NSServletRunner.java:891)
                        at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1064)
                        at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:953)
                   , root cause: javax.servlet.jsp.JspException
                        at org.apache.struts.util.RequestUtils.message(RequestUtils.java:975)
                        at org.apache.struts.taglib.bean.MessageTag.doStartTag(MessageTag.java:294)
                        at jsps.index_jsp._jspService(_index_jsp.java, Compiled Code)
                        at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
                        at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
                        at org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.java:247)
                        at org.apache.jasper.servlet.JspServlet$JspServletWrapper.access$6(JspServlet.java:237)
                        at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:520)
                        at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:589)
                        at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
                        at com.iplanet.server.http.servlet.NSServletRunner.invokeServletService(NSServletRunner.java:891)
                        at com.iplanet.server.http.servlet.WebApplication.service(WebApplication.java:1064)
                        at com.iplanet.server.http.servlet.NSServletRunner.ServiceWebApp(NSServletRunner.java:953)     
         I have read all the FAQ and searched in web also and i am not able to find any answer to my problem .
         Kindly if someone knows how to overcome the above problem do reply me to this id .
         If any one has got the steps to be done to use struts in IplanetWebServer 6.0 do mail me also .
    thanks and regards
    Divakar.Renganathan
    Associate Consultant
    MascotSystems .
    Bangalore.

    Hi,
    Were you successful in getting the steps for incorporating struts with iPlanet Web Server 6.0 ?
    If so, please email them to me as I am having similar problems.
    Thanks
    Harinder
    [email protected]

  • IPlanet Web Server 6.0 SP1 bug new details

    I have found more details regarding the iPlanet Web Server 6.0 SP1 web.xml
    parsing errors:
    It appears that in web.xml now the sequence of declaration of the elements
    plays role!!!!
    If I put <servlet-mapping> tag in the beginning, after that I cannot declare
    any other <servlet> tag in
    web.xml, but if I change the sequence, that is put the <servlet> tags and
    than only one <servlet-mapping> tag
    at the end than the parser works fine and the server runs.
    This is more than strange behavior, because the declaration of the elements
    should not be dependent on their sequence of declaration!!!.
    Sincerely,
    Petros Bezirganyan
    3601 Magic Dr. Shallow Creek, apt. 406
    SAN ANTONIO, TX 78229
    Phone: (210) 340-4401
    E-Mail: [email protected]
    ----------------------------------------------------------------

    Dear All,
    I want to finalize this problem.
    This behavior is actually quite normal and follows from DTD declared at
    http://java.sun.com/j2ee/dtds/web-app_2_2.dtd
    That is the element <servlet> is listed prior to the element
    <servlet-mapping>, so as we
    know from DTD syntax, when elements are separated by commas in declaration,
    their order is
    essential.
    So basically what happened, in iPlanet Web Server 6.0 SP1 the DTD
    (http://java.sun.com/j2ee/dtds/web-app_2_2.dtd) has changed, so that is why
    the old web.xml files, where the order of elements was different, became
    invalid according to the new DTD, this is all the problem.
    Thank you.
    Petros
    "Petros Bezirganyan" <[email protected]> wrote in message
    news:9nt7vn$[email protected]..
    I could find out that web.xml parsing (SAX) error occurs only if
    <servlet-mapping> tag precedes any <servlet>
    tag in Web deployment descriptor of iPlanet Web Server 6.0 SP1.
    That is if I group all <servlet> tags in the beginning and then at the
    bottom I group all the <servlet-mapping> tags,
    the SAX parser works fine and the server starts.
    In my previous messages I stated that we can have only one<servlet-mapping>
    tag, this is not true, the problem was in a position of the tag's
    declaration.
    Sincerely,
    Petros Bezirganyan
    3601 Magic Dr. Shallow Creek, apt. 406
    SAN ANTONIO, TX 78229
    Phone: (210) 340-4401
    E-Mail: [email protected]

  • IPlanet Web Server 6.1 ERROR ,URGENT

    I've Installed iPlanet Web Server 6.1 in Solaris 9 I have installed iPlanet 6.0 too its working good but 6.1 is sending this error when strating up.
    warning: CORE3283: stderr: There was an error trying to initialize the HPI library.
    warning: CORE3283: stderr: Please check your installation, HotSpot does not work correctly
    warning: CORE3283: stderr: when installed in the JDK 1.2 Solaris Production Release, or
    warning: CORE3283: stderr: with any JDK 1.1.x release.
    catastrophe: CORE4005: Internal error: unable to create JVM
    failure: CORE4009: Failed to load JVM (check your JRE)
    failure: CORE3187: Late initialization failed: Error running init function load-modules: initialization of /aplicaciones/bin/https/lib/libj2eeplugin.so failed
    Can enybody Help me with this???
    THANX!!

    Hello Dear Friend Urgent Programmer
    I'am Alfonso Franco member of Sun Developer
    that is requested your questions Look:
    1 - Please check out your System is ready to download this iPlanet Web Server 6.1
    2- Suppose that you System is ready needs to
    configure your setup add/remove program in
    you computer that matches with the Web Server
    3- if continue the problem error after this
    analize very fine the problem and for end
    we going to create the exact library and
    port in it's Servers with a Java Program Database .
    well my friend expect that thoses advice may serve something to solve this
    problem for more contact to [email protected] to follow helping sincerely as "Good Programmer "

  • The threads increase and the iPlanet Web Server 6.1SP5 restart itself

    Hi all,
    i becoming crazy, with my web servers.
    I have 3 front-end balanced servers with the same configuration:
    SunOS 5.9 Generic_118558-22 sparc SUNW,Sun-Fire-V240, 4GB RAM.
    iPlanet Web Server is 6.1 SP5
    Then the problem is:
    - When i start my Web Servers there arn't errors, but during the day, the threads (shown by "top" under under column THR) that in mornig are 300~400 increases until becoming 750~850 and one or more of them restart itself automatically; therefore my head has ordered to the society that supplies us the monitoring service to restart duning the night the web servers at a distance of little minutes in order to avoid the hang of the webs.
    How I can avoid the increment of the threads?
    Every suggestion is appreciated.
    Thanks in advance
    ---// /log/errors
    [30/Nov/2006:12:48:04] info (19508): CORE3282: stdout: 56993093 [service-j2ee-389] ERROR net.sf.ehcache.store.DiskStore - S
    ocQuotateStudiResultCache: Elements cannot be written to disk store because the spool thread has died.
    [30/Nov/2006:12:48:08] info (19508): CORE3282: stdout: 56997238 [service-j2ee-410] ERROR net.sf.ehcache.store.DiskStore - S
    ocQuotateStudiResultCache: Elements cannot be written to disk store because the spool thread has died.
    [30/Nov/2006:12:48:11] info (19508): CORE3282: stdout: 56999997 [service-j2ee-93] ERROR com.inferentiadnm.fwaext.service.dow
    nload.DownloadRightNisDealingFree - L'avviso 2006/17681.pdf non ? valido.
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: 57001322 [service-j2ee-177] ERROR FWA - com.borsaitaliana.service.Di
    splayMTF2LevDif com.inferentiadnm.display.dao.BorsaException: - FATAL EXCEPTION DURING DAO EXECUTION
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: Caused by:
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: com.icteam.IfsBridgerv7.rvbusrv7.BusException: Bridge::com.icteam.Ifs
    Bridgerv7.rvbusrv7.BusException: submit: TibrvException[error=19,message=Out of memory]
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submit(Bridge.java:437)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submit(Bridge.java:465)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submit(Bridge.java:454)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submitAndGetAnswers(Bridge.java:45
    9)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.display.dao.DaoDisplayIFSImpl.getData(DaoDispla
    yIFSImpl.java:236)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.display.dao.DaoDisplayIFSImpl.getData(DaoDispla
    yIFSImpl.java:364)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.display.dao.DaoDisplayIFSImpl.getData(DaoDispla
    yIFSImpl.java:349)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.display.manager.AbstractManager2Lev.getData(Abs
    tractManager2Lev.java:74)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.display.manager.AbstractManager2LevInt.getData(
    AbstractManager2LevInt.java:29)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.display.manager.ManagerMTF2Lev.elaboraTemplate(
    ManagerMTF2Lev.java:76)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.service.AbstractDisplay2Lev.executeCommonServic
    e(AbstractDisplay2Lev.java:84)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.service.DisplayMTF2LevDif.executeService(Displa
    yMTF2LevDif.java:67)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.fwaext.service.RequestHandlerModeler.loadModel(
    RequestHandlerModeler.java:53)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.fwaext.service.AbstractResourceModeler.getModel
    (AbstractResourceModeler.java:134)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at sun.reflect.GeneratedMethodAccessor73.invoke(Unknown Source)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodA
    ccessorImpl.java:25)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at java.lang.reflect.Method.invoke(Method.java:324)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.service.VectorSortInterceptor.invoke(
    VectorSortInterceptor.java:105)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.aop.framework.ReflectiveMethodInvocation.proc
    eed(ReflectiveMethodInvocation.java:144)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDy
    namicAopProxy.java:174)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at $Proxy1.getModel(Unknown Source)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.service.schedastrumento.ETFBusinessMo
    del.execute(ETFBusinessModel.java:54)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.compat.DelegateMapBusinessModel.invok
    eBusinessModel(DelegateMapBusinessModel.java:72)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.compat.DelegateMapBusinessModel.execu
    te(DelegateMapBusinessModel.java:52)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.EventDrivenController.handle(EventDri
    venController.java:115)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.AbstractCommandController.han
    dleRequestInternal(AbstractCommandController.java:79)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.AbstractController.handleRequ
    est(AbstractController.java:128)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapte
    r.handle(SimpleControllerHandlerAdapter.java:44)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.DispatcherServlet.doDispatch(Disp
    atcherServlet.java:684)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.DispatcherServlet.doService(Dispa
    tcherServlet.java:625)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.FrameworkServlet.serviceWrapper(F
    rameworkServlet.java:386)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkS
    ervlet.java:346)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at javax.servlet.http.HttpServlet.service(HttpServlet.java:787)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at javax.servlet.http.HttpServlet.service(HttpServlet.java:908)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardWrapperValve.invokeServletServic
    e(StandardWrapperValve.java:771)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrap
    perValve.java:322)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline
    .java:509)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardContextValve.invoke(StandardCont
    extValve.java:212)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline
    .java:509)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardHostValve.invoke(StandardHostVal
    ve.java:209)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline
    .java:509)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIP
    rocessor.java:161)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.iplanet.ias.web.WebContainer.service(WebContainer.java:580)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: com.icteam.IfsBridgerv7.rvbusrv7.BusException: Bridge::com.icteam.Ifs
    Bridgerv7.rvbusrv7.BusException: submit: TibrvException[error=19,message=Out of memory]
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submit(Bridge.java:437)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submit(Bridge.java:465)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submit(Bridge.java:454)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submitAndGetAnswers(Bridge.java:45
    9)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.display.dao.DaoDisplayIFSImpl.getData(DaoDispla
    yIFSImpl.java:236)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.display.dao.DaoDisplayIFSImpl.getData(DaoDispla
    yIFSImpl.java:364)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.display.dao.DaoDisplayIFSImpl.getData(DaoDispla
    yIFSImpl.java:349)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.display.manager.AbstractManager2Lev.getData(Abs
    tractManager2Lev.java:74)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.display.manager.AbstractManager2LevInt.getData(
    AbstractManager2LevInt.java:29)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.display.manager.ManagerMTF2Lev.elaboraTemplate(
    ManagerMTF2Lev.java:76)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.service.AbstractDisplay2Lev.executeCommonServic
    e(AbstractDisplay2Lev.java:84)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.service.DisplayMTF2LevDif.executeService(Displa
    yMTF2LevDif.java:67)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.fwaext.service.RequestHandlerModeler.loadModel(
    RequestHandlerModeler.java:53)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.fwaext.service.AbstractResourceModeler.getModel
    (AbstractResourceModeler.java:134)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at sun.reflect.GeneratedMethodAccessor73.invoke(Unknown Source)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodA
    ccessorImpl.java:25)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at java.lang.reflect.Method.invoke(Method.java:324)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.service.VectorSortInterceptor.invoke(
    VectorSortInterceptor.java:105)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.aop.framework.ReflectiveMethodInvocation.proc
    eed(ReflectiveMethodInvocation.java:144)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDy
    namicAopProxy.java:174)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at $Proxy1.getModel(Unknown Source)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.service.schedastrumento.ETFBusinessMo
    del.execute(ETFBusinessModel.java:54)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.compat.DelegateMapBusinessModel.invok
    eBusinessModel(DelegateMapBusinessModel.java:72)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.compat.DelegateMapBusinessModel.execu
    te(DelegateMapBusinessModel.java:52)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.EventDrivenController.handle(EventDri
    venController.java:115)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.AbstractCommandController.han
    dleRequestInternal(AbstractCommandController.java:79)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.AbstractController.handleRequ
    est(AbstractController.java:128)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapte
    r.handle(SimpleControllerHandlerAdapter.java:44)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.DispatcherServlet.doDispatch(Disp
    atcherServlet.java:684)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.DispatcherServlet.doService(Dispa
    tcherServlet.java:625)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.FrameworkServlet.serviceWrapper(F
    rameworkServlet.java:386)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkS
    ervlet.java:346)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at javax.servlet.http.HttpServlet.service(HttpServlet.java:787)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at javax.servlet.http.HttpServlet.service(HttpServlet.java:908)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardWrapperValve.invokeServletServic
    e(StandardWrapperValve.java:771)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrap
    perValve.java:322)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline
    .java:509)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardContextValve.invoke(StandardCont
    extValve.java:212)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline
    .java:509)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardHostValve.invoke(StandardHostVal
    ve.java:209)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline
    .java:509)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIP
    rocessor.java:161)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.iplanet.ias.web.WebContainer.service(WebContainer.java:580)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: 57001323 [service-j2ee-177] ERROR com.inferentiadnm.fwaext.service.Re
    questHandlerModeler - Unable to load data from model DisplayMTF2LevDif
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: com.inferentiadnm.display.dao.BorsaException: com.borsaitaliana.servi
    ce.DisplayMTF2LevDif - FATAL EXCEPTION DURING DAO EXECUTION
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: Caused by:
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: com.icteam.IfsBridgerv7.rvbusrv7.BusException: Bridge::com.icteam.Ifs
    Bridgerv7.rvbusrv7.BusException: submit: TibrvException[error=19,message=Out of memory]
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submit(Bridge.java:437)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submit(Bridge.java:465)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submit(Bridge.java:454)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submitAndGetAnswers(Bridge.java:45
    9)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.display.dao.DaoDisplayIFSImpl.getData(DaoDispla
    yIFSImpl.java:236)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.display.dao.DaoDisplayIFSImpl.getData(DaoDispla
    yIFSImpl.java:364)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.display.dao.DaoDisplayIFSImpl.getData(DaoDispla
    yIFSImpl.java:349)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.display.manager.AbstractManager2Lev.getData(Abs
    tractManager2Lev.java:74)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.display.manager.AbstractManager2LevInt.getData(
    AbstractManager2LevInt.java:29)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.display.manager.ManagerMTF2Lev.elaboraTemplate(
    ManagerMTF2Lev.java:76)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.service.AbstractDisplay2Lev.executeCommonServic
    e(AbstractDisplay2Lev.java:84)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.service.DisplayMTF2LevDif.executeService(Displa
    yMTF2LevDif.java:67)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.fwaext.service.RequestHandlerModeler.loadModel(
    RequestHandlerModeler.java:53)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.fwaext.service.AbstractResourceModeler.getModel
    (AbstractResourceModeler.java:134)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at sun.reflect.GeneratedMethodAccessor73.invoke(Unknown Source)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodA
    ccessorImpl.java:25)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at java.lang.reflect.Method.invoke(Method.java:324)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.service.VectorSortInterceptor.invoke(
    VectorSortInterceptor.java:105)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.aop.framework.ReflectiveMethodInvocation.proc
    eed(ReflectiveMethodInvocation.java:144)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDy
    namicAopProxy.java:174)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at $Proxy1.getModel(Unknown Source)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.service.schedastrumento.ETFBusinessMo
    del.execute(ETFBusinessModel.java:54)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.compat.DelegateMapBusinessModel.invok
    eBusinessModel(DelegateMapBusinessModel.java:72)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.compat.DelegateMapBusinessModel.execu
    te(DelegateMapBusinessModel.java:52)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.EventDrivenController.handle(EventDri
    venController.java:115)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.AbstractCommandController.han
    dleRequestInternal(AbstractCommandController.java:79)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.AbstractController.handleRequ
    est(AbstractController.java:128)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapte
    r.handle(SimpleControllerHandlerAdapter.java:44)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.DispatcherServlet.doDispatch(Disp
    atcherServlet.java:684)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.DispatcherServlet.doService(Dispa
    tcherServlet.java:625)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.FrameworkServlet.serviceWrapper(F
    rameworkServlet.java:386)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkS
    ervlet.java:346)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at javax.servlet.http.HttpServlet.service(HttpServlet.java:787)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at javax.servlet.http.HttpServlet.service(HttpServlet.java:908)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardWrapperValve.invokeServletServic
    e(StandardWrapperValve.java:771)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrap
    perValve.java:322)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline
    .java:509)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardContextValve.invoke(StandardCont
    extValve.java:212)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline
    .java:509)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIP
    rocessor.java:161)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.iplanet.ias.web.WebContainer.service(WebContainer.java:580)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: com.icteam.IfsBridgerv7.rvbusrv7.BusException: Bridge::com.icteam.Ifs
    Bridgerv7.rvbusrv7.BusException: submit: TibrvException[error=19,message=Out of memory]
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submit(Bridge.java:437)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submit(Bridge.java:465)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submit(Bridge.java:454)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.icteam.IfsBridgerv7.Bridge.submitAndGetAnswers(Bridge.java:45
    9)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.display.dao.DaoDisplayIFSImpl.getData(DaoDispla
    yIFSImpl.java:236)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.display.dao.DaoDisplayIFSImpl.getData(DaoDispla
    yIFSImpl.java:364)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.display.dao.DaoDisplayIFSImpl.getData(DaoDispla
    yIFSImpl.java:349)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.display.manager.AbstractManager2Lev.getData(Abs
    tractManager2Lev.java:74)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.display.manager.AbstractManager2LevInt.getData(
    AbstractManager2LevInt.java:29)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.display.manager.ManagerMTF2Lev.elaboraTemplate(
    ManagerMTF2Lev.java:76)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.service.AbstractDisplay2Lev.executeCommonServic
    e(AbstractDisplay2Lev.java:84)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.service.DisplayMTF2LevDif.executeService(Displa
    yMTF2LevDif.java:67)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.fwaext.service.RequestHandlerModeler.loadModel(
    RequestHandlerModeler.java:53)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.fwaext.service.AbstractResourceModeler.getModel
    (AbstractResourceModeler.java:134)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at sun.reflect.GeneratedMethodAccessor73.invoke(Unknown Source)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodA
    ccessorImpl.java:25)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at java.lang.reflect.Method.invoke(Method.java:324)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.service.VectorSortInterceptor.invoke(
    VectorSortInterceptor.java:105)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.aop.framework.ReflectiveMethodInvocation.proc
    eed(ReflectiveMethodInvocation.java:144)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDy
    namicAopProxy.java:174)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at $Proxy1.getModel(Unknown Source)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.service.schedastrumento.ETFBusinessMo
    del.execute(ETFBusinessModel.java:54)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.compat.DelegateMapBusinessModel.invok
    eBusinessModel(DelegateMapBusinessModel.java:72)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.compat.DelegateMapBusinessModel.execu
    te(DelegateMapBusinessModel.java:52)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.EventDrivenController.handle(EventDri
    venController.java:115)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.AbstractCommandController.han
    dleRequestInternal(AbstractCommandController.java:79)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.AbstractController.handleRequ
    est(AbstractController.java:128)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapte
    r.handle(SimpleControllerHandlerAdapter.java:44)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.DispatcherServlet.doDispatch(Disp
    atcherServlet.java:684)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.DispatcherServlet.doService(Dispa
    tcherServlet.java:625)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.FrameworkServlet.serviceWrapper(F
    rameworkServlet.java:386)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.FrameworkServlet.doGet(FrameworkS
    ervlet.java:346)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at javax.servlet.http.HttpServlet.service(HttpServlet.java:787)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at javax.servlet.http.HttpServlet.service(HttpServlet.java:908)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardWrapperValve.invokeServletServic
    e(StandardWrapperValve.java:771)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrap
    perValve.java:322)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline
    .java:509)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardContextValve.invoke(StandardCont
    extValve.java:212)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline
    .java:509)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardHostValve.invoke(StandardHostVal
    ve.java:209)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline
    .java:509)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIP
    rocessor.java:161)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.iplanet.ias.web.WebContainer.service(WebContainer.java:580)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.service.DisplayMTF2LevDif.executeService(Displa
    yMTF2LevDif.java:75)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.fwaext.service.RequestHandlerModeler.loadModel(
    RequestHandlerModeler.java:53)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.inferentiadnm.fwaext.service.AbstractResourceModeler.getModel
    (AbstractResourceModeler.java:134)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at sun.reflect.GeneratedMethodAccessor73.invoke(Unknown Source)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodA
    ccessorImpl.java:25)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at java.lang.reflect.Method.invoke(Method.java:324)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.service.VectorSortInterceptor.invoke(
    VectorSortInterceptor.java:105)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.aop.framework.ReflectiveMethodInvocation.proc
    eed(ReflectiveMethodInvocation.java:144)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDy
    namicAopProxy.java:174)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at $Proxy1.getModel(Unknown Source)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.service.schedastrumento.ETFBusinessMo
    del.execute(ETFBusinessModel.java:54)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.compat.DelegateMapBusinessModel.invok
    eBusinessModel(DelegateMapBusinessModel.java:72)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.compat.DelegateMapBusinessModel.execu
    te(DelegateMapBusinessModel.java:52)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at com.borsaitaliana.framework.EventDrivenController.handle(EventDri
    venController.java:115)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.AbstractCommandController.han
    dleRequestInternal(AbstractCommandController.java:79)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.AbstractController.handleRequ
    est(AbstractController.java:128)
    [30/Nov/2006:12:48:12] info (19508): CORE3282: stdout: at org.springframework.web.servlet.mvc.SimpleControllerHandlerAdapte
    r.handle(SimpleControllerHandlerAdapter.java:44)
    [30/Nov/200

    Try this:
    http://knowledgebase.iplanet.com/ikb/kb/articles/7622.html
    Hope it helps!
    Thanks

  • Query on Support of IPLANET WEB SERVER

    Hi
    Kindly note that as in Download section I am not able to see the IPLANET WEB SERVER in WEB SERVER CATEGORY. As when i click on Sun One web Server in some of the location it shows that "formerly iplanet web server" As I have one doubt regarding that whether Now the support & Newer version for IPLANET WEB SERVER has been dropped from Sun ? If I want to download Iplane web server 6.0 from where I can get it ?

    At first it is iPlanet web server, then Sun ONE web server. Now it is called Sun Java System Web Server. 7.0 is the current version.
    Check this web page for support related questions:
    http://www.sun.com/software/products/web_srvr/lifecycle.xml
    Download the last known release of Sun ONE web server 6.0 from:
    http://www.sun.com/download/products.xml?id=43a84f89

  • How to find what version of Iplanet Web Server is running on System

    Hi,
    I am trying to find a command which i can run to find out what version of Iplanet Web Server am i running on my Solaris System.
    Example: if i ran command it should return something like: Iplanet Enterprise Web Server 4.1 SP8
    WIll appreciate any feedback
    Thanks

    You can go to server_root/bin/https/bin and run "./ns-httpd -v" command:
    # ./ns-httpd -v
    Sun Netscape Alliance
    iPlanet-WebServer-Enterprise/4.1SP8
    For the current 6.x versions, you can use the start script of the instance like follows:
    # ./start -version
    Sun Microsystems, Inc.
    Sun ONE Web Server 6.1SP1 B12/19/2003 22:19
    Please note that 4.1 version is no longer supported. You
    should plan to upgrade to a supported version like 6.1.
    Thanks
    Manish

  • Any way to capture output from iPlanet Web Server V6 at socket level?

    Hi,
    I'm wondering if it's possible to configure the iPlanet Web Server (V6) so that I can capture the full request and response of a hit and "log" them to another process. Something like a pipeline of NSAPI modules would be ideal. I've written similar code for Apache, IIS, and Tomcat and am wondering if this is possible for iPlanet?
    Thanks.

    Hi, I was wondering if you ever received a response to your question. If so, can you please share it with me?
    Thanks,
    Tracy
    [email protected]

Maybe you are looking for