Sun Directory Editor - errors on edit form

I've installed directory editor, which seems to run fine except for the edit form.
I've got the following errors in the server.log (running Sun Java System Application Server Platform Edition 8.2) and can't find any doc on how to solve this.
[#|2009-01-20T10:23:32.903+0100|INFO|sun-appserver-pe8.2|javax.enterprise.system.stream.out|_ThreadID=15;|2009-01-20 10:23:32,902 [httpWorkerThread-8080-1] ERROR com.sun.dml.web.taglib.GenerateFormTitleTag - Error generating title and buttons
java.lang.NullPointerException
[#|2009-01-20T10:23:33.092+0100|INFO|sun-appserver-pe8.2|javax.enterprise.system.stream.out|_ThreadID=15;|2009-01-20 10:23:33,090 [httpWorkerThread-8080-1] ERROR com.sun.dml.resource.LDAPLighthouseContext - Error during 'checkoutView' operation
java.lang.NullPointerException
[#|2009-01-20T10:23:33.093+0100|INFO|sun-appserver-pe8.2|javax.enterprise.system.stream.out|_ThreadID=15;|re.StandardPipeline.invoke(StandardPipeline.java:551)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:132)
at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:551)
at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:933)
at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:189)
at com.sun.enterprise.web.connector.grizzly.ProcessorTask.doProcess(ProcessorTask.java:604)
at com.sun.enterprise.web.connector.grizzly.ProcessorTask.process(ProcessorTask.java:475)
at com.sun.enterprise.web.connector.grizzly.ReadTask.executeProcessorTask(ReadTask.java:371)
at com.sun.enterprise.web.connector.grizzly.ReadTask.doTask(ReadTask.java:264)
at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:281)
at com.sun.enterprise.web.connector.grizzly.WorkerThread.run(WorkerThread.java:83)
|#]

Mind explaining what actions you performed before the error showed up? One bug that might match your description is that the session has timed out and you clicked the "edit" button.
http://sunsolve.sun.com/search/document.do?assetkey=1-1-6259096-1
idle session timeout causes null pointer exception

