Import netscape.ldap.* ; is it not supported in Sun one LDAP server

import netscape.ldap.*;
is the above line not supported n Sun One LDAP directory Server
if that is the case what should i do
wenever i compile my code the error tat comes up is : package netscap.ladp does not exists
need help immediately
my code is as follows
import netscape.ldap.*;
import java.util.*;
* Simple search program to experiment with filters
public class SearchFilter {
* Do a subtree search using a specified filter
* @parm args host, port, authDN, password, baseDN, filter
public static void main(String[] args) {
if (args.length != 6) {
System.out.println("Usage: java FilterSearch " + "<host> <port> " + "<authdn> <password> " + "<baseDN> <filter>");
System.out.println("Example:");
System.out.println(" java FilterSearch " + "localhost 389 " + "\"\" \"\" " + "\"o=airius.com\" " + "\"(|(cn=sam*)(cn=b*))\"");
System.exit(1);
}

Couldn't you download the netscape.ldap package (iPlanet LDAP SDK) and put its jars in your app classpath?
The suggested way to replace netscape.ldap package is to use only JNDI calls, but maybe they can not fulfill all your needs.
By the way, you can get the source code for that package in Mozilla.org site.
(Note: if you are using Netscape LDAP SDK for parsing/generating ASN.1 streams including X.509 certificates, try using BouncyCastle instead of netscape.ldap.ber.stream package - I had to modify several classes from Netscape's package that is not meant to handle certificates, but LDAP streams...)

Similar Messages

  • How can I import Openldap schema into sun one directory server?

    Hello All
    I have a schema which was written for openldap, and I want to import this schema into sun directory server. I found that some attribute syntaxes, like "NumericString", are not exist in sun directory server and some attribute definitions are also different. For example, the "internationaliSDNNumber" in sun directory is defined in "IA5String" syntax, but it is "NumericString" in openldap. Is there any effect on querying data from two different ldap server? How can I solve this problem?
    Thank you!

    http://directory.fedora.redhat.com/wiki/Howto:OpenLDAP
    Migration
    GaryThanks! But after I use some of scripts in that page, I got
    "Unknown attribute syntax OID "1.3.6.1.4.1.1466.115.121.1.36"
    It seems those scripts only transform schema file format, not the gap between different type(attribute syntax). Is it possible to import or add new type(attribute syntax) in sun one directory server?
    Thanks.

  • Just upgraded to Lion and can no longer import any .mov files ("file not supported") to 3.1.3.  Also can no longer view any .mov or .mp4 files already in library.

    Have been using Aperture 3.1.3 with no problems.  Importing from a Nikon D80 (RAW & JPEG), Casio (.MOV) and Flip (.mp4).  Could import and view all videos without issue prior to Lion upgrade.  After Lion installation, can no longer import .mov files (get "file not supported" error) or even view any .mov or .mp4 files currently in library (even though thumbnail is present).  Can watch the .mov files directly on my camera using Quicktime in Finder but can't even drag & drop that file into Aperture.  Anybody else having similar problems?

    Still no resolution and Geniuses at store could not assist.  Unfortunately, it looks like not all the applications were ready to support the Lion operating system.  We could not import any .mov files, could no longer view any .mov files already in my Aperture library and could not email any .mov files.  Totally frustrated.  Use Aperture almost daily and can't lose the video functionality.  Was also running dog-slow.  Constantly looking at the spinning wheel.  Geniuses suggested that I wipe out hard drive and reinstall Snow Leopard.  Had full backup on external drive with Time Machine. 
    Not an easy process though...had to reinstall several times (at 5 hours each time) because I continued to have issues.  Finally figured out that I needed to delete every backup file from Time Machine on external drive from the date I installed Lion because some of the hidden files were still migrating back to Snow Leopard.
    I had to:
    1. Delete all time machine backup files from date/time of Lion installation forward
    2. Do "clean" installation of Snow Leopard (wiped hard drive using disk utility and booted with Snow Leopard disc)
    3. Chose option to reinstall from backup off Time Machine which eventually got me back to Snow Leopard desktop
    4. Deleted Aperture program and reinstalled (I had to install Aperture 2 and then install Aperture 3 upgrade.
    5. Reinstalled iLife apps
    5. Applied all Apple updates available (again this took a few hours because there were several updates from Snow Leopard's original release plus Aperture 3 and other application updates)
    Still doing some tweaking on some of my other apps but got everything back to where I originally was.  Now plan to wait on a few version updates from Lion before reinstalling.
    I am one of Apple's biggest fans, but was very disappointed in the fact that I lost functionality in one of their own pieces of software (which I use the most!)  by installing Lion.

  • SUN ONE Ldap - Default value is not getting displayed

    Hello,
    I have created an attribute in slapd.user_at.conf and it is associated in slapd.user_oc.conf.
    The default value for the attribute has been given in the SUN ONE Ldap. But it is not getting displayed in our application.
    Can any one help me in this for this issue.
    Regards,
    K. Senthil Kumar

    I assume that you are referring to a brand new field on the second step that was not on the form of the first step. If this is the case, then you should put the field in a hidden block of the first steps form. Default values and Auto-population from shells/single record BPs only occur of the create step, even if they are not used on that step. As long as you put them on the create step (even in a hidden block) they should initialize.

  • Fatal error: Client does not support authentication protocol requested by server; consider upgrading MySQL client

    Fatal error: Client does not support authentication protocol
    requested by server; consider upgrading MySQL client in
    /homepages/28/d74942468/htdocs/cosmic/sites/onlinemove/Connections/db.php
    on line 9
    This is the error that comes up on the server where the site
    sits. The database is working on my local machine with the local
    settings, but wont connect due to the above.
    I think im using MySQL client 3.23 How do i upgrade?
    I found this on MySQL site:
    http://dev.mysql.com/doc/refman/5.0/en/old-client.html
    I'm not sure how to edit the connection string to make it
    accept the vaules.

    The_FedEx_Guy wrote:
    > Fatal error: Client does not support authentication
    protocol requested by
    > server; consider upgrading MySQL client in
    >
    /homepages/28/d74942468/htdocs/cosmic/sites/onlinemove/Connections/db.php
    on
    > line 9
    > I think im using MySQL client 3.23 How do i upgrade?
    The MySQL client that the error refers to isn't the version
    of MySQL,
    but the MySQL library bundled with PHP. It sounds as though
    your hosting
    company has upgraded to MySQL 4.1 or higher, but is still
    using PHP 4.
    > I'm not sure how to edit the connection string to make
    it accept the vaules.
    You can't. It's the way that the user account passwords are
    stored in
    MySQL. You need to get the hosting company to upgrade to PHP
    5 or to
    reset the passwords in MySQL using the OLD_PASSWORD()
    function. This
    needs to be done by someone with top-level administrative
    privileges on
    the database.
    David Powers, Adobe Community Expert
    Author, "Foundation PHP for Dreamweaver 8" (friends of ED)
    Author, "PHP Solutions" (friends of ED)
    http://foundationphp.com/

  • "Exchange organisation does not support this version of Exchange server"

    I am facing the error "Exchange Organisation does not support this version of exchange server" at time of installation of exchange server 2007 in the Windows server 2008 Enterprise edition.
    I have already installed exchange Server 2010 in the that domain.
    The following the image that show the error that i am facing
    I have the checked current Active Directory or Exchange Server schema version by using
    Using that i got the following information
    "dsquery * cn=schema,cn=configuration,dc=india,dc=local -scope base -attr objectVersion"
    objectVersion = Windows Server 2008 RTM
    CN=ms-Exch-Schema-Version-Pt,cn=schema,cn=configuration,dc=india,dc=local -scope base -attr rangeUpper"
    rangeUpper = 14726 ( Exchange server 2010 sp1)
    I am attaching the Exchange server setup logs here
    [5/31/2013 3:04:28 PM] [0] **********************************************
    [5/31/2013 3:04:28 PM] [0] Starting Microsoft Exchange 2007 Setup
    [5/31/2013 3:04:28 PM] [0] **********************************************
    [5/31/2013 3:04:28 PM] [0] Operating System version: Microsoft Windows NT 6.1.7600.0.
    [5/31/2013 3:04:28 PM] [0] Setup version: 8.1.240.6.
    [5/31/2013 3:04:28 PM] [0] Logged on user: INDIA\administrator.
    [5/31/2013 3:04:28 PM] [0] Command Line Parameter Name='mode', Value='Install'.
    [5/31/2013 3:04:28 PM] [0] Command Line Parameter Name='sourcedir', Value='C:\Exchange2007'.
    [5/31/2013 3:04:28 PM] [0] Command Line Parameter Name='fromsetup', Value=''.
    [5/31/2013 3:04:28 PM] [0] ExSetupUI was started with the following command: '-mode:install -sourcedir:C:\Exchange2007 /FromSetup'.
    [5/31/2013 3:04:29 PM] [0] Setup is choosing the domain controller to use
    [5/31/2013 3:04:29 PM] [0] Setup is choosing a local domain controller...
    [5/31/2013 3:04:31 PM] [0] Setup has chosen the local domain controller NewDelhi.india.local for initial queries
    [5/31/2013 3:04:31 PM] [0] PrepareAD has either not been run or has not replicated to the domain controller used by Setup. Setup will attempt to use the Schema Master domain controller NewDelhi.india.local
    [5/31/2013 3:04:31 PM] [0] The schema master domain controller is available
    [5/31/2013 3:04:31 PM] [0] The schema master domain controller is in the local domain; setup will use NewDelhi.india.local
    [5/31/2013 3:04:31 PM] [0] Setup is choosing a global catalog...
    [5/31/2013 3:04:31 PM] [0] Setup has chosen the global catalog server NewDelhi.india.local.
    [5/31/2013 3:04:31 PM] [0] Setup will use the domain controller 'NewDelhi.india.local'.
    [5/31/2013 3:04:31 PM] [0] Setup will use the global catalog 'NewDelhi.india.local'.
    [5/31/2013 3:04:31 PM] [0] Exchange configuration container for the organization is 'CN=Microsoft Exchange,CN=Services,CN=Configuration,DC=india,DC=local'.
    [5/31/2013 3:04:31 PM] [0] No Exchange organization container was found for the organization. Message: 'Could not find the Organization Container.'.
    [5/31/2013 3:04:31 PM] [0] Setup will search for an Exchange Server object for the local machine with name 'PONDY'.
    [5/31/2013 3:04:31 PM] [0] No Exchange Server with identity 'PONDY' was found.
    [5/31/2013 3:04:31 PM] [0] The following roles are unpacked: 
    [5/31/2013 3:04:31 PM] [0] The following roles are installed: 
    [5/31/2013 3:04:31 PM] [0] The local server does not have any Exchange files installed.
    [5/31/2013 3:04:31 PM] [0] Setup will use the path 'C:\Exchange2007' for installing Exchange.
    [5/31/2013 3:04:31 PM] [0] The server is cluster type: 'None'.
    [5/31/2013 3:04:31 PM] [0] The requested cluster type: 'None'.
    [5/31/2013 3:04:31 PM] [0] The installation mode is set to: 'Install'.
    [5/31/2013 3:04:31 PM] [0] Exchange organization name is required for this mode.
    [5/31/2013 3:04:31 PM] [0] Active Directory Initialization status : 'True'.
    [5/31/2013 3:04:31 PM] [0] Schema Update Required Status : 'False'.
    [5/31/2013 3:04:31 PM] [0] Organization Configuration Update Required Status : 'True'.
    [5/31/2013 3:04:31 PM] [0] Domain Configuration Update Required Status : 'False'.
    [5/31/2013 3:04:32 PM] [0] Applying default role selection state
    [5/31/2013 3:04:32 PM] [0] Setup is determining what organization-level operations to perform.
    [5/31/2013 3:04:32 PM] [0] Setup has detected a missing value. Setup is adding the value PrepareOrganization.
    [5/31/2013 3:04:32 PM] [0] Setup will run from path 'C:\Exchange2007\Setup\ServerRoles\Common'.
    [5/31/2013 3:04:32 PM] [0] InstallModeDataHandler has 4 DataHandlers
    [5/31/2013 3:04:32 PM] [0] Setup is determining what organization-level operations to perform.
    [5/31/2013 3:04:32 PM] [0] Setup has detected a missing value. Setup is adding the value PrepareOrganization.
    [5/31/2013 3:04:32 PM] [0] Setup will run from path 'C:\Exchange2007\Setup\ServerRoles\Common'.
    [5/31/2013 3:04:32 PM] [0] InstallModeDataHandler has 5 DataHandlers
    [5/31/2013 3:04:32 PM] [0] Setup is determining what organization-level operations to perform.
    [5/31/2013 3:04:32 PM] [0] Setup has detected a missing value. Setup is adding the value PrepareOrganization.
    [5/31/2013 3:04:32 PM] [0] Setup will run from path 'C:\Exchange2007\Setup\ServerRoles\Common'.
    [5/31/2013 3:04:32 PM] [0] InstallModeDataHandler has 6 DataHandlers
    [5/31/2013 3:04:32 PM] [0] Setup is determining what organization-level operations to perform.
    [5/31/2013 3:04:32 PM] [0] Setup has detected a missing value. Setup is adding the value PrepareOrganization.
    [5/31/2013 3:04:32 PM] [0] Setup will run from path 'C:\Exchange2007\Setup\ServerRoles\Common'.
    [5/31/2013 3:04:32 PM] [0] InstallModeDataHandler has 6 DataHandlers
    [5/31/2013 3:04:32 PM] [0] RootDataHandler has 1 DataHandlers
    [5/31/2013 3:04:44 PM] [0] Setup is determining what organization-level operations to perform.
    [5/31/2013 3:04:44 PM] [0] Setup has detected a missing value. Setup is adding the value PrepareOrganization.
    [5/31/2013 3:04:44 PM] [0] Setup will run from path 'C:\Exchange2007\Setup\ServerRoles\Common'.
    [5/31/2013 3:04:44 PM] [0] InstallModeDataHandler has 5 DataHandlers
    [5/31/2013 3:04:44 PM] [0] Setup is determining what organization-level operations to perform.
    [5/31/2013 3:04:44 PM] [0] Setup has detected a missing value. Setup is adding the value PrepareOrganization.
    [5/31/2013 3:04:44 PM] [0] Setup will run from path 'C:\Exchange2007\Setup\ServerRoles\Common'.
    [5/31/2013 3:04:44 PM] [0] InstallModeDataHandler has 4 DataHandlers
    [5/31/2013 3:04:44 PM] [0] Setup is determining what organization-level operations to perform.
    [5/31/2013 3:04:44 PM] [0] Setup has detected a missing value. Setup is adding the value PrepareOrganization.
    [5/31/2013 3:04:44 PM] [0] Setup will run from path 'C:\Exchange2007\Setup\ServerRoles\Common'.
    [5/31/2013 3:04:44 PM] [0] InstallModeDataHandler has 1 DataHandlers
    [5/31/2013 3:04:46 PM] [0] Setup is determining what organization-level operations to perform.
    [5/31/2013 3:04:46 PM] [0] Setup has detected a missing value. Setup is adding the value PrepareOrganization.
    [5/31/2013 3:04:46 PM] [0] Setup will run from path 'C:\Exchange2007\Setup\ServerRoles\Common'.
    [5/31/2013 3:04:46 PM] [0] InstallModeDataHandler has 4 DataHandlers
    [5/31/2013 3:04:48 PM] [0] Validating options for the 0 requested roles
    [5/31/2013 3:04:48 PM] [0] Validating options for the 0 requested roles
    [5/31/2013 3:04:53 PM] [0] Setup is determining what organization-level operations to perform.
    [5/31/2013 3:04:53 PM] [0] Setup has detected a missing value. Setup is adding the value PrepareOrganization.
    [5/31/2013 3:04:53 PM] [0] Because the value was specified, setup is setting the argument OrganizationName to the value First Organization.
    [5/31/2013 3:04:53 PM] [0] **************
    [5/31/2013 3:04:53 PM] [0] Setup will run the task 'test-setuphealth'
    [5/31/2013 3:04:53 PM] [1] Setup launched task 'test-setuphealth -DomainController 'NewDelhi.india.local' -DownloadConfigurationUpdates $true -ExchangeVersion '8.1.240.6' -Roles 'Global' -ScanType
    'PrecheckInstall' -SetupRoles 'Global' -PrepareOrganization $true'  
    [5/31/2013 3:04:53 PM] [1] Beginning processing.
    [5/31/2013 3:05:24 PM] [1] [ERROR] The Exchange organization does not support this version of Exchange Server.
    [5/31/2013 3:05:24 PM] [1] Ending processing.
    [5/31/2013 3:05:24 PM] [0] **************
    [5/31/2013 3:05:24 PM] [0] Setup will run the task 'test-setuphealth'
    [5/31/2013 3:05:24 PM] [1] Setup launched task 'test-setuphealth -DomainController 'NewDelhi.india.local' -DownloadConfigurationUpdates $false -ExchangeVersion '8.1.240.6' -Roles 'Mailbox' -ScanType 'PrecheckInstall' -SetupRoles 'AdminTools','Mailbox' -CreatePublicDB
    $true -TargetDir 'C:\Program Files\Microsoft\Exchange Server' -IISInstalled $true'  
    [5/31/2013 3:05:24 PM] [1] Beginning processing.
    [5/31/2013 3:05:27 PM] [1] [ERROR] The Exchange organization does not support this version of Exchange Server.
    [5/31/2013 3:05:27 PM] [1] Ending processing.
    [5/31/2013 3:05:40 PM] [0] End of Setup
    [5/31/2013 3:05:40 PM] [0] **********************************************
    Please suggest me how to install the exchange server 2007 SP1 on the domain that has exchange server 2010 sp1
    Thanks

    dear amit can u tell me I have one doming sg.com .I used for lab first I install in exchange server 2013 is normaly install and working fine .then I format my pc and agine  install exchange 2010
    Exchange organisation does not support this version of Exchange server
    warning
    setup is going to perepare the organization for exchange 2010 by using setup/ prepare AD . no exchange 2007 server roles have been deteted in this topology .
    please can u tell me the how install exchange 2010
    thanks

  • Is Java3D not supported by sun anymore?

    Hi i was just reading a thread in this forum that said that java 3d is not supported by sun anymore. Can somebody please confirm for me. This is the thread:
    http://forum.java.sun.com/thread.jsp?forum=21&thread=459570&tstart=0&trange=15

    You have got to read all of these to understand what is going on:
    http://www.javagaming.org/cgi-bin/JGNetForums/YaBB.cgi?board=3D;action=display;num=1061958762
    http://www.javagaming.org/cgi-bin/JGNetForums/YaBB.cgi?board=3D;action=display;num=1058255120
    http://www.javagaming.org/cgi-bin/JGNetForums/YaBB.cgi?board=3D;action=display;num=1055974647
    http://forum.java.sun.com/thread.jsp?forum=21&thread=409799&tstart=150&trange=30
    Regards
    Nikolai

  • Authentication getting failed in sun one Ldap

    HI,
    Any one please can assist me for sun one ldap.
    My application developed(ldap related) based on lotus domino ldap server and webspere.
    now we are trying to deploy the same code with Websphere and sun one ldap server at our local environment.
    Iam getting the prblem of authentication fail.
    please follow the logs as.
    My question is what ever the code written for lotus domino is compatible with sun one ldap.Iam new to LDAP .
    pls any one give the suggestions.
    LDAP Interface: Performing LDAP authentication for user [NYilmaz]
    17 Dec 2007 18:43:13,359 [WARN ] NABLDAP: Transmission will be over an unencrypted connection. The username and password are transmitted in clear text form which is very insecure. Consider replacing the LDAP protocol with LDAPS (SSL).
    17 Dec 2007 18:43:13,359 [DEBUG] NABLDAP: Establishing a new authenticating connection to [ldap://gpat.bsdev.com]
    17 Dec 2007 18:43:13,375 [INFO ] NABLDAP: Failed to authenticate with the remote server on [ldap://gpat.bsdev.com] because of error '[LDAP: error code 34 - Invalid DN]'
    17 Dec 2007 18:43:13,375 [WARN ] LDAP Interface: Unsuccessful authentication attempt for user [NYilmaz]
    17 Dec 2007 18:43:13,375 [DEBUG] LDAP Interface: Writing the value {javax.naming.InvalidNameException:[LDAP: error code 34 - Invalid DN]} to General[1].OnionErrorMessage
    17 Dec 2007 18:43:13,390 [WARN ] NABLDAP: Transmission will be over an unencrypted connection. Consider replacing the LDAP protocol with LDAPS (SSL).
    17 Dec 2007 18:43:13,390 [DEBUG] NABLDAP: Establishing a new anonymous connection to [ldap://gpat.bsdev.com]
    17 Dec 2007 18:43:13,390 [DEBUG] NABLDAP: Connection established.
    17 Dec 2007 18:43:13,390 [DEBUG] NABLDAP: Searching remote LDAP directory using the filter of [(&(objectclass=person)(&(cn=NYilmaz)))]

    Hello Vinay,
    when configuring multiple Ldap directories, There are a number of prerequisities that you need to
    consider.
    For example, One prerequisite for Multi domains is that logon IDs must be unique across mutliple LDAP datasources. This will cause issue if duplicate IDs exist.
    Please see the following Documentation and notes for more information on this.
    Examples of Data Source Configuration Files - Identity Management - SAP Library
    Example: Configuration of Multiple LDAP Data Sources - Identity Management - SAP Library
    1618342 - Multiple LDAP Datasources - Active Directories where logon IDs
    are not unique
    762419 - Multi-Domain Logon Using Microsoft Active Directory
    Please have a look at the above notes which documet this and also tells
    you what to do in these situations.
    Regards,
    David

  • Problems with Sun One Web Server 6.1 javax.xml.xpath package not found

    I used myeclipse to build an xml app and tested on jboss. it worked perfectly. However when i deployed it to our solaris sun one web server the app fell apart completely with the following error. I m unable to figure out what went wrong. Any help will be much appreciated.
    Thanks.
    [11/Dec/2007:22:12:37] failure (13539):      for host 121.247.233.169 trying to GET /feeds/rss.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
         /opt/SUNWwbsvr/test/ClassCache/test/_jsps/_feeds/_rss_jsp.java:8: package javax.xml.xpath does not exist
         import javax.xml.xpath.*;
         ^

    Thanks for the response. I tried to use xalan package which resolved the javax.xml.xpath package not found error (xalan.jar in WEB-INF/lib folder). However I m now getting the following error. Probably incompatible version is the reason. Please advise!
    [11/Dec/2007:23:46:28] failure (17028):      for host 121.247.233.169 trying to GET /feeds/rss.jsp, service-j2ee reports: StandardWrapperValve[jsp]: WEB2792: Servlet.service() for servlet jsp threw exception
         javax.servlet.ServletException: org.apache.xpath.XPathContext.<init>(Z)V
         at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:536)
         at _jsps._feeds._rss_jsp._jspService(_rss_new_jsp.java:627)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:908)
         at com.iplanet.ias.web.jsp.JspServlet$JspServletWrapper.service(JspServlet.java:687)
         at com.iplanet.ias.web.jsp.JspServlet.serviceJspFile(JspServlet.java:459)
         at com.iplanet.ias.web.jsp.JspServlet.service(JspServlet.java:375)
         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:580)
         ----- Root Cause -----
         java.lang.NoSuchMethodError: org.apache.xpath.XPathContext.<init>(Z)V
         at org.apache.xpath.jaxp.XPathImpl.eval(XPathImpl.java:207)
         at org.apache.xpath.jaxp.XPathImpl.evaluate(XPathImpl.java:281)
         at _jsps._feeds._rss_new_jsp._jspService(_rss_jsp.java:165)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:107)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:908)
         at com.iplanet.ias.web.jsp.JspServlet$JspServletWrapper.service(JspServlet.java:687)
         at com.iplanet.ias.web.jsp.JspServlet.serviceJspFile(JspServlet.java:459)
         at com.iplanet.ias.web.jsp.JspServlet.service(JspServlet.java:375)
         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:580)

  • Sun ONE Portal Server 6.1 - Support for doble-byte characters - China/Korea

    Hi,
    Can somebody help me in understanding whether Sun ONE Portal Server support double-byte characters. This is basically to support Chinese & Korean languages. If yes, please guide me through the steps to enable the same.
    Thank you,
    V

    First I tried to force the monitor into 1280x1024@75 mode which does not show the flicker. In three horizontal areas in the screen, the display was very fuzzy. So I had to decide whether use 60Hz mode with the flicker problem or use 75 Hz mode with the fuzzyness problem.
    I tried the first alternative by ignoring the EDID data and force the display mode but I didn't succeed with solving the fuzzyness problem. So I decided to go back to 60 Hz mode and try to solve the flicker problem. (I already tried 'Option "Flicker"  "false" - no effect!) I have no more ideas.
    Last edited by Tristero (2009-06-15 08:37:23)

