Error while running sample app HelloWorld on sun one web server 6.1

I tried to deploy and run the HelloWorld - sample application on sun one web server 6.1. It's giving me following errrors.
(1) , root cause: java.lang.NullPointerException
(2) info ( 924): JSP11 Log:unable to load jsp class: jsps.index_jsp
what's the solution for that?
Thanks
Naimesh

Can You please explain me how can I deploy .war file of my application on sun one web server 6.1 ?
It is deployed successfully. It only loads default.jsp and then fives following error:
1) Package netscape.ldap not found in import.
I imported this package to my java file.
Thanks,

Similar Messages

  • Sun ONE Web Server 6.1SP5 and Communications Express Error

    I post this to the wrong forum i think i am getting this error after running the config-uwc.
    Sun ONE Web Server 6.1SP5 B06/23/2005 22:22
    info: CORE5076: Using [Java HotSpot(TM) Server VM, Version 1.5.0_04] from [Sun Microsystems Inc.]
    config: for host 0.0.0.0 trying to GET /, name-trans-passthrough reports: init-passthrough has not been called
    info: WEB0100: Loading web module in virtual server [https-proxy1.mrc.ac.za] at [da]
    info: WEB0100: Loading web module in virtual server [https-proxy1.mrc.ac.za] at [uwc]
    info: WEB0110: Ignoring invalid property [allowLinking] = [true]
    info: WEB0100: Loading web module in virtual server [https-proxy1.mrc.ac.za] at [search]
    warning: CORE3283: stderr: Exception in thread "Thread-1" java.lang.NoClassDefFoundError: org/mozilla/jss/crypto/KeyGenAlgorithm
    warning: CORE3283: stderr: at java.lang.Class.forName0(Native Method)
    warning: CORE3283: stderr: at java.lang.Class.forName(Class.java:164)
    warning: CORE3283: stderr: at com.iplanet.services.util.Crypt.createInstance(Crypt.java:133)
    warning: CORE3283: stderr: at com.iplanet.services.util.Crypt.<clinit>(Crypt.java:103)
    warning: CORE3283: stderr: at com.iplanet.services.ldap.LDAPUser.getPasswd(LDAPUser.java:117)
    warning: CORE3283: stderr: at com.iplanet.services.ldap.ServerInstance.getPasswd(ServerInstance.java:128)
    warning: CORE3283: stderr: at com.sun.identity.security.ServerInstanceAction.run(ServerInstanceAction.java:92)
    warning: CORE3283: stderr: at java.security.AccessController.doPrivileged(Native Method)
    warning: CORE3283: stderr: at com.iplanet.am.util.AdminUtils.<clinit>(AdminUtils.java:82)
    warning: CORE3283: stderr: at com.sun.identity.security.AdminDNAction.run(AdminDNAction.java:86)
    warning: CORE3283: stderr: at java.security.AccessController.doPrivileged(Native Method)
    warning: CORE3283: stderr: at com.sun.identity.authentication.internal.server.SMSAuthModule.initialize(SMSAuthModule.java:129)
    warning: CORE3283: stderr: at com.sun.identity.authentication.internal.LoginContext.login(LoginContext.java:122)
    warning: CORE3283: stderr: at com.sun.identity.authentication.internal.AuthLoginThread.run(AuthLoginThread.java:82)

    I reran the access manager configuration and deployed it to the web server and now the webserver starts up successfully. I think my problem was that the file I was using initially wasn't properly setup for my enviroment.
    Carinus

  • Problems with Sun One Web Server  6.1 with SP1

    I get errors while compiling my JSP files on SUN one Web Server which is deployed on Solaris 9. it states that cannot compile JSP pages. here is the stack trace that i get.
    [03/Feb/2007:19:11:17] warning (  354): CORE3283: stderr: java.lang.NoClassDefFoundError: com/sun/tools/javac/Main
    [03/Feb/2007:19:11:17] warning (  354): CORE3283: stderr:      at org.apache.jasper.compiler.SunJava14Compiler$JavacTask.run(SunJava14Compiler.java:207)
    [03/Feb/2007:19:11:17] failure (  354): for host 192.168.123.2 trying to GET /reports1/jsp/common/ClientInstall.jsp, service-j2ee reports: StandardWrapperValve[jsp]: WEB2792: Servlet.service() for servlet jsp threw exception
    org.apache.jasper.JasperException: WEB4000: Unable to compile class for JSP
         at org.apache.jasper.compiler.Compiler.compile(Compiler.java:312)
         at com.iplanet.ias.web.jsp.JspServlet$JspServletWrapper.loadJSP(JspServlet.java:756)
         at com.iplanet.ias.web.jsp.JspServlet$JspServletWrapper.access$000(JspServlet.java:616)
         at com.iplanet.ias.web.jsp.JspServlet.serviceJspFile(JspServlet.java:401)
         at com.iplanet.ias.web.jsp.JspServlet.service(JspServlet.java:363)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:908)
         at org.apache.catalina.core.StandardWrapperValve.invokeServletService(StandardWrapperValve.java:771)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:322)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:212)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:209)
         at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:509)
         at com.iplanet.ias.web.connector.nsapi.NSAPIProcessor.process(NSAPIProcessor.java:161)
         at com.iplanet.ias.web.WebContainer.service(WebContainer.java:586)Please help. The Java version i am using is j2sdk1.4.2_08.

    It looks like the Web Server has somehow been configured to use a JRE. Web Server requires a JDK. The following message in particular indicates that a JRE, not a JDK, is being used:java.lang.NoClassDefFoundError: com/sun/tools/javac/MainAre you using the JDK that shipped with Web Server, or did you attempt to configure Web Server to use a different JDK?

  • Using private key installed on Sun One web server in java code.

    Hi,
    I am digitally signing an XML string. I have been able to successfully do this using the .keystore and the JSSE API.
    I need to run this code in the SUN ONE Web server, hence I have installed a self signed cert in the web server, using the web console.
    I need to load the .keystore that is being maintained by the Sun One Web Server in my Java program as a �KeyStore� object
    Presently I am using the following JSSE calls:
    KeyStore keystore = KeyStore.getInstance(KeyStore.getDefaultType());
    // Load the keystore contents
    FileInputStream in = new FileInputStream(keystoreFile);
    keystore.load(in, keystorePassword);
    in.close();
    Now how do I access the keystore and the certs that I have added in the web server? Is there any SUN API for this?
    Any help will be appreciated!
    Regards,
    Nandan
    Message was edited by:
    NANDAN

    The global zone should offer no services to the network except services required to administer the system. SSH from known IPs. Put everything in zones for the security of the system. Zones have no performance penalty so there is no advantage to running on the host system in the global zone.
    Sun's Java Enterprise server software webserver, directory server, etc required a full zone due to Solaris Package issues or conflicts; writing stuff in /usr; or both. A whole root for this software should not be a big deal. I create zones 9 at a time numbered in sequence. Zone 8 and 9 are whole root zones for requirements such as this.
    I'll leave to others to alert us if the whole root zone requirement changes for Sun's Java Enterprise Server software.
    Message was edited by:
    jgmarce

  • Error while running Application on Sun One Web Server 6.1

    Can some one please explain me how can I run application on sun one web server 6.1 ?
    It is deployed .war file successfully. It only loads default.jsp and then fives following error:
    1) Package netscape.ldap not found in import.
    I imported this package to my java file.
    Thanks,

    We need to deploy the application by next week end. any suggestions please

  • While starting sun one web server error message

    i have installed sun one web server 6.1,then i tried to start it from start up menu icon "start server administration server".the command prompt just displays and goes off.then i tried to start it from command prompt by giving path
    "C:\Sun\WebServer6.1\https-pcname.com>startsvr".
    error comes like this
    C:\Sun\WebServer6.1\https-pcname.com>net start https-pcname.com Access is denied
    can any one help me to solve this .

    You most probably don't have admin priviledges required to start a service on this Windows machine.

  • Error when starting Sun ONE Web Server 6.1SP4 after successful installation

    I have installed Sun ONE Web Server 6.1SP4 on my Solaris computer and I receive the following error when I try to start the Admin server:
    Sun ONE Web Server 6.1SP4 B01/20/2005 17:43
    failure: CORE3170: Configuration initialization failed: Error running init funct
    ion load-modules: dlopen of /opt/SUNWwbsvr/bin/https/lib/libj2eeplugin.so failed
    (ld.so.1: webservd: fatal: relocation error: file /opt/SUNWwbsvr/bin/https/lib/
    libares3.so: symbol __res_state: referenced symbol not found)
    I am running Solaris 8 and I have installed Patch 108993-22 as stated in chapter 2 of the installation and migration guide. I have also installed patches 116602-01, 115827-01, 113648-03, 112396-02, 111317-05, 111310-01, 111111-04, 111023-03, 110386-03, 108987-15, and 108528-24 since they are necessary for patch 108993-22.
    I have been stumped by this error. I have tried several different ways to install this software but I always get the same error. I believe that I have the latest version of the Sun One Web Server and I received no error notifications when I installed it! Any help would be apeciated!
    Thanks!!!!!

    I think this might occur if you don't have the patch for SunAlert 46042 installed. There's more information on this critical Solaris security vulnerability, which was reported back in 2002, at http://sunsolve.central.sun.com/search/document.do?assetkey=1-26-46042-1
    Can you run the following command to check if you have patch 109326-09 installed and let us know the result?showrev -p | grep 109326If you don't have 109326-09 or higher installed, you should install it as soon as possible. You can follow the link from the SunAlert. Better yet, install the latest Solaris 8 recommended patch cluster from http://sunsolve.sun.com/pub-cgi/show.pl?target=patches/patch-access to make sure your system is fully patched and up to date.

  • Sun One Web Server Start Up Error

    I have added filters in my application. I get the below error when I try to restart my application from Sun One Web Server,
    info: CORE3282: stdout: PARSE error at line 6 column 10
    info: CORE3282: stdout: org.xml.sax.SAXParseException: Element type "filter" must be declared.
    failure: ContextConfig[] WEB3524: Parse error in application web.xml
    org.xml.sax.SAXParseException: Element type "filter" must be declared.
    at org.apache.xerces.framework.XMLParser.reportError(XMLParser.java:1016)
    at org.apache.xerces.validators.common.XMLValidator.reportRecoverableXMLError(XMLValidator.java:1252)
    at org.apache.xerces.validators.common.XMLValidator.validateElementAndAttributes(XMLValidator.java:2721)
    at org.apache.xerces.validators.common.XMLValidator.callStartElement(XMLValidator.java:823)
    at org.apache.xerces.framework.XMLDocumentScanner$ContentDispatcher.dispatch(XMLDocumentScanner.java:1222)
    at org.apache.xerces.framework.XMLDocumentScanner.parseSome(XMLDocumentScanner.java:380)
    at org.apache.xerces.framework.XMLParser.parse(XMLParser.java:908)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:314)
    at javax.xml.parsers.SAXParser.parse(SAXParser.java:89)
    at org.apache.catalina.util.xml.XmlMapper.readXml(XmlMapper.java:275)
    at org.apache.catalina.startup.ContextConfig.applicationConfig(ContextConfig.java:312)
    at org.apache.catalina.startup.ContextConfig.start(ContextConfig.java:1005)
    at org.apache.catalina.startup.ContextConfig.lifecycleEvent(ContextConfig.java:257)
    at org.apache.catalina.util.LifecycleSupport.fireLifecycleEvent(LifecycleSupport.java:155)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3702)
    at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    failure: ContextConfig[]: WEB3525: Occurred at line 6 column 10
    failure: ContextConfig[]: WEB3541: Marking this application unavailable due to previous error(s)
    failure: WebModule[]: WEB2705: Context startup failed due to previous errors
    failure: WebModule[]: WEB2720: Error initializing naming context for context
    javax.naming.NamingException: WEB3880: Unknown context name : StandardEngine[null].StandardHost[https-sitarmor84].StandardContext[]
    at org.apache.naming.ContextBindings.bindThread(ContextBindings.java:207)
    at org.apache.catalina.core.StandardContext.bindThread(StandardContext.java:4123)
    at org.apache.catalina.core.StandardContext.stop(StandardContext.java:3811)
    at com.iplanet.ias.web.WebModule.stop(WebModule.java:329)
    at org.apache.catalina.core.StandardContext.start(StandardContext.java:3782)
    at com.iplanet.ias.web.WebModule.start(WebModule.java:251)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardHost.start(StandardHost.java:652)
    at org.apache.catalina.core.ContainerBase.start(ContainerBase.java:1133)
    at org.apache.catalina.core.StandardEngine.start(StandardEngine.java:355)
    at org.apache.catalina.startup.Embedded.start(Embedded.java:995)
    at com.iplanet.ias.web.WebContainer.start(WebContainer.java:431)
    at com.iplanet.ias.web.WebContainer.startInstance(WebContainer.java:500)
    at com.iplanet.ias.server.J2EERunner.confPostInit(J2EERunner.java:161)
    Please help.

    Which version of Sun web server are you using? Is it 6.1, 7.0 or 7.0 Update2.
    6.1 supports Servlet 2.3 spec. 7.0 supports Servlet 2.4 spec and 7.0 Update 1 and 2 support Servlet 2.5.
    Servlet 2.3 is DTD based and Servlet 2.4 onwards are schema based.
    The DTD or schema will be right after XML prolog in web.xml.
    You can use one of the following:
    <!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee
    http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd" version="2.4">
    I am sure your web.xml is not correctly written for the DTD/schema used.
    If you take care of that I am sure th problem will go away.
    If not, let us know if your webapp's WEB-INF/lib has xerces.jar.

  • Integration of Sun One Web Server 6.0 with Sun One App Server 7.0

    Is it possible to integrate Sun One Web Server 6.0 with the Sun One App Server 7.0??
    Sun One App Server 7.0 comes with the in-built HTTP listener. But we want to know if there is a way by which we can use the Sun One Web Server 6.0 with the App Server 7.0 and not the in-bulit HTTP listener?

    As suggested by you, I have used Sun ONE Application Server 7's plugin to connect the Sun ONE Web Server 6.0 with Sun ONE Application Server 7 as per the information given in Sun ONE Application Server 7 Administrator's Guide.
    I have added the plugin package to the webserver and added the following into the magnus.conf:
    Init fn="load-modules" shlib="C:/iPlanet/Servers/plugins/passthrough/passthrough.dll" funcs="init-passthrough,auth-passthrough,check-passthrough,service-passthrough" NativeThread="no"
    Init fn="init-passthrough"
    and to the obj.conf
    NameTrans fn="assign-name" from="(/A2P2Test|/A2P2Test/*)" name="passthrough"
    <Object name="passthrough">
    ObjectType fn="force-type" type="magnus-internal/passthrough"
    Service type="magnus-internal/passthrough" fn="service-passthrough" servers="http://<application server http listener>"
    Error reason="Bad Gateway" fn="send-error" uri="$docroot/badgateway.html"
    </Object>
    The webserver starts up without any errors but never forwards any requests what might I be doing wrong?

  • How do I configure a Sun One Web Server 6.1 to run JSP pages

    I have a Sun One Web server version 6.1 running on Solaris 10.
    The web server is not configured to run JSP pages. When I try and run a JSP page, I get an HTTP 405 error.
    Can somebody please point me to the configuration directions, including changes to the obj.conf, magnus,.conf, etc.
    Thanks

    Web Container is enabled by default.
    Here are my config files
    $tail -1 magnus.conf
    Init fn="load-modules" shlib="/export2/ws6.1sp11/bin/https/lib/libj2eeplugin.so" shlib_flags="(global|now)"$cat obj.conf
    # You can edit this file, but comments and formatting changes
    # might be lost when the admin server makes changes.
    <Object name="default">
    AuthTrans fn="match-browser" browser="*MSIE*" ssl-unclean-shutdown="true"
    NameTrans fn="ntrans-j2ee" name="j2ee"
    NameTrans fn="pfx2dir" from="/mc-icons" dir="/export2/ws6.1sp11/ns-icons" name="es-internal"
    NameTrans fn="document-root" root="$docroot"
    PathCheck fn="unix-uri-clean"
    PathCheck fn="check-acl" acl="default"
    PathCheck fn="find-pathinfo"
    PathCheck fn="find-index" index-names="index.html,home.html,index.jsp"
    ObjectType fn="type-by-extension"
    ObjectType fn="force-type" type="text/plain"
    Service method="(GET|HEAD)" type="magnus-internal/imagemap" fn="imagemap"
    Service method="(GET|HEAD)" type="magnus-internal/directory" fn="index-common"
    Service method="(GET|HEAD|POST)" type="*~magnus-internal/*" fn="send-file"
    Service method="TRACE" fn="service-trace"
    Error fn="error-j2ee"
    AddLog fn="flex-log" name="access"
    </Object>
    <Object name="j2ee">
    Service fn="service-j2ee" method="*"
    </Object>
    <Object name="cgi">
    ObjectType fn="force-type" type="magnus-internal/cgi"
    Service fn="send-cgi" user="$user" group="$group" chroot="$chroot" dir="$dir" nice="$nice"
    </Object>
    <Object name="es-internal">
    PathCheck fn="check-acl" acl="es-internal"
    </Object>JAVA settings in server.xml:
    <JAVA classpathsuffix="" debug="false" debugoptions="-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n" dynamicreloadinterval="-1" envclasspathignored="true" javahome="/export2/ws6.1sp11/bin/https/jdk" nativelibrarypathprefix="" serverclasspath="/export2/ws6.1sp11/bin/https/jar/webserv-rt.jar:${java.home}/lib/tools.jar:/export2/ws6.1sp11/bin/https/jar/webserv-ext.jar:/export2/ws6.1sp11/bin/https/jar/webserv-jstl.jar:/export2/ws6.1sp11/bin/https/jar/ktsearch.jar">
            <JVMOPTIONS>-Djava.security.manager</JVMOPTIONS>
            <JVMOPTIONS>-Djava.security.policy=/export2/ws6.1sp11/https-alamanac.india.sun.com/config/server.policy</JVMOPTIONS>
        <JVMOPTIONS>-Djava.security.auth.login.config=/export2/ws6.1sp11/https-alamanac.india.sun.com/config/login.conf</JVMOPTIONS>
        <JVMOPTIONS>-Djava.util.logging.manager=com.iplanet.ias.server.logging.ServerLogManager</JVMOPTIONS>
        <JVMOPTIONS>-Xmx256m</JVMOPTIONS>
        <SECURITY anonymousrole="ANYONE" audit="false" defaultrealm="native">
          <AUTHREALM classname="com.iplanet.ias.security.auth.realm.file.FileRealm" name="file">
            <PROPERTY name="file" value="/export2/ws6.1sp11/https-alamanac.india.sun.com/config/keyfile"/>
            <PROPERTY name="jaas-context" value="fileRealm"/>
          </AUTHREALM>
          <AUTHREALM classname="com.iplanet.ias.security.auth.realm.webcore.NativeRealm" name="native">
            <PROPERTY name="jaas-context" value="nativeRealm"/>
          </AUTHREALM>
          <AUTHREALM classname="com.iplanet.ias.security.auth.realm.ldap.LDAPRealm" name="ldap">
            <PROPERTY name="directory" value="ldap://localhost:389"/>
            <PROPERTY name="base-dn" value="o=isp"/>
            <PROPERTY name="jaas-context" value="ldapRealm"/>
          </AUTHREALM>
                <AUTHREALM name="solaris" classname="com.iplanet.ias.security.auth.realm.solaris.SolarisRealm">
                  <PROPERTY name="jaas-context" value="solarisRealm"/>
                </AUTHREALM>
        </SECURITY>
        <RESOURCES>
            </RESOURCES>
      </JAVA>

  • Error message upgrading Sun One Web Server

    We currently use Sun One Web Server SP 4. I have a RSA Cleartrust Agent to install that specifies SP 5. I downloaded SP 7. When I try to install it I receive the following message - "A previous release of the Web Server has been detected in the server root. Please select a different server root." I tried stoppping all the services, then installing, same result. The documentation says to run the install, it would detect the previous version and install. Do I have to uninstall the previous version? I do not want to do that. Thanks in advance.
    Jim

    admin.inf
    [General]
    Name=Administration Services
    Components=admin,admin-client
    Checked=TRUE
    Description=Server Administration Services used by system administrators to manage all iPlanet Servers.
    [admin]
    DefaultAcceptLanguage=en
    Vendor=Sun | Netscape Alliance
    Name=iPlanet Administration Server
    NickName=admin
    Description=Provides services to other server products.
    Dependencies=base/5.1
    Version=5.1
    Revision=
    Compatible=4.0
    Security=domestic
    BuildNumber=2002.158.2342
    Registration=FALSE
    Checked=TRUE
    IsAdmin=TRUE
    UseLDAP=TRUE
    BackupFiles=/admin-serv/config/adm.conf
    Mandatory=FALSE
    #install files for admin
    System32Archive=
    Archive=admin.z
    #plugin dll section
    PlugIn=insadm.dll
    ReadInf=ADM_ReadComponentInf
    PreInstall=ADM_PreInstall
    AskOptions=ADM_AskOptions
    GetSummary=ADM_GetSummary
    WriteGlobalCache=ADM_WriteGlobalCache
    WriteLocalCache=ADM_WriteLocalCache
    ReadGlobalCache=ADM_ReadGlobalCache
    ReadLocalCache=ADM_ReadLocalCache
    PostInstall=ADM_PostInstall
    PostUnInstall=ADM_PostUnInstall
    PreUnInstall=ADM_PreUnInstall
    [admin-client]
    Dependencies=base-client/5.1
    Name=Management Console
    Description=Used by system administrators to manage other server products.
    Version=5.1
    Compatible=4.0
    BuildNumber=2002.158.2342
    IsMCC=TRUE
    Checked=TRUE
    Mandatory=FALSE
    Security=domestic
    #install files admin-client component
    Archive=console.z
    #plugin dll section
    PlugIn=insadm.dll
    PreInstall=CON_PreInstall
    PostInstall=CON_PostInstall
    PostUnInstall=CON_PostUnInstall
    PreUnInstall=CON_PreUnInstall
    WebServer.inf
    [General]
    Name=iPlanet Web Server, Enterprise Edition
    Plugin=WebServer\WebServer.dll
    Description=iPlanet Web Server, Enterprise Edition
    Checked=True
    Components=NESCore,JRE,Java,Search,SNMP,I18N,CleanUp
    [NESCore]
    Vendor=Sun Netscape Alliance
    Name=Server Core
    Description=iPlanet Web Server Core
    Nickname=nescore
    Version=6.0
    BuildNumber=2
    Compatible=4.0
    Dependencies=svrcore/4.2
    DefaultAcceptLanguage=en
    Expires=0
    Registration=FALSE
    Security=domestic
    Checked=TRUE
    Mandatory=TRUE
    IsAdmin=FALSE
    UseLdap=FALSE
    SourcePath=WebServer
    Archive=nescore.zip
    System32Archive=nescore32.zip
    Plugin=WebServer\WebServer.dll
    PreInstall=SvrCore_PreInstall
    AskOptions=SvrCore_AskOptions
    WriteGlobalCache=SvrCore_ReadGlobalCache
    ReadGlobalCache=SvrCore_ReadGlobalCache
    ReadLocalCache=SvrCore_ReadLocalCache
    WriteLocalCache=SvrCore_WriteLocalCache
    GetSummary=SvrCore_GetSummary
    PostInstall=SvrCore_PostInstall
    PostUnInstall=SvrCore_PostUninstall
    [JRE]
    Name=Java Runtime Environment
    Description=Java Runtime Environment
    Nickname=JRE
    Version=1.1
    BuildNumber=2
    Compatible=1.1
    Expires=0
    Registration=FALSE
    Security=domestic
    Checked=TRUE
    Mandatory=True
    SourcePath=WebServer
    Archive=jre.zip
    PlugIn=WebServer\WebServer.dll
    PreInstall=JVM_PreInstall
    AskOptions=JVM_AskOptions
    GetSummary=JVM_GetSummary
    PostInstall=JVM_PostInstall
    [Java]
    Name=Java and Servlets
    Description=iPlanet Web Server Java and Servlets Support
    Nickname=java
    Version=6.0
    BuildNumber=2
    Compatible=4.0
    Expires=0
    Registration=FALSE
    Security=domestic
    Checked=TRUE
    Mandatory=True
    SourcePath=WebServer
    Archive=java.zip
    PlugIn=WebServer\WebServer.dll
    PreInstall=Java_PreInstall
    GetSummary=Java_GetSummary
    WriteLocalCache=Java_WriteLocalCache
    ReadLocalCache=Java_ReadLocalCache
    PostInstall=Java_PostInstall
    [Search]
    Name=Search and Indexing
    Description=iPlanet Web Server Search and Indexing Support
    Nickname=search
    Version=6.0
    BuildNumber=1
    Compatible=4.0
    Expires=0
    Registration=False
    Security=domestic
    Checked=True
    Mandatory=False
    SourcePath=WebServer
    Archive=search.zip,searchdata.zip
    PlugIn=WebServer\WebServer.dll
    PreInstall=WebPub_PreInstall
    WriteLocalCache=WebPub_WriteLocalCache
    PostInstall=WebPub_PostInstall
    [SNMP]
    Name=SNMP
    Description=iPlanet Web Server SNMP Support
    Nickname=snmp
    Version=6.0
    BuildNumber=1
    Compatible=4.0
    Expires=0
    Registration=False
    Security=domestic
    Checked=True
    Mandatory=False
    SourcePath=WebServer
    Archive=snmp.zip
    PlugIn=WebServer\WebServer.dll
    PreInstall=SNMP_PreInstall
    PostInstall=SNMP_PostInstall
    [I18N]
    Nickname=i18n
    Name=I18N Support
    Version=6.0
    Compatible=4.0
    Expires=0
    Checked=True
    Mandatory=True
    Visible=False
    SourcePath=WebServer
    Archive=i18n-core.zip
    UseLDAP=False
    Description=iPlanet Web Server Internationalization Support
    Registration=FALSE
    Plugin=WebServer\WebServer.dll
    PreInstall=I18N_PreInstall
    AskOptions=I18N_AskOptions
    WriteLocalCache=I18N_WriteLocalCache
    GetSummary=I18N_GetSummary
    PostInstall=I18N_PostInstall
    defLang=en,ja
    en=�p��
    ja=���{��
    [CleanUp]
    Name=Upgrade Files
    Description=iPlanet Web Server Upgrade Files
    Nickname=cleanup
    Version=6.0
    Compatible=4.0
    Expires=0
    Registration=False
    Security=domestic
    Checked=True
    Mandatory=True
    Visible=False
    SourcePath=WebServer
    Archive=nescore.zip
    PlugIn=WebServer\WebServer.dll
    PreInstall=Cleanup_PreInstall
    AskOptions=Cleanup_AskOptions
    GetSummary=Cleanup_GetSummary
    WriteLocalCache=Cleanup_WriteLocalCache
    PostInstall=Cleanup_PostInstall

  • SunOne 6.1 HTTP4044 error with sun one web server cluster

    use sun one web server 6.1 sp4 makeup cluster,transfer configure file have HTTP 4044 error.the /opt/SUNWwbsvr/https-admin/logs/error file message are:
    failure ( 4646): for host x.x.x.x trying to POST /https-x.x.x.x/admin/clxfer, cgi_scan_headers reports: HTTP4044: the CGI program /opt/SUNWwbsvr/bin/https/admin/bin/clxfer did not produce a valid header (program terminated without a valid CGI header. Check for core dump or other abnormal termination)
    Anyone have experience with this?

    Hi, I am also getting the same error, can someone please help me on this.
    [13/Jul/2009:05:23:21] failure ( 9574): for host X.X.X.X trying to GET /https-derivmatch/admin/security, cgi_scan_headers reports: HTTP4044: the CGI program /usr2/netscape/server61/bin/https/admin/bin/security did not produce a valid header (program terminated without a valid CGI header. Check for core dump or other abnormal termination)
    [13/Jul/2009:05:24:13] failure ( 9574): for host X.X.X.X trying to GET /https-derivmatch/admin/security, cgi_scan_headers reports: HTTP4044: the CGI program /usr2/netscape/server61/bin/https/admin/bin/security did not produce a valid header (program terminated without a valid CGI header. Check for core dump or other abnormal termination)
    Thanks a lot.
    Regards,
    Mallik

  • Sun One Web Server 6.0 with Sun One App Server 7.0

    Does Sun have a plug-in for enabling Sun One Web Server 6.0 to communicate with the Sun One Application Server 7.0? How to get this plugin?

    Yes, it has, and it is shipped with the product. Look at the installation guide and you can find the plugin configuration instructions.
    Regards,
    Juan

  • JDBC error deploy in Sun ONE Web Server 6.1

    I just deploy to Sun ONE Web Server 6.1 SP3 and got the following message:
    Exception Details: javax.servlet.ServletException
    javax.faces.FacesException: javax.faces.FacesException: Can't instantiate class: 'smssa.listaProvs'.. class smssa.listaProvs : javax.faces.FacesException: java.sql.SQLException: [Sun][Oracle JDBC Driver]This driver is locked for use with embedded applications.
    AFAIK JSC�s JDBC drivers cand be deployed in Sun's web servers then WHY I got this meesage?
    Regards.

    Hi ICON_SS,
    I can explain, but the answer is not ideal :( You are correct that the license states that you can use the data direct drivers with Sun servers - but the server needs to have built in code for how to unlock the driver class (per agreement w/data direct, the drivers we have require code to unlock them so the drivers can't be mis-used)...
    The Web Server product team is working on releasing such a version as we speak, but I believe it won't be out for several months. But it's coming!
    v

  • Connecting to Oracle 9i with Sun One Web Server 6.1 SP4

    I have an application that connects to an Oracle 9i database. When I run iPlanet 4.1, I am able to login to the application and run it. Since I have migrated to Sun One Web Server 6.1 SP4, I have not been able to login. Through some built in error logging, I have been able to determine that my user validation routine is receiving a Null pointer when it trys to connect to the database. I have also determined that my login servlet is executing properly. When I receive the Null pointer error, I am redirected to a failed login page, which is what is supposed to happen in such a case. I believe that I do not have the web server configured properly to connect to the database and I am not sure how to do it! Below is an excerpt from my code where the database connection occurs and the exception is detected. Any help would be appreciated!
    DriverManager.registerDriver(new oracle.jdbc.driver.OracleDriver());
              oracleConnect = DriverManager.getConnection("jdbc:oracle:thin:@" + chost + ":" + cport + ":" + csid ,u,p);
         enable = true;
    oracleConnect.close();
    }catch(java.sql.SQLException e){processError.logError("validateUser Invalue user" + e.getMessage()); enable = false;}
    catch(java.io.FileNotFoundException e){processError.logError("validate User error" + e.getMessage());}
    catch(java.io.IOException e){processError.logError("evalidateUser rror File Error " + e.getMessage());}
    catch(java.lang.NullPointerException e){processError.logError("validateUser error Null Pointer " + e.getMessage());}

    You are not using the server's built in JDBC Connection pooling, so there is no special WebServer configuration needed to connect to a database.
    If in the other hand, you want to use the built in connection pooling, then refer to this page to see how to create a connection pool
    http://docs.sun.com/source/817-1831-10/agjava.html#wp1085593
    Samples on how to configure and use JDBC connection pooling can be found in the sample apps
    http://docs.sun.com/source/817-1833-10/pwawap.html#wp40108

Maybe you are looking for

  • I have Windows XP and the latest Itunes and Itunes does not recognize my Iphone 4

    I have tried all of the trouble shooting ideas. I have installed and reinstalled Itunes. I have restarted my phone. I have restarted the computer. I have gone into MSCONFIG and made sure that all of the Iphone type services were ON. Nothing. My compu

  • Need help with Drill down Matrix Report

    Hi, I need to create a matrix report with a tree functionality with two line heading. Can some body tell me how can I generate this report? REGION1 REGION2 REGION3 COL1 COL2 TOTAL COL1 COL2 TOTAL COL1 COL2 TOTAL ======================================

  • Constraint won't work in ApEX 3.0 SQL Worksheet

    I am trying to add a fk constraint with 'on cascade delete' but I am getting errors every time I try a different coding. This is my latest and I can not see what I have miscoded. Can anyone help? alter table DGNR_ADMINISTRATIVE_AREA add constraint ad

  • Fact join Fact in DAX

    hi All, I have a question about DAX for join itself, the scenario is: 1. get last quarter customer with "A" status from Fact table 2. based on the customer list get from #1 to join this quarter customer with "AB"status  from the same fact table 3. di

  • Safari has no windows and freezes when trying to report

    When I start Safari (1.3.2) it bounces and the menu line appears - after that nothing happens. I have tried to empty caches, trash the preferences and even downloading an upgrade, which doesn't work on my eMac I have tried Repair permission but it st