Similar Messages

  • Error while editing form

    Hi,
    when am trying to edit form it gives following error.
    ORA-06502: PL/SQL: numeric or value error: character string buffer too small
    ORA-06512: at "SYS.OWA"
    Thank you
    null

    Hi SidduSekhar,
    Based on your description, I need to verify the things below:
    Which browser did you use? Did this issue occur with all the browsers?
    Is the cookie disabled in the browser? If yes, please enable it.
    Did you implement security fix in the web.config, such as <httpCookies requireSSL="true" httpOnlyCookies="true" />? If yes, please set it to false in web.config.
    Did you configure Alternate Access Mapping for SharePoint with a URL containing a “_” character? If yes, please remove the “­_” from the URL.
    More references:
    http://blogit.create.pt/miguelisidoro/2013/12/01/sharepoint-and-the-form-cannot-be-displayed-in-the-browser-because-the-use-of-session-cookies-error/
    https://prasantabarik.wordpress.com/2014/05/03/sharepoint-2010-workflow-task-error/
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Error when editing form --using an event receiver

    Hi,
    I created an event receiver sandbox solution and deployed it to preprod.  My code doesn't work and everytime I edit an item it gives me this error. I don't receive an error when I create an item.
    Server encountered an internal error. For more information, turn off customErrors in the server's .config file.
    at Microsoft.SharePoint.SPGlobal.HandleComException(COMException comEx) at Microsoft.SharePoint.Library.SPRequest.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, Boolean bPreserveItemUIVersion,
    Boolean bUpdateNoVersion, Int32& plID, String& pbstrGuid, Guid pbstrNewDocId, Boolean bHasNewDocId, String bstrVersion, Object& pvarAttachmentNames, Object& pvarAttachmentContents, Object& pvarProperties, Boolean bCheckOut, Boolean bCheckin,
    Boolean bMigration, Boolean bPublish, String bstrFileName, ISP2DSafeArrayWriter pListDataValidationCallback, ISP2DSafeArrayWriter pRestrictInsertCallback, ISP2DSafeArrayWriter pUniqueFieldCallback) at Microsoft.SharePoint.SPListItem.AddOrUpdateItem(Boolean
    bAdd, Boolean bSystem, Boolean bPreserveItemVersion, Boolean bNoVersion, Boolean bMigration, Boolean bPublish, Boolean bCheckOut, Boolean bCheckin, Guid newGuidOnAdd, Int32& ulID, Object& objAttachmentNames, Object& objAttachmentContents, Boolean
    suppressAfterEvents, String filename, Boolean bPreserveItemUIVersion) at Microsoft.SharePoint.SPListItem.UpdateInternal(Boolean bSystem, Boolean bPreserveItemVersion, Guid newGuidOnAdd, Boolean bMigration, Boolean bPublish, Boolean bNoVersion, Boolean bCheckOut,
    Boolean bCheckin, Boolean suppressAfterEvents, String filename, Boolean bPreserveItemUIVersion) at Microsoft.SharePoint.SPListItem.Update() at Microsoft.SharePoint.WebControls.SaveButton.SaveItem(SPContext itemContext, Boolean uploadMode, String checkInComment)
    at Microsoft.SharePoint.WebControls.SaveButton.OnBubbleEvent(Object source, EventArgs e) at System.Web.UI.Control.RaiseBubbleEvent(Object source, EventArgs args) at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
    private bool HasFieldChanged(SPItemEventProperties properties, string sInternalName)
    if (properties.ListItem[sInternalName] != null && properties.AfterProperties[properties.ListItem.Fields[sInternalName].StaticName] != null)
    //before properties is not equal than after properties
    return !properties.ListItem[sInternalName].ToString().Equals(properties.AfterProperties[properties.ListItem.Fields[sInternalName].StaticName].ToString(), StringComparison.OrdinalIgnoreCase);
    return false;
     public override void ItemUpdating(SPItemEventProperties properties)
     base.ItemUpdating(properties);
     try
     if (HasFieldChanged(properties, "WHQ") && !HasFieldChanged(properties, "Employee Type"))
     SPList oSPList = properties.Web.Lists["EPDEMails"];
     SPListItem oSPItem = oSPList.AddItem();
     SPListItem item = properties.ListItem;
     string sAfterWHQDepartment = properties.AfterProperties[properties.ListItem.Fields["WHQ Department"].StaticName].ToString();
     string sBeforeWHQDepartment = item[properties.ListItem.Fields["WHQ Department"].StaticName].ToString();
     string sEmails = string.Empty;           
     string sGroups = string.Format("{0},{1},Editors", sAfterWHQDepartment, sBeforeWHQDepartment);
     foreach (string group in sGroups.Split(','))
     foreach (SPUser thisuser in properties.Web.Groups[group].Users)
                                sEmails += thisuser.Email + ";";
                        oSPItem["Subject"] = "Employee Transfer to a different WHQ Department";
                        oSPItem["To"] = sEmails;
                        oSPItem["Body"] = string.Format("{0} {1} has been transferred to {2} from {3}. Please update EPD ASAP", item["First Name"],
    item["Last Name"], sAfterWHQDepartment, sBeforeWHQDepartment);
                        oSPItem.Update();
      if (HasFieldChanged(properties, "Region") && !HasFieldChanged(properties, "Employee Type"))
                    SPList oSPList = properties.Web.Lists["EPDEMails"];        
      SPListItem oSPItem = oSPList.AddItem();
      SPListItem item = properties.ListItem;
      string sAfterRegion = properties.AfterProperties[properties.ListItem.Fields["Region"].StaticName].ToString();
      string sBeforeRegion = item[properties.ListItem.Fields["Region"].StaticName].ToString();
      string sEmails = string.Empty;
      string sGroups = string.Format("{0},{1},Editors", sAfterRegion, sBeforeRegion);
      foreach (string group in sGroups.Split(','))
      foreach (SPUser thisuser in properties.Web.Groups[group].Users)
                           sEmails += thisuser.Email + ";";
                        oSPItem["Subject"] = "Employee Transfer to a different Region";
                        oSPItem["To"] = sEmails;
                        oSPItem["Body"] = string.Format("{0} {1} has been transferred to {2} from {3}. Please update EPD ASAP", item["First Name"],
    item["Las tName"], sAfterRegion, sBeforeRegion);
                        oSPItem.Update();
     if (HasFieldChanged(properties, "Employee Type"))
     SPList oSPList = properties.Web.Lists["EPDEMails"];
     SPListItem oSPItem = oSPList.AddItem();
     SPListItem item = properties.ListItem;
     string sChangedEmployeeType = properties.AfterProperties[properties.ListItem.Fields["Employee Type"].StaticName].ToString();
     if (sChangedEmployeeType == "Region")
    string sAfterRegion = properties.AfterProperties[properties.ListItem.Fields["Region"].StaticName].ToString();
    string sBeforeWHQDepartment = item[properties.ListItem.Fields["WHQ Department"].StaticName].ToString();
    string sEmails = string.Empty;
    string sGroups = string.Format("{0},{1},Editors", sAfterRegion, sBeforeWHQDepartment);
     foreach (string group in sGroups.Split(','))
     foreach (SPUser thisuser in properties.Web.Groups[group].Users)
                                    sEmails += thisuser.Email + ";";
                            oSPItem["Subject"] = "Employee Transfer to a Region";
                            oSPItem["To"] = sEmails;
                            oSPItem["Body"] = string.Format("{0} {1} has been transferred to {2} from {3}. Please update EPD ASAP",
    item["First Name"], item["Last Name"], sAfterRegion, sBeforeWHQDepartment);
                            oSPItem.Update();
     else if (sChangedEmployeeType == "WHQ")
     string sBeforeRegion = item[properties.ListItem.Fields["Region"].StaticName].ToString();
     string sAfterWHQDepartment = properties.AfterProperties[properties.ListItem.Fields["WHQ Department"].StaticName].ToString();
     string sEmails = string.Empty;
     string sGroups = string.Format("{0},{1},Editors", sAfterWHQDepartment, sBeforeRegion);
     foreach (string group in sGroups.Split(','))
     foreach (SPUser thisuser in properties.Web.Groups[group].Users)
                                    sEmails += thisuser.Email + ";";
                            oSPItem["Subject"] = "Employee Transfer to a WHQ Department";
                            oSPItem["To"] = sEmails;
                            oSPItem["Body"] = string.Format("{0} {1} has been transferred to {2} from {3}. Please update EPD ASAP",
    item["First Name"], item["Last Name"], sAfterWHQDepartment, sBeforeRegion);
                            oSPItem.Update();
      //send email
      SmtpClient sendEmail = new SmtpClient();
      MailMessage message = new MailMessage();
      sendEmail.Host = "[email protected]";
      message.IsBodyHtml = true;
      message.From = new MailAddress("[email protected]");
      message.To.Add("[email protected]");
      message.Subject = "Test Email on Transfer Jan 13th";
      message.Priority = MailPriority.Normal;
      sendEmail.Send(message);
    catch (Exception ex)
    throw ex;
    This is really frustrating.  Any help is appreciated.
    Talibah C

    Hello,
    Can you debug your solution and let us know the line where your code is failing. Also tell what form you are editing and Is there any checkin/Checkout feature enable on that library?
    BTW i have found two similar threads for same error:
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/2096609e-036e-4e5a-bd69-3cded4d3ca89/sharepoint-2010-error-failed-hr-detected-unable-to-update-list-item?forum=sharepointgeneralprevious
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/2277fdab-5652-4627-9879-da199089d6e6/how-can-i-get-around-this-error-when-modifying-a-document-via-itemadded-event?forum=sharepointdevelopmentlegacy
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Error while saving form in Form Builder

    Hi,
    When i create and save form in XML Form builder i get an error "The Edit form does not contain  a save button or link", I had even configured the save button but still i get this error. Does any one has idea about this issue.
    Regards,
    Ravi.

    Hi,
    i got this resolved. What i observed was, if you try to place some input field in "renderlist or Show" form and you didnt palce save button then this error will come on saving the project.
    try removing the input fields in those forms save it(still you face this issue) close the project and again save the project. this will get solved.
    Regards,
    Ravi.

  • Error in XML Forms Builder

    Dear all,
    I am trying to create News form in XML forms builder but XML form builder persitently throws following error.
    Error: The edit form does not contain a save button or link
    Warning: The name property is not referenced. A GUID will be used as the XML file name.
    what may be the reason.
    Regards,
    Murali

    Hi
    1) data schema not expanding ?
    check ur JRE version installed on ur computer.
    some JRE version doesnot support XML Forms builder functions.
    my JRE version is 1.5.0.70. It really works here .
    upgrade or degrade the version of JRE in ur computer will solve ur problem.
    2) Error: The edit form does not contain a save button or link
    Warning: The name property is not referenced. A GUID will be used as the XML file name.
    This is something to do with u.
    have a look at the manual how to create the XML forms builder onceagain will solve ur problem.
    Check these links:
    http://help.sap.com/saphelp_nw04/helpdata/en/8f/fe743c74fa6449e10000000a11402f/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d3f9a090-0201-0010-d4bb-bb3fc5e91cc5
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ee639033-0801-0010-0883-b2c76b18583a
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/media/uuid/7f99a69d-0701-0010-1783-cf847ec929f8
    Regards,
    Vijay.
    Edited by: vijayakumar kanniah mohan on May 2, 2008 10:05 AM

  • Error with Provider Hosted App on Edit Form of a list item

    We have an error on the Edit Form of one of our pages.
    We have developed a SharePoint Online Provider Hosted app which replaces the standard edit form of a list item and has some further events behind the save button. Since this is rather new territory for us, we're using a roundabout way of achieving this by
    using a script editor web part to display an iFrame of our app. That way we can pass the Url through to our app and retrieve query strings from them.
    Our issue comes quite intermittently in that we sometimes get a "web page cannot be found" error or sometimes a "resource cannot be found" error, however, when we load another app on the site (from the same app project, but using an app
    part), then go back to the Edit Form, the information in the iFrame suddenly renders.
    Any ideas on what might be causing this issue at all? Ideally, we should be rendering the app to the Edit Form is the proper manner, rather than scripting an iFrame that points to out app in Azure. Would this be the cause of the problem?
    Thanks
    Tom

    Hi thumper, if you have access to InfoPath, you can add the form to a page using the InfoPath web part. Otherwise, use SP Designer with instructions below:
    http://sharepoint.stackexchange.com/questions/70287/display-new-form-of-a-list-in-a-web-part-page
    cameron rautmann

  • Access Denied error while editing interactive forms in NWDS

    Hi,
    I am getting following error while editing the Adobe Interactive form in NWDS, I didnt understand why i am getting this error please help me in this issue
    the error i am getting is as follows
    java.io.FileNotFoundException: C:\Documents and Settings\my user\Application Data\Adobe\Designer\FormDesigner.ini (Access is denied)
         at java.io.RandomAccessFile.open(Native Method)
         at java.io.RandomAccessFile.<init>(RandomAccessFile.java:212)
         at com.sap.ide.webdynpro.adobetemplatedesigner.internalisation.AdobelanguageSettingService.setAdobeLanguage(AdobelanguageSettingService.java:43)
         at com.sap.ide.webdynpro.adobetemplatedesigner.AdobeDesignerEditorPart.createPartControl(AdobeDesignerEditorPart.java:123)
         at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:661)
         at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:428)
         at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:594)
         at org.eclipse.ui.internal.EditorReference.getEditor(EditorReference.java:266)
         at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2820)
         at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2729)
         at org.eclipse.ui.internal.WorkbenchPage.access$11(WorkbenchPage.java:2721)
         at org.eclipse.ui.internal.WorkbenchPage$10.run(WorkbenchPage.java:2673)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:70)
         at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2668)
         at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2652)
         at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2635)
         at com.sap.ide.webdynpro.adobetemplatedesigner.listener.ViewDesignerActionListener.launchAdobeDesigner(ViewDesignerActionListener.java:73)
         at com.sap.ide.webdynpro.adobetemplatedesigner.contentprovider.LaunchDesignerAction.run(LaunchDesignerAction.java:30)
         at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:251)
         at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:583)
         at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:500)
         at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:411)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:84)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:1003)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3823)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3422)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2384)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2348)
         at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2200)
         at org.eclipse.ui.internal.Workbench$5.run(Workbench.java:495)
         at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:288)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:490)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
         at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:113)
         at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:193)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:110)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:79)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:386)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:549)
         at org.eclipse.equinox.launcher.Main.basicRun(Main.java:504)
         at org.eclipse.equinox.launcher.Main.run(Main.java:1236)
    thanks
    Anu

    Hi Anu,
          Please check if you have permissions in C:\Documents and Settings\my user\Application Data\Adobe\Designer\FormDesigner.ini
          Change "my user" to the actual user.
    Best regards, Aldo.

  • Error installing OAM against Sun Directory Server 6.3: No such object (32)

    Hi folks,
    I'm getting error installing OAM 10.1.4.3.0 (Linux, 64 bit) against Sun Directory Server 6.3. I've followed Oracle troubleshooting doc (http://download.oracle.com/docs/cd/E15217_01/doc.1014/e12493/trouble.htm#BABBAAFH), and replaced every occurrence of cn=userRoot with cn=my_company_name inside iPlanet5_oblix_index_add.ldif. I still get the same error "ldapmodify: No such object (32)" for every entry in the file. Has someone managed to get it to work?
    Thank you, Roman

    Hi folks,
    I got it to work, here're the steps:
    1. After loading the schema file, follow the article (http://download.oracle.com/docs/cd/E15217_01/doc.1014/e12493/trouble.htm#BABBAAFH, not the doc 552157.1 as it states incorrect info, sorry
    Notoriuos) to edit the index file (iPlanet5_oblix_index_add.ldif) and replace all occurrences of "userRoot" with "your_company_name" (which is your ldap suffix without the c=us part as in
    o=your_company_name, c=us) using vi command:
    :%s/userRoot/your_company_name/g
    2. run ldapadd (not ldapmodify! as all but the one last object listed on the dn: line might already exist under cn=config), here's example:
    $ ldapadd -x -h your_ldap_host -p your_port -c -f IdentityServer_install_dir/identity/oblix/data.ldap/common/iPlanet5_oblix_index_add.ldif -D "cn=directory manager" -w directory_manager_passwd
    3. If done right, you should see smth like this:
    adding new entry "cn=obactionname,............... per every entry in the index file
    HTH
    Roman

  • Sun Directory Service Control Center error

    Hi Everyone,
    I an having some issues when setting up the Sun Directory Service Control Center..
    I am deploying on Red Het Enterprise Linux 5.4 and have followed the Sun Directory Server installation guide and am deploying the dscc7.war file on the Sun Java Systems Web Server, after I fillow the steps in the installation guide I deploy the war file to the web server but when I test the connection from the browser I get the following error:, does anyone know what I may have missed??
    I have also found that the docs say to add the following to the magnus.conf file in the http server:
    type=magnus-internal/parsed-html exts=shtml
    However I get the following message from the web server when I restart the instance:
    type=magnus-internal/parsed-html directive ignored
    Thanks
    Mike
    An unexpected error occurred while checking the status of Sun Directory Service Control Center.
    Show Details
    Hide Details
    Install Error Code: 3
    Stack:
    com.sun.directory.common.slapx.AdmCmdErrorException: /opt/sun/dsee7/bin/dsadm info all separator = /opt/sun/dsee7/var/dcc/ads [exitCode=60]
    com.sun.directory.common.slapx.AdmCmd.run(AdmCmd.java:94)
    com.sun.directory.common.slapx.AdmCmd.run(AdmCmd.java:56)
    com.sun.directory.common.slapx.AdmCmd.runInfo(AdmCmd.java:174)
    com.sun.directory.common.slapx.SlapxCmd.runInfo(SlapxCmd.java:83)
    com.sun.directory.dcc.ads.ADSInstall.getSlapxInfo(ADSInstall.java:450)
    com.sun.directory.dcc.ads.ADSInstall.isRunning(ADSInstall.java:384)
    com.sun.web.admin.directory.dcc.InitSequenceViewBean.getInstallException(InitSequenceViewBean.java:81)
    com.sun.web.admin.directory.dcc.ADSInstallExceptionViewBean.createChild(ADSInstallExceptionViewBean.java:73)
    com.iplanet.jato.view.ContainerViewBase.ensureChild(ContainerViewBase.java:187)
    com.iplanet.jato.view.ContainerViewBase.getChild(ContainerViewBase.java:541)
    com.iplanet.jato.view.ContainerViewBase.beginChildDisplay(ContainerViewBase.java:819)
    com.iplanet.jato.taglib.TagBase.fireBeginDisplayEvent(TagBase.java:133)
    com.sun.web.ui.taglib.common.CCTagBase.fireBeginDisplayEvent(CCTagBase.java:149)
    com.sun.web.ui.taglib.common.CCTagBase.doEndTag(CCTagBase.java:108)
    org.apache.jsp.jsp.ADSInstallException_jsp._jspx_meth_cc_text_2(ADSInstallException_jsp.java:363)
    org.apache.jsp.jsp.ADSInstallException_jsp._jspx_meth_cc_pagetitle_0(ADSInstallException_jsp.java:204)
    org.apache.jsp.jsp.ADSInstallException_jsp._jspx_meth_cc_header_0(ADSInstallException_jsp.java:131)
    org.apache.jsp.jsp.ADSInstallException_jsp._jspService(ADSInstallException_jsp.java:71)
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:80)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:917)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:373)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:457)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:351)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:917)
    org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:398)
    org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:792)
    org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:472)
    org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:353)
    com.iplanet.jato.view.ViewBeanBase.forward(ViewBeanBase.java:340)
    com.iplanet.jato.view.ViewBeanBase.forwardTo(ViewBeanBase.java:261)
    com.sun.web.admin.directory.dcc.DCCViewBean.beginDisplay(DCCViewBean.java:186)
    com.iplanet.jato.taglib.UseViewBeanTag.doStartTag(UseViewBeanTag.java:149)
    org.apache.jsp.jsp.DCC_jsp._jspService(DCC_jsp.java:60)
    org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:80)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:917)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:373)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:457)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:351)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:917)
    org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:398)
    org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:792)
    org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:472)
    org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:353)
    com.iplanet.jato.view.ViewBeanBase.forward(ViewBeanBase.java:340)
    com.iplanet.jato.view.ViewBeanBase.forwardTo(ViewBeanBase.java:261)
    com.iplanet.jato.ApplicationServletBase.dispatchRequest(ApplicationServletBase.java:981)
    com.iplanet.jato.ApplicationServletBase.processRequest(ApplicationServletBase.java:615)
    com.iplanet.jato.ApplicationServletBase.doGet(ApplicationServletBase.java:459)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:796)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:917)
    org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:398)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:304)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
    com.sun.web.admin.directory.dcc.solo.DCCSoloSessionManagerFilter.doFilter(DCCSoloSessionManagerFilter.java:151)
    org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:217)
    org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:185)
    org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:275)
    org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:255)
    org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:188)
    org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:586)
    org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:556)
    org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:187)
    org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:586)
    org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:556)
    com.sun.webserver.connector.nsapi.NSAPIProcessor.service(NSAPIProcessor.java:160)
    Edited by: mikejhathaway78 on Jan 27, 2010 1:16 PM

    Hi,
    I have the same problem, too.
    I installed DSEE7 on Solaris 10 SPARC. The installation went smoothly and there was no error occur.
    I cd to the folder /opt/SUNWdsee7/bin, login as root user, and the run the command ./dsccsetup initialize.
    After that I login Weblogic 10 server console as the weblogic user and installed the dscc7.war file. The installation also went smoothly and no error at all. I got the following error when I tried to open the page http://host:port/dscc7:
    An unexpected error occurred while checking the status of Sun Directory Service Control Center.
    Show Details
    Hide Details
    Install Error Code: 3
    Stack:
    com.sun.directory.common.slapx.AdmCmdErrorException: /opt/SUNWdsee7/bin/dsadm info all separator = /var/opt/SUNWdsee7/dcc/ads [exitCode=60]
    com.sun.directory.common.slapx.AdmCmd.run(AdmCmd.java:94)
    com.sun.directory.common.slapx.AdmCmd.run(AdmCmd.java:56)
    com.sun.directory.common.slapx.AdmCmd.runInfo(AdmCmd.java:174)
    com.sun.directory.common.slapx.SlapxCmd.runInfo(SlapxCmd.java:83)
    com.sun.directory.dcc.ads.ADSInstall.getSlapxInfo(ADSInstall.java:450)
    com.sun.directory.dcc.ads.ADSInstall.isRunning(ADSInstall.java:384)
    com.sun.web.admin.directory.dcc.InitSequenceViewBean.getInstallException(InitSequenceViewBean.java:81)
    com.sun.web.admin.directory.dcc.ADSInstallExceptionViewBean.createChild(ADSInstallExceptionViewBean.java:73)
    com.iplanet.jato.view.ContainerViewBase.ensureChild(ContainerViewBase.java:187)
    com.iplanet.jato.view.ContainerViewBase.getChild(ContainerViewBase.java:541)
    com.iplanet.jato.view.ContainerViewBase.beginChildDisplay(ContainerViewBase.java:819)
    com.iplanet.jato.taglib.TagBase.fireBeginDisplayEvent(TagBase.java:133)
    com.sun.web.ui.taglib.common.CCTagBase.fireBeginDisplayEvent(CCTagBase.java:149)
    com.sun.web.ui.taglib.common.CCTagBase.doEndTag(CCTagBase.java:108)
    jsp_servlet._jsp.__adsinstallexception._jsp__tag8(__adsinstallexception.java:512)
    jsp_servlet._jsp.__adsinstallexception._jsp__tag3(__adsinstallexception.java:289)
    jsp_servlet._jsp.__adsinstallexception._jsp__tag1(__adsinstallexception.java:189)
    jsp_servlet._jsp.__adsinstallexception._jspService(__adsinstallexception.java:129)
    weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:502)
    weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:251)
    com.iplanet.jato.view.ViewBeanBase.forward(ViewBeanBase.java:340)
    com.iplanet.jato.view.ViewBeanBase.forwardTo(ViewBeanBase.java:261)
    com.sun.web.admin.directory.dcc.DCCViewBean.beginDisplay(DCCViewBean.java:186)
    com.iplanet.jato.taglib.UseViewBeanTag.doStartTag(UseViewBeanTag.java:149)
    jsp_servlet._jsp.__dcc._jspService(__dcc.java:94)
    weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
    weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
    weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:502)
    weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:251)
    com.iplanet.jato.view.ViewBeanBase.forward(ViewBeanBase.java:340)
    com.iplanet.jato.view.ViewBeanBase.forwardTo(ViewBeanBase.java:261)
    com.iplanet.jato.ApplicationServletBase.dispatchRequest(ApplicationServletBase.java:981)
    com.iplanet.jato.ApplicationServletBase.processRequest(ApplicationServletBase.java:615)
    com.iplanet.jato.ApplicationServletBase.doGet(ApplicationServletBase.java:459)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:292)
    weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    com.sun.web.admin.directory.dcc.solo.DCCSoloSessionManagerFilter.doFilter(DCCSoloSessionManagerFilter.java:151)
    weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:42)
    weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3496)
    weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    weblogic.security.service.SecurityManager.runAs(Unknown Source)
    weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2180)
    weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2086)
    weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1406)
    weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    I've tried all the solutions that I found in the Sun forum, but it didn't work. Please help me if you can.
    Note: I cannot run the weblogic server as root account.
    Many thanks,
    Anthony Ton

  • Error while migrating to Sun Directory Server 6.0

    Hi All,
    I am trying to migrate the Sun One Directory Server 5.2 to Sun Directory Server 6.0. I am getting the following error
    bash-3.2# ./dsmig migrate-config /var/Sun/mps/slapd-circb2bld3/ /var/SunDirectoryServer6.0/dsInst/
    Launching Configuration Migration of server instance /var/Sun/mps/slapd-circb2bld3 .....
    Enter the certificate database password:
    Starting server instance /var/SunDirectoryServer6.0/dsInst ..... Instance /var/SunDirectoryServer6.0/dsInst is already running (ns-slapd pid is 3868)
    Enter "cn=Directory Manager" password:
    Connecting to server localhost:389 .....
    Could not bind securely on "localhost:389".
    Remote host closed connection during handshake
    Details: SSL peer shut down incorrectly
    Could not create context for configuration migration.
    Operation "migrate-config" failed.
    Please help me.

    Please stop
    The migration guide has step by step instructions, including command line examples, are you using that as your reference?
    Your upgrade should be to (at a minimum) DSEE 6.3.1.1.1. Upgrading to 6.0 is upgrading to a release level that has no patches or fixes to the product. There are significant fixes to the migration command line tools. There is a good chance you will run into issues.
    You should install and review migration to ODSEE 11.1.1.7.0 (which would effectively be the 7.2 release of the DS).
    There is a specific guide for migration and upgrade, which includes migration from DS 5.2 to 11.x
    The full documentation collection for 11.1.1.7.0 is here
    http://docs.oracle.com/cd/E29127_01/index.htm
    The specific migration guide is here
    http://docs.oracle.com/cd/E29127_01/doc.111170/e28971/toc.htm
    See: Part II Migrating from ODSEE 5.2 to ODSEE 11g Release 1 (11.1.1.7.0)
    ODSEE 11.1.1.7.0 can be downloaded from here.
    http://www.oracle.com/technetwork/middleware/downloads/oid-11g-161194.html

  • SharePoint Designer 2010 Error occurs when accessing Edit Form: "The server returned a non-specific error when trying to get data from the data source ..." This occurs when using "" in a calculated column in a SharePoint List

    I created a calculated column "Expiration Date" in SharePoint 2010 with formula, =IF([Contingent Hire]=TRUE,(Created+90),(IF([Contingent Hire]=FALSE," ")))
    This works in the SharePoint list but when I go to edit the Edit Form in Designer. I get the error specified in the title of this post. I'm trying to make it so the Expiration Date is blank when another column, "Contingent Hire" (a YES/No
    column) is FALSE.
    The Edit Form is essentially a DataViewWebpart. If I remove the " ", like so, "(IF([Contingent Hire]=FALSE,))" from the calc column, the error goes away; however, the Expiration Date field does not
    remain blank like I want it to.
    Does anyone have any suggestions? (Below is the error generated when I open Designer and then try to open the Edit form for the corresponding list containing the calc column)
    JackSki123

    Hi Jack,
    Could you provide a screenshot about this issue?
    As Dimitri suggested, you can install the update for your SharePoint Designer and check again.
    And you can also check if you can display "NA" instead of " " in your calculated column per the following post.
    http://rajeshspillai.blogspot.in/2012/03/server-returned-non-specific-error-when.html
    Thanks
    Daniel Yang
    TechNet Community Support

  • Error in editing Object Form

    Hi,
    After submitting the request for an application when i click on edit to make some changes in web console the form for editing pops out. When i change the field values and again submit am getting an error like 'Error in editing Object Form .After request is submitted, data canot be added, updated or deleted any further by the requestor'. This happens only for applications which are having a child form. Please let me know the solution for this issue. Thanks in advance.
    Regards,
    Durgaprasad

    I have given permission to all users in the object from. This problem is not happening for all applications. Only for applications which are having child form the problem is there. When i debugged the custom UI code the error displayed in console is 'Error in editing Object Form .After request is submitted, data canot be added, updated or deleted any further by the requestor'. Thanks.

  • '$P_CRM' is undefined Error while opening Lookup field in Bulk edit form in CRM 2013

    Hi All,
    I am getting this strange error in MS CRM 2013
    When I do bulk edit for any entity , I select 2-3 records and click on Edit , the Bulk edit form opens
    then whenever I clicks on any field which is lookup type It does not open , after debugging with F12 developer tool
    I am getting this error.    "'$P_CRM' is undefined"
    I have MS CRM 2013 on premise , Service Pack 1 Update Rollup 1 installed and using IE 11.
    Any Idea
    Regards,
    Vilas
    Vilas Magar http://microsoftcrmworld.blogspot.com/

    Few questions that might help us to identify issue:
    1. Have you enabled Social Insight  ? If yes can you try bulk edit on entity which don't have social insight enabled and confirm if it repro there?
    For more information on how to enable Social Insight :
    http://technet.microsoft.com/en-us/library/dn659847.aspx
    2. When you close bulk edit form are you getting script error dialog? If yes can you share that error log reports?

  • Error while starting Sun Directory Server 6.0

    Hello,
    I recently migrated from Sun Directory Server 5.2 to Sun Directory Server 6.0. I am trying to start the server. I get the following error
    bash-3.2# ./start-slapd
    Enter PIN for Internal (Software) Token:
    Enter PIN for Internal (Software) Token:
    [29/Mar/2013:11:39:47 -0400] - ERROR<4780> - SSL - conn=-1 op=-1 msgId=-1 - Security Initialization: Unable to authenticate to slot for cipher family cn=RSA,cn=encryption,cn=config ( error -8177 - The security password entered is incorrect. )
    Server not running!! Failed to start ns-slapd process.
    Please help me here. I dont know the PIN for Internal (Software) Token. Please help.

    Hi,
    it seems you're trying to start an instance which is configured for SSL, so at startup time, it's asking the default keystore password to access the internal security certificate/device.
    You should know that password.
    Thanks,
    Marco

  • Sun Directory Server giving errors during installion

    Hi,
    Iam new to the LDAP world.
    Iam trying to install, a Sun Directory Server on windows platform.
    Iam using the zipped package of the installation.
    While installing , the error i encounterd is as follows:
    Error: dsccsetup failed.
    Please help in installing the server.
    Thanks

    Hi.
    We need more info to help you. Which version are you trying to install (6.0 / 6.1 / 6.2) ? Which command are you running ? Can you give all the output not only the error ?
    Regards,
    Carole.

Maybe you are looking for

  • Windows Vista / 7 64 Install Error

    Not sure how many people are having this issue in Windows 7 64 / Vista 64, but I've found a fix. The issue is when you try to install iTunes, you get an error like "Could not open Key: UNKNOWN\Components...blah blah blah. Access is denied." What work

  • How do i set my ipad for english and enter Netherlands as country of residence?

    I live in The Netherlands but want my language set to English. Also when I ask for an app, my billing address is in the Netherlands, but I want to set country to USA, otherwise everything turns to Dutch language

  • Encore won't encode some PSD files in Flash

    I have succesfully completed a DVD project on Encore (4.0)  with mpg elements edited in Premier Pro (4.0). A number of slide sequences constructed from jpgs converted to pds files in Photoshop (cs5) have been used, plus some (individual, single) text

  • Example of Kodo 3.0.0 running on Jboss 3.2.2

    Has anyone gotten Kodo 3.0.0 to run on JBoss 3.2.2 using XA transactions? If so, can anyone provide a sample with sample config files that got it to work? Everything I try is giving me errors. I've gone through the docs, tried to set it up as describ

  • Qty & Price for a Project

    Dear All, Can i get any report which can tell me the total qty & amt purchased for a perticular project for a certain period ? regds, CB