  • Sun One App Server 8.1,Sun One Message Q3.6,administered objects in LDAP

    Hi,
    Has anyone tried hosting an MDB on Sun One App Server 8.1 listening to a queue on Sun One Message Queue 3.6 through administered objects in directory server...? It looks quite straight forward but somehow it doesn't seems to work. Any idea if Sun one app server supports this type of architecture...?
    Regards,
    Pritesh

    Hi,
    Even I didn't see any obvious reason why it shouldn't work untill I found that Sun One App Server 8.1 does not support external JNDI lookup to Sun MQ 3.6 through administered objects. However, it is possible using a newly released generic resource adapter for JMS 1.5 RC1. I am still fighiting on it and let you know if it works.
    I was getting an error "JMS resource can not be created" during deployment time.
    Regards,
    Pritesh Thakor

  • Does Sun One Web Server support server-side javascripts?

    Hi,
    We have used Netscape iplanet web server running our server-side javascripts for a few years. We're evaluating the latest Sun One web server and see if it can run the server-side javascripts. Does Sun One support server-side javascripts? If so, where do I can find the document?
    Thanks.

    you can use JScript (a type of server side java script) if you install Sun One ASP. it also gives you VBScript support as well

  • Problem instaliing sun one LDAP server on windows server 2008 r2

