How to make servlets reloadable in iplanet web server in solaris??

hi all,
does anyone know how to make servlets reloadable in iplanet ??? Thanks for help

Hi there,
I think your question is about "Dynamic Class Reloading", also named as Hot deployment. and the following lines may be helpful.
iAS 6.0 SP3 and later version supports new hot deployment features through dynamic class
reloading of EJBs.By default, dynamic servlet, EJB and registered JSP reloading is disabled in iPlanet Application Server.
To enable dynamic reloading of servlets, EJBs and registered JSPs, perform the following steps:
1.Start iPlanet Registry Editor, kregedit, and modify the Disable value under the Versioning key:
SOFTWARE/iPlanet/Application Server/6.0/CCS0/SYSTEM_JAVA/Versioning
2.Set the Disable value to 0 (By default, the Disable value is set to 1)
3.Restart iPlanet Application Server to enable the change
To hot deploy your application, simply compile and replace the file in the appropriate directory or, use iasdeploy to redeploy
applications.
I recommand you to check out the iAS's release notes (http://docs.iplanet.com/docs/manuals/ias/60/sp3/rn_sp3.html#20766) for more infomation.
Good luck
Shen Jie
Developer Technical Support
Sun Microsystems
http://sun.com/developers/support

Similar Messages

  • 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.

  • 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

  • How to run servlets n sun one web server 6.1

    hi guys,
    did u know any ony one help me , I deployed n server but at calling time some error how to call at url tell me bye
    bye

    Stop spamming.
    http://forum.java.sun.com/thread.jspa?threadID=622182

  • Kerberos Authentication DB in Oracle iPlanet Web Server

    [Here is a blog about how to configure Kerberos Authentication Database in Oracle iPlanet Web Server on Solaris 10 update 8 |http://blogs.sun.com/meena/entry/using_kerberos_as_authentication_database]

    As long as the application server that LCDS is deployed in is supported, it doesn't  matter which webserver is being used.
    HTH
    Kumaran

  • I have perl scripts that I want to be able to run with my iplanet web server 6.0. How can I make it work in Windows NT? (Because I have no problem when I use it with Linux).

     

    Hi Melanie,
    In order to run a PERL script under Windows NT the iPlanet Web Server needs to know where to find the PERL interpreter.
    follow these steps :
    1) Make sure Windows NT knows what a .pl file is. In file Manager click on file and choose associate from the menu. Check the "files with extension" drop-down list for pl - if it exists verify that it is pathed to your perl.exe. If it is not already on the list click the "New Type" button. In the Filetype box put pl. Choose open from the Action drop-down list. In the Command box specify the full path to your perl.exe interpreter (Make sure to use short filenames, rather than long filenames.) Click the OK button. Then click the Close button in the main Associate dialog box. Double click a .pl file to test - it should automatically launch the PERL interpreter and feed it your .pl file.
    2) Create a directory to contain your .pl scripts.
    ~server_root\shell-cgi is a good choice.
    or \cgi-bin\
    NOTE: Make very sure that this directory is NOT part of the document root, it should have it's own directory (preferably at the same level of the docroot).
    3) In the Admin Server select Programs.
    4) Choose CGI directory (normally) or WinCGI directory or ShellCGI Directory depending on ur choice from the Programs menu.
    5) Put the URL Prefix you would like to map to your Shell-CGI directory into the URL Prefix field.
    6) Put the full path to your Shell-CGI directory in the Shell CGI directory field.
    7) Click OK.
    8) The save and apply changes page will display your changes and give you the opportunity to verify them. If they are correct click the Save and Apply button. If not Click the Undo button and go back to step 4.
    (9)You can then call your .pl scripts directly by referencing the directory mapping that you have just created. For example:
    http://my.server.whatever/shell-cgi/ myscript.pl
    this should work now.
    If not Pls Mail me.
    regards
    T.Raghulan
    [email protected]

  • 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.

  • How do I make my imac into a web server it is nearly brand new and uses OSX 10.8.4

    How do I make my imac into a web server it is nearly brand new and uses OSX 10.8.4, if someone to point me towards instructions it would be most helpful.

    http://www.coolestguyplanettech.com/downtown/install-and-configure-apache-mysql- php-and-phpmyadmin-osx-108-mountain-lion
    Regards.

  • Iplanet  web server 7 -how to get more information when a certificate is untrusted ?

    Hi
    When a client tries to access to iplanet 7.0.15, we only get a line in the errors log with a simple error., for instance SSL_ERROR_UNKOWN_CA_ALERT...
    We would like to know if it is possible to configure iplanet to get more information about this request..
    iPLANET is receiving requests from a lot of clients and sometime it is difficult to identify the source of a error without more information..
    We would like have similar information that access log shows when certificate is valid
    We get the same information with log-level = info or finest..
    Thanks
    Uge

    Hi Uge,
    Setting the iPlanet Web Server log level to 'finest' will give you more information, but it is very verbose, and you still might not get the information you are looking for. You might want to try 'fine' or 'finer' first to see if either of those gives you the information you  need.
    With regards to the above error, SSL_ERROR_UNKOWN_CA_ALERT, this means that the client presented a certificate in the SSL handshake that was signed by a CA that the Web Server doesn't have in it's certificate database. In order to ensure the Web Server is kept upto date with the latest set of public CA certificates, I would recommend you upgrade to the latest version.
    If you know that the certificates the clients are using are from an internal CA, you need to ensure the Root CA Certificate from that internal CA is installed in the Web Servers certificate database as a trusted certificate.
    regards
    Tracey

  • How to install iPlanet Administrative Server while installing iPlanet Web Server Ver 6.0 Service Pack 3 in SUN Ultra 10,Solaris 5.8

    We are the partner of Sun Developer Connection Program.
    Company: ITI Ltd.
    Member no: 1024878
    We tried to install iPlanet Web Server ver 6.0
    Service Pack 3, in Sun Ultra10 Solaris 5.8 machine.
    During the time of installation it is giving Error:
    Failure installing iPlanet Administration Server
    Do you want to continue? if Yes
    it starts poceeding with the installation and again gives an Error:
    Failure installing Core Java Classes.
    Do you want to continue? if Yes
    It completes the installation.
    But startconsole cannot be executed.
    Please send the solution.

    May I ask where did you get the bits for iWS 6.0 SP3? The latest version currently available for download is iWS 6.0 SP2.
    http://wwws.sun.com/software/download/download/
    Thanks

  • How to find out version of patch for iPlanet Web Server 6.1 on Win2000

    I have a iPlanet Web Server 6.1 SP1 running on Windows 2000. Can I find out what patches has been installed for my iPlanet Web Server?
    Thanks in advance for any information.

    n/m, read version, not patches.
    Edited by: David.Eriksson on Jun 30, 2008 8:12 AM

  • 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]

  • 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

  • Deplyment in iPlanet Web Server 6.0

    Hi
    Here is the log output that i received after deploying in iPlanet web server 6.0 from a war file. It contains the jsps, servlet classes, beans, and ejb classes. I have my ejbs deployed in weblogic server 8.1 Can anybody help? Thankyou.
    [31/Mar/2004:11:21:33] info ( 1080): Installing a new configuration
    [31/Mar/2004:11:21:50] info ( 1032): successful server startup
    [31/Mar/2004:11:21:50] info ( 1032): iPlanet-WebServer-Enterprise/6.0SP1 B08/20/2001 01:49
    [31/Mar/2004:11:21:51] info ( 1032): Installing a new configuration
    [31/Mar/2004:11:21:51] info ( 1032): [LS ls1] http://IdeasAshok, port 8080 ready to accept requests
    [31/Mar/2004:11:21:51] info ( 1032): A new configuration was successfully installed
    [31/Mar/2004:11:21:52] info ( 1032): Loading IWSSessionManager by default.
    [31/Mar/2004:11:21:52] info ( 1032): IWSSessionManager: Maximum number of sessions is 1000
    [31/Mar/2004:11:21:55] info ( 1032): Adding web application (/ideas) at (D:/ bea/ideas)
    [31/Mar/2004:11:21:56] info ( 1032): Loading IWSSessionManager by default.
    [31/Mar/2004:11:21:56] info ( 1032): IWSSessionManager: Maximum number of sessions is 1000
    [31/Mar/2004:11:21:56] info ( 1032): Successfully initialized web application environment (web-apps.xml) for virtual server (https-Ashok)
    [31/Mar/2004:11:23:59] info ( 1032): vs(https-Ashok)servlet 'jsp' class = 'org.apache.jasper.servlet.JspServlet' loaded in context = '/ideas'
    [31/Mar/2004:11:23:59] info ( 1032): jsp: init
    [31/Mar/2004:11:23:59] info ( 1032): jsp: init
    [31/Mar/2004:11:23:59] failure ( 1032): Internal error: Unexpected error condition thrown (unknown exception,no description), stack: java.lang.NoClassDefFoundError: javax/security/auth/callback/CallbackHandler
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:115)
         at weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFactory.java:131)
         at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:660)
         at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:241)
         at javax.naming.InitialContext.init(InitialContext.java:217)
         at javax.naming.InitialContext.<init>(InitialContext.java:193)
         at ideas.util.ServerProperties.getContext(ServerProperties.java:48)
         at ideas.beans.AdhocHandBean.<init>(AdhocHandBean.java:39)
         at jsps.jsp._AdhocHandoff_jsp._jspService(_AdhocHandoff_jsp.java:194)
         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)

    Hi,
    Already solved the problem, only needed the charset for JAVA.
    Anyway for future reference for others re internationalization in iPlanet...
    1. Place your resource bundles in <path to your instance>/WEB-INF/classes/
    2. Place your i18n tag library (as for me it is taglibs-i18n.tld) in <path to your instance>/WEB-INF/
    3. Place your i18n API (as for me it is taglibs-i18n.jar) in <path to your instance>/WEB-INF/lib if it is a jar file, else <path to your instance>/WEB-INF/classes.
    4. Add taglib element in your web deployment descriptor file (web.xml):
    <taglib>
         <taglib-uri>/WEB-INF/taglibs-i18n.tld</taglib-uri>
         <taglib-location>/WEB-INF/taglibs-i18n.tld</taglib-location>
    </taglib>
    NOTE:
    Make sure the DTD reference for your web.xml points to http://java.sun.com/dtd/web-app_2_3.dtd. Old version was http://java.sun.com/j2ee/dtds/web-app_2_3.dtd. Please update your application to use the new name.
    5. Add the following to the JVM classpath in SUNONE:
    5.a. <path to your JRE lib>/charsets.jar (for charsets for JAVA)
    5.b. <path to your instance>/WEB-INF/classes/ (directory where your resource bundles are)
    6. Restart the instance.
    This will work either for pre-compiled and uncompiled jsps.
    Hope this will help.
    my 2 cents,
    Eson.

Maybe you are looking for

  • How to use testdb?(answered for two options,thanks)

    No info found for this tool. Last edited by lilsirecho (2008-01-23 04:24:45)

  • Upstream documentation link/details in  SAP IS Oil and gas?

    Hi I was looking for some documentation on upstream activities (Exploration and Production) in the SAP IS Oil solution. The below link provides me the path to my SAP Oil and gas but not anything on upstraem activities: http://help.sap.com/saphelp_oil

  • Sales order type quotation integration (VMI process)

    Dear experts, We are testing a VMI scenario, more specifically we are trying to generate sales order document in R/3 from the TLB process in SAP SCM. We have configured the determation of a document type "quotation" for the VMI process in the corresp

  • LR and iTunes Slideshow

    Please can someone please explain in dummie language how to have music playing on a slideshow. I am on PC, and can not seem to get this to function. I attempt to creat a playlist in iTunes, but this does not appear when trying to connect. I tried cre

  • I have an error .49 when I try to install CC 2014

    Any help would greatly be appreciated. I had used a trial version then bought photoshop cc 2014 after the purchase it still asked me to  buy. I uninstalled photoshop from creative cloud then tried to reinstall and I got a error message.49 Any suggest