    Hi all ,
    I am trying to install Ldap server (Sun ONE Directory Server) on windows server 2008
    I am using apache-tomcat-7.0.28 and java jdk1.7.0_05
    I am following this manual for installing :
    https://blogs.oracle.com/marginNotes/entry/installing_directory_server_enterprise_edition1
    I have a problem with the cacao agent and how to install it .
    I've got this error message :
    c:\Program Files\Sun\dsee7\bin>dsccsetup cacao-reg
    Configuring Cacao...
    ## Failed to run "c:/Program Files/Sun/dsee7/ext/cacao_2/bin/cacaoadm.bat" set-
    aram "jdmk-home=c:/Program Files/Sun/dsee7/lib/private"
    #### Cannot create service for instance: [cacao.instance.name].
    #### Cannot perform firstime inialisation and configuration.
    ## Exit code is 1
    Failed to configure Cacao.
    I stuck and with no other solutions . I hope if you could to help with this issue .
    i will glad to know if there is any other ways to install this specific Ldap server ,
    Thanks,
    Alon

    You most likely skipped the step of starting the installed server prior to trying to access admin URL. Please check this document:
    http://docs.sun.com/source/817-1830-10/win.html
    Relevant section is:
    You can start the Administration Server in either of the following ways:
    # Select Start Menu -> Programs -> Sun ONE Web Server, and choose Start Web Server Administration Server.
    # From the Control Panel�s Services item.
    HTH...

  • Sslext NOt working Sun ONE Web Server 6.0?

    Hi,
    I have implemented the sslext tag for dynamic switching of http to https.
    I am using ATG Dynamo Server ONLY in the Development Env. (using the default Web Server of ATG) for testing this and sslext tag works fine using the Plug-In of struts which is in sslext.jar.
    but in producation the ATG Dynamo Server 6.0 is configured with Sun ONE Web Server 6.0, as forwarding request throught the Web Server to the App Server.
    But here sslext stop working?? any guss why?
    Sun ONE Server 6.0 is configured with ATG Dynamo Server 6.0 as Connection Module.
    There are three ways a Connection Module can handle requests for files whose MIME type is text/html.
    1)You can choose to have the files served by the Sun ONE Web Server,
    2)by the Dynamo server,
    3)or by the Sun ONE Web Server (but also send requests to Dynamo for logging).
    we select the 3rd option.
    any Guess why this is happening???
    regards
    DJ

    Since removing the log settings from magnus.conf failed to fix the problem, the log settings are probably not the source of the problem.
    Did anything else - e.g. ColdFusion configuration changes - occur at about the same time you changed the log settings?

  • Process.conf file not found after installing Sun One Portal Server 6.0

    This extract is from the Sun One Portal Server development guide for logging error or logs in log file. This says that to generate the log, entry should be done to enable logging in process.conf file. I could not find any such file after installing Sun One Portal Server 6.0.
    Any help will be appreciated...
    Reporting Errors to the Robot Log File
    When problems occur, robot application functions should return an appropriate response status code (such as REQ_ABORTED), and they should also log an error inthe error log file.
    To use the error-logging functionality, you must include the file log.h in thesdk/robot/include/libcs directory. After you have ensured that log.h exists in the correct place, you can use the cslog_error macro to report errors. The prototype is in the following format:
    cslog_error(int n, int loglevel, char* errorMessage)
    The first parameter is not currently used (may be used in the future) You can pass
    this as any integer.
    The second parameter is the log level. When the log level is less than or equal to the log level setting in the file process.conf, the error message is written in the robot.log.

    Since removing the log settings from magnus.conf failed to fix the problem, the log settings are probably not the source of the problem.
    Did anything else - e.g. ColdFusion configuration changes - occur at about the same time you changed the log settings?

Maybe you are looking for

  • Scheduling agreement with relase - doc type LPA with JIT

    Hi can any one give the steps for Scheduling agreement with relase - doc type LPA with JIT process.. and explain how the JIT will work in SA. Pls advise what are config required and what the user tcode needed to perform the SA with JIT concept.

  • BlackBerry Web Developmen​t on 64-bit Windows 7

    Hi , I am doing this project on Blackberry and right now I have 64-bit Windows 7 OS. So can anyone tell me the procedure to install the Blackberry storm 9500 simulator on my machine. Is it compatible with my machine configuration ? Are there any othe

  • I can't open .WMF files in Photoshop 10, why?

    Why can't I open .WMF files in Photoshop 10?

  • N70 camera and photo quality help

    I've just bought a Nokia N70 and I have a question that I hope somebody will answer. Is it normal for the photo to loose its quality, to become unclear after you take it and you zoom it? Usually after I take a photo, I go back to the phone gallery an

  • Fundamental BI questions

    I'm a consultant that has just started a new job/project. Please correct me if I'm wrong, but I've always understood BI to be a tool for producing meta-data-- in other words, it is used to provide summary reports, queries, high-level statistics/views