I got an exception from UPS.

Hello,
Anyone from you has passed an exception?
I passed an exception and my order isn't moving.
What I have to do?

From the UPS website:
If you receive a message that your shipment has experienced an exception, then check the Shipment or Package Progress section for details about changes in delivery schedule. An exception occurs when a package or shipment encounters an unforeseen event, which could result in a change to the expected delivery day. Examples of exception include: address unknown, damage to shipment, or signature not received.

Similar Messages

  • While updating my iphone 4s to ios6, I had to restore it. Now every time I connect to itunes, I get the "Set Up Your iPhone" window with the set up as new iphone and restore from backup options. After the restore, I got everything except my apps back.

    While updating my iphone 4s to ios6, I had to restore it. Now every time I connect to itunes, I get the "Set Up Your iPhone" window with the set up as new iphone and restore from backup options. After the restore, I got everything except my apps and music back. Do I need to set the phone up as new again?

    Hi Vidbrent,
    If you are having issues updating or restoring your iPhone, you may find the following article helpful:
    Apple Support: If you can't update or restore your iOS device
    http://support.apple.com/kb/ht1808
    Regards,
    - Brenden

  • Got Minus one from a read call Exception

    We are trying to create a connection in Jdeveloper with this Database details -
    Userid/password:ora1146/ORA1146
    (DESCRIPTION= (ADDRESS=(PROTOCOL=tcp)(HOST=adc60060fems.us.oracle.com)(PORT=1567)) (CONNECT_DATA= (SID=c1fpp550 )))
    It shows -
    Test failed: Io exception: Got minus one from a read call.. Could you please help in resolving this issue.

    We're having the same message, at some random points this message just starts and the listener is up.
    Shutting down the enterprise manager and restarting the listener fixes the issue but then the enterprise manager refuses to start.
    We don't really know what is causing this behaviour, hope this can be of help.

  • Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX))

    I've Main Report + 5 sub report. All of this in a 1 file named _rptBorang.rpt.
    This _rptBorang.rpt consists of
    1. Main Report
    2. _spupimSPMBorang.rpt
    3. _spupimSTPMBorang.rpt
    4. _spupimSijilDiploma.rpt
    5. _spupimKoQ.rpt
    6. _spupimPilihanProg.rpt
    When I preview the report, the Enter values dialog box ask 7 parameters. It's
    1. idx
    2. tbl_MST_Pemohon_idx
    3. tbl_MST_Pemohon_idx(_spupimSPMBorang.rpt)
    4. tbl_MST_Pemohon_idx(_spupimSTPMBorang.rpt)
    5. tbl_MST_Pemohon_idx(_spupimSijilDiploma.rpt)
    6. tbl_MST_Pemohon_idx(_spupimKoQ.rpt)
    7. tbl_MST_Pemohon_idx(_spupimPilihanProg.rpt)
    My ASP.NET code as following,
    <%@ Page Language="VB" AutoEventWireup="false" CodeFile="_cetakBorang.aspx.vb" Inherits="_cetakBorang" title="SPUPIM" %>
    <%@ Register assembly="CrystalDecisions.Web, Version=13.0.2000.0, Culture=neutral, PublicKeyToken=692fbea5521e1304" namespace="CrystalDecisions.Web" tagprefix="CR" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head id="Head1" runat="server">
        <title>Untitled Page</title>
    </head>
    <body>
        <form id="form1n" runat="server">
        <div align="center">
            <asp:Label ID="lblMsg" runat="server" ForeColor="Red"></asp:Label>
            <CR:CrystalReportViewer ID="CrystalReportViewer1" runat="server"
                AutoDataBind="true" />
        </div>
        </form>
    </body>
    </html>
    Imports System.configuration
    Imports System.Data.SqlClient
    Imports System.Web.Security
    Imports CrystalDecisions.Shared
    Imports CrystalDecisions.CrystalReports.Engine
    Partial Class _cetakBorang
        Inherits System.Web.UI.Page
        Private Const PARAMETER_FIELD_NAME1 As String = "idx"
        Private Const PARAMETER_FIELD_NAME2 As String = "tbl_MST_Pemohon_idx"
        Private Const PARAMETER_FIELD_NAME3 As String = "tbl_MST_Pemohon_idx(_spupimSPMBorang.rpt)"
        Private Const PARAMETER_FIELD_NAME4 As String = "tbl_MST_Pemohon_idx(_spupimSTPMBorang.rpt)"
        Private Const PARAMETER_FIELD_NAME5 As String = "tbl_MST_Pemohon_idx(_spupimSijilDiploma.rpt)"
        Private Const PARAMETER_FIELD_NAME6 As String = "tbl_MST_Pemohon_idx(_spupimKoQ.rpt)"
        Private Const PARAMETER_FIELD_NAME7 As String = "tbl_MST_Pemohon_idx(_spupimPilihanProg.rpt)"
        Dim myReport As New ReportDocument
        'rpt connection
        Public rptSvrNme As String = ConfigurationManager.AppSettings("rptSvrNme").ToString()
        Public rptUsr As String = ConfigurationManager.AppSettings("rptUsr").ToString()
        Public rptPwd As String = ConfigurationManager.AppSettings("rptPwd").ToString()
        Public rptDB As String = ConfigurationManager.AppSettings("rptDB").ToString()
        Private Sub SetCurrentValuesForParameterField(ByVal reportDocument As ReportDocument, ByVal arrayList As ArrayList, ByVal paramFieldName As String)
            Dim currentParameterValues As New ParameterValues()
            For Each submittedValue As Object In arrayList
                Dim parameterDiscreteValue As New ParameterDiscreteValue()
                parameterDiscreteValue.Value = submittedValue.ToString()
                currentParameterValues.Add(parameterDiscreteValue)
            Next
            Dim parameterFieldDefinitions As ParameterFieldDefinitions = reportDocument.DataDefinition.ParameterFields
            Dim parameterFieldDefinition As ParameterFieldDefinition = parameterFieldDefinitions(paramFieldName)
            parameterFieldDefinition.ApplyCurrentValues(currentParameterValues)
        End Sub
        Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
            If Not IsPostBack Then
                publishReport(Convert.ToInt32(Session("applicantIdx")), Convert.ToInt32(Session("applicantIdx")))
            End If
        End Sub
        Private Sub publishReport(ByVal idx As Integer, ByVal tbl_MST_Pemohon_idx As Integer)       
            Try
                Dim reportPath As String = String.Empty
                reportPath = Server.MapPath("_rptBorang.rpt")
                myReport.Load(reportPath)
                myReport.SetDatabaseLogon(rptUsr, rptPwd, rptSvrNme, rptDB)
                Dim arrayList1 As New ArrayList()
                arrayList1.Add(idx)
                SetCurrentValuesForParameterField(myReport, arrayList1, PARAMETER_FIELD_NAME1)
                Dim arrayList2 As New ArrayList()
                arrayList2.Add(tbl_MST_Pemohon_idx)
                SetCurrentValuesForParameterField(myReport, arrayList2, PARAMETER_FIELD_NAME2)
                Dim arrayList3 As New ArrayList()
                arrayList3.Add(tbl_MST_Pemohon_idx)
                SetCurrentValuesForParameterField(myReport, arrayList3, PARAMETER_FIELD_NAME3)
                Dim arrayList4 As New ArrayList()
                arrayList4.Add(tbl_MST_Pemohon_idx)
                SetCurrentValuesForParameterField(myReport, arrayList4, PARAMETER_FIELD_NAME4)
                Dim arrayList5 As New ArrayList()
                arrayList5.Add(tbl_MST_Pemohon_idx)
                SetCurrentValuesForParameterField(myReport, arrayList5, PARAMETER_FIELD_NAME5)
                Dim arrayList6 As New ArrayList()
                arrayList6.Add(tbl_MST_Pemohon_idx)
                SetCurrentValuesForParameterField(myReport, arrayList6, PARAMETER_FIELD_NAME6)
                Dim arrayList7 As New ArrayList()
                arrayList7.Add(tbl_MST_Pemohon_idx)
                SetCurrentValuesForParameterField(myReport, arrayList7, PARAMETER_FIELD_NAME7)
                Dim parameterFields As ParameterFields = CrystalReportViewer1.ParameterFieldInfo
                CrystalReportViewer1.ReportSource = myReport
            Catch ex As Exception
                lblMsg.Text = ex.Message
            End Try
        End Sub
        Protected Sub Page_Unload(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Unload
            myReport.Close()
        End Sub
    End Class
    The result was, my ASP.NET return error --- > Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX))
    I'm stuck
    Really need help
    Edited by: WKM1925 on Feb 22, 2012 11:49 AM

    First off, it would really be nice to have the version of CR you are using. Then
    1) does this report work the CR designer?
    2) What CR SDK are you using?
    3) If .NET, what version?
    4) Web or Win app?
    5) What OS?
    Then, please re-read your post and see if it actually makes any sense. To me, it's just gibberish...
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Error While calling getListItem Webservice : Server was unable to process request. --- Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))

    Hi All,
    we are calling sharepoint webservice from our web application but we are getting below error while calling webservice.
    Server was unable to process request. ---> Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
    Our code is as below.
    We used below 2 options but we got same error for both scenario,
    1)
                ListService.Lists objLists = new ListService.Lists();
                NetworkCredential objNetworkCredential = new NetworkCredential("username", "password");
                objLists.Credentials = objNetworkCredential;
                System.Xml.XmlNode objXmlNode = objLists.GetListItems("Tasks", null, null, null, null, null, null);
    2)         ListService.Lists objLists = new ListService.Lists();
                objLists.Proxy = new WebProxy("proxyaddress",true);
                NetworkCredential objNetworkCredential = new NetworkCredential("username", "password");
                objLists.Credentials = objNetworkCredential;
                System.Xml.XmlNode objXmlNode = objLists.GetListItems("Tasks", null, null, null, null, null, null);
    Please help me what is the problem while calling this service.
    Thanks in advance.
    Regards,
    Kaivan Shah

    Hi ,
    Here is a similar case ,you can have a look at this .
    Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) -Accessing the sharepoint site:
    http://social.msdn.microsoft.com/Forums/en-NZ/sharepointworkflow/thread/5eab2116-7d7c-4bf3-bfa1-48bd8992dded
    Thanks,
    Entan Ming

  • Exception from HRESULT: 0x80072EFE while obtaining developer license on win 8.1 Pro and Enterprise edition

     Hi,
         I need developer license but I get below error "
         "We couldn't get your developer license for windows8.1
          : Exception from HRESULT: 0x80072EFE"
    Another issue I am having is I can't open store app - it gives message "Your PC isn't connected to the Internet. To use the store,connect to the Internet and then try again"
     My PC is connected to the Internet and I can open other store apps
    I have tried below workaround
    - Click on Try again in the message
    -Check if system date and time is correct.
     Could you assist me. Thank you.

    From Windows 8 refresh screen: "Apps from Windows Store will be kept. Apps you installed from discs or websites will be removed." and documentation says that "The apps that came with your PC or you installed from Windows  Store will be reinstalled, but any apps you installed from other websites and DVDs will be removed.  You'll find a list of  the removed apps on your desktop after refreshing your PC." (http://windows.microsoft.com/en-US/windows-8/restore-refresh-reset-pc)
    Since you installed Windows 8, it looks now as a fresh Windows 8 installation. Well... It removed all the apps installed, of course. Seems you got rid of some crapware.
    But you will have to reinstall drivers (if required, shouldn't be too many: Synaptics UltraNav, Hotkey/Onscreen, Active Protection System, Realtek PCIE Card Reader... all the others should be detected already automatically by now). And of course you will have to reinstall all your software.
    I'm afraid there is not much more help to be given. It worked as it was intended to. 
    If I helped you, please give me some kudos! ^^

  • Acrobat SDK C# Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)

    Hi,
    Here I want to known one thing clearly, that is I was developed one application in C# with Acrobat SDK.
    In my application I am using Acrobat AxAcroPDFLib.AxAcroPDF and  also some other acrobat class.
    In my development system i am using Acrobat 7.0.
    When my application installed in my client system I am faced different types of problem.
    System 1
    System Configuration
    OS : XP
    Acrobat 7.0
    Result : Success
    System 2
    System Configuration
    OS : XP
    Acrobat 5.0
    Acrobat 7.0
    Result : Fail
    Error : Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)
    System 3
    System Configuration
    OS : XP
    Acrobat 7.0
    Adobe Reader 9
    Result : Success
    Note:
    But I having problem when I am use my application while Adobe Reader 9 is open.
    What is problem?
    Error is related to ActiveX COM fail like
    Error HRESULT E_FAIL has been returned from a call to a COM component.
    Retrieving the COM class factory for component with CLSID {FF76CB60-2E68-2E68-101B-B02E-04021C009402} failed due to the following error: 80080005
    System 4
    System Configuration
    OS : XP
    Acrobat 7.0
    Result : Success
    Problem:
    At the time of tool installation the system configuration will be as mention above, after by mistake they installed Adobe Reader 5.0. I faced the problem to use my application ActiveX COM failed
    So I was un installed Adobe Reader 5, and tried but I got the following error,
         System.Runtime.InteropServices.COMException (0x80040154): Class not registered (Exception      from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG))
    at System.Windows.Forms.UnsafeNativeMethods.CoCreateInstance(Guid& clsid, Object punkOuter, Int32 context, Guid& iid)
    at System.Windows.Forms.AxHost.CreateWithoutLicense(Guid clsid)
    at System.Windows.Forms.AxHost.CreateWithLicense(String license, Guid clsid)
    at System.Windows.Forms.AxHost.CreateInstanceCore(Guid clsid)
    at System.Windows.Forms.AxHost.CreateInstance()
    at System.Windows.Forms.AxHost.GetOcxCreate()
    at System.Windows.Forms.AxHost.TransitionUpTo(Int32 state)
    at System.Windows.Forms.AxHost.CreateHandle()
    at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
    at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
    at System.Windows.Forms.AxHost.EndInit()
    at Greenleaf_MetaData.ArticleMetaData_Jnl.InitializeComponent()
    at Greenleaf_MetaData.ArticleMetaData_Jnl..ctor()
    at Greenleaf_MetaData.MainForm.btn_Process_Click(Object sender, EventArgs e)
    at System.Windows.Forms.Control.OnClick(EventArgs e)
    at System.Windows.Forms.Button.OnClick(EventArgs e)
    at System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
    at System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
    at System.Windows.Forms.Control.WndProc(Message& m)
    at System.Windows.Forms.ButtonBase.WndProc(Message& m)
    at System.Windows.Forms.Button.WndProc(Message& m)
    at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
    at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
    at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)   
    So, I am advised my System Admin team to Re-Install the Acrobat 7.0, after the Re-Installation of Acrobat 7.0, all the problem get solved.
    But I want to known what is problem?
    And also what is the Adobe COM connection between Acrobat ActiveX and my Application(C#, VB, etc…).
    So Please give clear information and guidance...
    Thanks & Regard
    Thirusanguraja Venkatesan

    A simple google can get:
    Common problems such as Windows Error Code 0x80040154 can be resolved with without too much difficulty. In this article we will go through solving the problem and how to prevent it in the future.
    What happens
    If you are registering an ATL server, you may see this error code. In the case of DLLs, regsvr32.exe will generate this error. In the case of EXEs, calling _Module::RegisterServer (CComModule::RegisterServer) in _tWinMain() will generate this error.
    For detail: http://www.error.info/windows/registry-0x80040154.html
    Cheers,
    andy

  • Drag and drop issue: got an exception

    Hi there,
    I'm facing a problem with drag and drop. Basically I try to drag an AnchorPane (and all its children), representing a sticky note, from an AnchorPane to another. While trying to do it I got an exception. I followed some steps from the Oracle's documentation, but didn't help me.
    I created a method that reacts on the DRAG_DETECTED event which is the following:
    @FXML private void stickyDragDetected(MouseEvent event) {
      System.out.println("Drag detected");
      Dragboard db = ((Node) event.getSource()).startDragAndDrop(TransferMode.COPY_OR_MOVE);
      ClipboardContent cc = new ClipboardContent();
      cc.put(new DataFormat(PojoTask.class.getName()), task.get().convertToPojo());
      db.setContent(cc);
      event.consume();
      System.out.println("End drag detected");
    }Some explanations:
    - PojoTask a simple Pojo without any properties (because they're not serializable)
    - The variable task is declared like this: ObjectProperty<Task> task = new SimpleObjectProperty<Task>();
    - Task is a class similar to PojoTask but with properties
    - I use the PojoTask's class name because it's a custom drag'n'drop
    When I drag the AnchorPane, i got this exception, repeated multiple times (and nothing else):
    Glass detected outstanding Java exception at -[GlassViewDelegate sendJavaDndEvent:type:]:src/com/sun/mat/ui/GlassViewDelegate.m:774
    Exception in thread "JavaFX Application Thread" java.lang.IllegalArgumentException: PrismEventUtils.convertToTransferMode: ambiguous drop action: 3
         at com.sun.javafx.tk.quantum.PrismEventUtils.convertToTransferMode(PrismEventUtils.java:193)
         at com.sun.javafx.tk.quantum.PrismEventUtils.glassDragEventToFX(PrismEventUtils.java:147)
         at com.sun.javafx.tk.quantum.PrismEventUtils.glassDragSourceEventToFX(PrismEventUtils.java:167)
         at com.sun.javafx.tk.quantum.QuantumToolkit.convertDragSourceEventToFX(QuantumToolkit.java:1141)
         at javafx.scene.Scene$DragSourceListener.dragDropEnd(Scene.java:2971)
         at com.sun.javafx.tk.quantum.GlassSceneDnDEventHandler.handleDragEnd(GlassSceneDnDEventHandler.java:199)
         at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleDragEnd(GlassViewEventHandler.java:420)
         at com.sun.glass.ui.View.handleDragEnd(View.java:685)
         at com.sun.glass.ui.View.notifyDragEnd(View.java:990)
         at com.sun.glass.ui.mac.MacPasteboard._putItemsFromArray(Native Method)
         at com.sun.glass.ui.mac.MacPasteboard.putItemsFromArray(MacPasteboard.java:148)
         at com.sun.glass.ui.mac.MacPasteboard.putItems(MacPasteboard.java:176)
         at com.sun.glass.ui.mac.MacSystemClipboard.pushToSystem(MacSystemClipboard.java:248)
         at com.sun.glass.ui.SystemClipboard.flush(SystemClipboard.java:28)
         at com.sun.glass.ui.ClipboardAssistance.flush(ClipboardAssistance.java:34)
         at com.sun.javafx.tk.quantum.QuantumClipboard.flush(QuantumClipboard.java:196)
         at com.sun.javafx.tk.quantum.QuantumToolkit.startDrag(QuantumToolkit.java:1189)
         at javafx.scene.Scene$DnDGesture.dragDetectedProcessed(Scene.java:2648)
         at javafx.scene.Scene$DnDGesture.process(Scene.java:2709)
         at javafx.scene.Scene$DnDGesture.access$8700(Scene.java:2603)
         at javafx.scene.Scene$MouseHandler.process(Scene.java:3340)
         at javafx.scene.Scene$MouseHandler.process(Scene.java:3164)
         at javafx.scene.Scene$MouseHandler.access$1900(Scene.java:3119)
         at javafx.scene.Scene.impl_processMouseEvent(Scene.java:1559)
         at javafx.scene.Scene$ScenePeerListener.mouseEvent(Scene.java:2261)
         at com.sun.javafx.tk.quantum.GlassViewEventHandler.handleMouseEvent(GlassViewEventHandler.java:228)
         at com.sun.glass.ui.View.handleMouseEvent(View.java:528)
         at com.sun.glass.ui.View.notifyMouse(View.java:922)If i remove in my method everything that deals with the ClipboardContent I don't get the exception (but of course nothing is dragged). I also tried provided DataFormats, as well as trying to only pass a String as value for the ClipboardContent, but I still get the exception.
    Does anybody have an idea? Thanks!
    PS: I'm running on OS X 10.7.5, with JDK7u10 (with JavaFX 2.2.4).

    That does not exist - the workaround (maybe permanent solution - who knows) is
    File menu ==> export
    And BTW if you are not backingup all the time you are 100% guarenteed to lose all of your files and photos sooner or later
    LN

  • I got this exception (org.apache.jasper.JasperException)

    hi all
    i got this exception (org.apache.jasper.JasperException)
    verything works fine if I modify my .jsp and reload that
    jsp in the browser (tomcat). The changes are reflected fine.
    ***BUT*** when I compile a .java (beans) file that is used in the
    webapp then the tomcat starts giving following error message
    in the browser and the exception stack trace in the tomcat
    console. (I am using ant to compile and deploy my webapp.)
    Auto load is on in my tomcat server.xml for this context. I am
    using the beans in my .jsp.
    If I compile all the .java files together again then the
    webapp starts working. I have not seen this behavious
    with earlier Tomcat/J2SDK versions.
    i am using version(jakarta-tomcat-4.1.24)
    anybody help me.
    my email id [email protected].
    The server encountered an internal error () that prevented it from fulfilling this request.
    org.apache.jasper.JasperException: mxi_web.Services
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:254)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:295)
    at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:241)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:247)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:193)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:256)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardContext.invoke(StandardContext.java:2415)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:180)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.valves.ErrorDispatcherValve.invoke(ErrorDispatcherValve.java:171)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:172)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:641)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:174)
    at org.apache.catalina.core.StandardPipeline$StandardPipelineValveContext.invokeNext(StandardPipeline.java:643)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:480)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:995)
    at org.apache.coyote.tomcat4.CoyoteAdapter.service(CoyoteAdapter.java:223)
    at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:594)
    at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:392)
    at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:565)
    at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:619)
    at java.lang.Thread.run(Thread.java:534)
    root cause
    javax.servlet.ServletException: mxi_web.Services
    at org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:536)
    at org.apache.jsp.createcustomer_jsp._jspService(createcustomer_jsp.java:236)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:137)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.ja

    org.apache.jasper.JasperException: Unable to compile class for JSPNote: sun.tools.javac.Main has been deprecated.
    i also face this error!! anyone know how to solve this error ???
    everything works fine earlier on, but after i created a new folder and put all the jsp, beans into that new folder, then this error comes out!!!
    thanks for any help!!

  • Exception from HRESULT: 0x80131904 and Violation of PRIMARY KEY constraint 'AllUserDataJunctions_PK' on item.update

    HI,
    We have done following changes to Production environment.
    1. Migrated Application from 2007 to 2010
    2. Done User Domain Migration user MoveSP-User commmand
    3. Then we Run following command to block users from another domain.
    Set-SPSite -Identity 'SiteName' -UserAccountDirectoryPath "DC=xxx,DC=xxx,DC=xxx"
    After All above changes, application were working fine without a single bug. all Operation are working fine. Then suddenly from 2 days below error coming in ULS log.
    This error is thrown on item.update();
    Unknown SPRequest error occurred. More information: 0x80131904
    System.Data.SqlClient.SqlException: Violation of PRIMARY KEY constraint 'AllUserDataJunctions_PK'. Cannot insert duplicate key in object 'dbo.AllUserDataJunctions'.  The statement has been terminated.     at System.Data.SqlClient.SqlConnection.OnError(SqlException
    exception, Boolean breakConnection)     at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)     at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler,
    SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)     at System.Data.SqlClient.SqlDataReader.ConsumeMetaData()     at System.Data.SqlClient.SqlDataReader.get_MetaData()    
    at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBeh...
    avior, String resetOptionsString)     at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, Boolean async)     at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior
    cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)     at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String
    method)     at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)     at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior)     at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand
    command, CommandBehavior behavior, SqlQueryData ...
    ...monitoringData, Boolean retryForDeadLock)
    at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock)     at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock)     at Microsoft.SharePoint.Library.SPRequestInternalClass.AddOrUpdateItem(String
    bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, 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.Library.SPRequest.AddOrUpdateItem(String bstrUrl, String bstrListName, Boolean bAdd, Boolean bSystemUpdate, Boolean bPreserveItemVersion, 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,...
    SqlError: 'Violation of PRIMARY KEY constraint 'AllUserDataJunctions_PK'. Cannot insert duplicate key in object 'dbo.AllUserDataJunctions'.'    Source: '.Net SqlClient Data Provider' Number: 2627 State: 1 Class: 14 Procedure: 'proc_CreateItemJunctionsVersion'
    LineNumber: 9 Server: 'xxxxxxxxx\xxxxx' a035fb89-0a86-4817-b531-f20a537a002a
    SqlError: 'The statement has been terminated.'    Source: '.Net SqlClient Data Provider' Number: 3621 State: 0 Class: 0 Procedure: 'proc_CreateItemJunctionsVersion' LineNumber: 9 Server: 'xxxxxxxx\xxxxxxx' a035fb89-0a86-4817-b531-f20a537a002a
    Please help!!!
    I am unable to find any solution.
    Regards,
    Yogesh Ghare
    EDIT - Just adding some extra points that come from observation .
    1. This Error comes when following scenario is true
    First Attempt: User udated item in List "Issue Tracking" from Datasheet view
    Second Attempt: User udate the same item in list from "Sharepoint UI or Custom aspx form".. After clickin on Save button this erro comes up.
    Third Attempt: If after error user updates the same itme from UI the the data get saved
    OR
    Third Attempt : If after error user updates the same itme from datasheet view User get Unresolve data confilct again and again.
    Above Scenario is true only for Existing items in lists. For Newly added Items this is not producible(erroe not generated).One of the ovbservation is that All the items which are having issue are migrated from 2007 to 2010

    Hello,
    I have the exact same issue. SharePoint List which is causing this issue has got around 140 fields (All kinds of field types).
    Do this happen only if there is a migration from one version to other?
    This List is created using custom code - List Instance and not using Out of box SharePoint.
    Please let me know if recreating the list (using OOB) or any other fix will resolve this issue.
    Below is the ULS log:
    Unknown SPRequest error occurred. More information: 0x80131904
    System.Runtime.InteropServices.COMException: Exception from HRESULT: 0x80131904  
     at Microsoft.SharePoint.Library.SPRequestInternalClass.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.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)
    System.Data.SqlClient.SqlException: Violation of PRIMARY KEY constraint 'AllUserDataJunctions_PK'. Cannot insert duplicate key in object 'dbo.AllUserDataJunctions'.
    The duplicate key value is (21b5edcc-6e2d-421f-ad08-5a9e275add8a, 0x, 0, 10724c04-dcbb-4f02-af40-e19a694d015c, a558cc06-6f8a-408d-a1f6-f4b712d68881, 4096, 1, 4e405c39-8677-4ba0-8901-2ca4fa273461, 0).  The statement has been terminated.      at
    System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)      at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)      at System.Data.SqlClient.TdsParser.Run(RunBehavior
    runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)      at System.Data.SqlClient.SqlDataReader.ConsumeMetaData()      at System.Data.SqlClient.SqlDataReader.get_MetaData()
         at System.Data.SqlClient.SqlCommand.FinishExecuteReader(SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString)      at System.Data.SqlClient.SqlCommand.RunExecuteReaderTds(CommandBehavior cmdBehavior, RunBehavior
    runBehavior, Boolean returnStream, Boolean async)      at System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method, DbAsyncResult result)      at
    System.Data.SqlClient.SqlCommand.RunExecuteReader(CommandBehavior cmdBehavior, RunBehavior runBehavior, Boolean returnStream, String method)      at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior, String method)  
       at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior)      at Microsoft.SharePoint.Utilities.SqlSession.ExecuteReader(SqlCommand command, CommandBehavior behavior, SqlQueryData monitoringData, Boolean retryForDeadLock)
    at Microsoft.SharePoint.SPSqlClient.ExecuteQueryInternal(Boolean retryfordeadlock)    
     at Microsoft.SharePoint.SPSqlClient.ExecuteQuery(Boolean retryfordeadlock)    
     at Microsoft.SharePoint.Library.SPRequestInternalClass.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.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 BV.PEL.BL.Common.PublishProject(SPListItem sourceItem, Boolean isFromPublish, SPWeb web, SPSite systemSite, SPFieldUserValueCollection adminGroup, String strComments)    
     at BV.PEL.Portal.WebParts.OneBVProjectInformation.OneBVProjectInformationUserControl.buttonApprove_Click(Object sender, EventArgs e)    
     at System.Web.UI.WebControls.Button.OnClick(EventArgs e)    
     at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)    
     at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler sourceControl, String eventArgument)    
     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
     at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)    
     at System.Web.UI.Page.ProcessRequest()    
     at System.Web.UI.Page.ProcessRequest(HttpContext context)    
     at ASP.BLANKWEBPARTPAGE_ASPX_1653093133.ProcessRequest(HttpContext context)    
     at Microsoft.SharePoint.Publishing.TemplateRedirectionPage.ProcessRequest(HttpContext context)    
     at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()    
     at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)    
     at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)    
     at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb)    
     at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)    
     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)    
     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)    
     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)    
     at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr managedHttpContext, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)

  • Naming exception from the pcd... occurred in PI 7.1

    In PI 7.1 Iu2019ve got a process which gets invoked as SOAP service and synchronously calls a second SOAP service. The service returns the correct result and works, when called from the Web Services Navigator. When I call the Service on PI the Web Services Navigator only shows a NullPointerException (although the service gets invoked). The Message Monitoring of the Runtime Workbench doesnu2019t show any Message at all.
    I looked at the Trace-Log and found the Message:
    Naming exception from the pcd when trying to access the principal ROLE.PCD_ROLE_PERSISTENCE.VvlvkEGjiW9zPFaxR/4pd2/bX5Q=
    Has anybody got an idea what could cause this behavior or how one can solve this problem? As far as I could find out PCD_ROLE_PERSISTENCE is part of the portal which is not meant to be Part of PI.
    Regards,
    Tarik

    Hello Osman,
    We are also facing same ROLE.PCD_ROLE_PERSISTENCE.VvlvkEGjiW9zPFaxR/4pd2/bX5Q= error.
    Also when I send a message via SAOPUI I get error:
    com.sap.engine.interfaces.messaging.api.exception.MessagingException: com.sap.engine.interfaces.messaging.api.exception.ConfigException: Some of the IS access information is not available. SLDAccess property may be set to true, but SLD is not available.
    How did you exactly solve your issue?
    System: PI 7.1
    SP: 71006

  • FIM CM Logon failure: unknown user name or bad password. (Exception from HRESULT: 0x8007052E)

    Hi,
    I am trying to install FIM Certificate management 2010. I am not able to access the CM Web portal. Whenever I login it shows the following error
    Logon failure: unknown user name or bad password. (Exception from HRESULT: 0x8007052E)
    This is the CM Log
    1) Exception Information
    Exception Type: System.Runtime.InteropServices.COMException
    ErrorCode: -2147023570
    Message: Logon failure: unknown user name or bad password. (Exception from HRESULT: 0x8007052E)
    Data: System.Collections.ListDictionaryInternal
    TargetSite: Void ThrowExceptionForHRInternal(Int32, IntPtr)
    HelpLink: NULL
    Source: mscorlib
    StackTrace Information
       at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
       at Microsoft.Clm.Security.Principal.LoggedOnUser.Logon(String userName, String password)
    "2014-04-16 02:48:50.98 -07" "Microsoft.Clm.Security.Principal.RevertToSelfContext"
    "Microsoft.Clm.Security.Principal.RevertToSelfContext RevertIfImpersonating()"
    "PCEDOMAIN\Administrator" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Reverting to the process identity
    "2014-04-16 02:48:50.99 -07" "Microsoft.Clm.BusinessLayer.UserIdentity"
    "Boolean get_IsAuthenticated()"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Checking if PCEDOMAIN\Administrator is authenticated
    "2014-04-16 02:48:50.99 -07" "Microsoft.Clm.BusinessLayer.UserIdentity"
    "Boolean get_IsAuthenticated()"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    True (is authenticated) PCEDOMAIN\Administrator
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.Web.GlobalASAX"
    "Boolean DoesResxFileExist(System.Globalization.CultureInfo)"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    DoesResxFileExist
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.Web.GlobalASAX"
    "Boolean DoesResxFileExist(System.Globalization.CultureInfo)"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Resx exists [C:\Program Files\Microsoft Forefront Identity Manager\2010\Certificate Management\web\App_GlobalResources\WebResources.en-US.resx] for culture: en-US? False
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.Web.GlobalASAX"
    "Boolean DoesResxFileExist(System.Globalization.CultureInfo)"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    DoesResxFileExist
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.Web.GlobalASAX"
    "Boolean DoesResxFileExist(System.Globalization.CultureInfo)"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Resx exists [C:\Program Files\Microsoft Forefront Identity Manager\2010\Certificate Management\web\App_GlobalResources\WebResources.en.resx] for culture: en? True
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.Web.GlobalASAX"
    "Void Application_BeginRequest(System.Object, System.EventArgs)"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Web UiCulture: en-US. Web Culture: en-US
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.Web.Authentication.CustomAuthenticationConfiguration"
    "Microsoft.Clm.Web.Authentication.FilteredApplication MapPathToApplication(System.String)"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Mapping path: [error.aspx]
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.Web.Authentication.CustomAuthenticationConfiguration"
    "Microsoft.Clm.Web.Authentication.FilteredApplication MapPathToApplication(System.String)"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Path: [error.aspx] was not found in the configuration section.
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.Web.Authentication.CustomAuthenticationModule"
    "Void OnAuthenticate(System.Object, System.EventArgs)"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Path: [error.aspx], filtered: False
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.Web.Authentication.CustomAuthenticationModule"
    "Void OnAuthenticate(System.Object, System.EventArgs)"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Builtin Principal: System.Security.Principal.WindowsPrincipal, Identity: System.Security.Principal.WindowsIdentity
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.Web.Authentication.CustomAuthenticationModule"
    "Void OnAuthenticate(System.Object, System.EventArgs)"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Builtin Identity Details:
    Name: PCEDOMAIN\Administrator
     IsAuthenticated: True
     AuthenticationType: Negotiate
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.BusinessLayer.UserIdentity"
    "Boolean get_IsAuthenticated()"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Checking if PCEDOMAIN\Administrator is authenticated
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.BusinessLayer.UserIdentity"
    "Boolean get_IsAuthenticated()"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    True (is authenticated) PCEDOMAIN\Administrator
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.Web.Authentication.CustomAuthenticationModule"
    "Void OnAuthenticate(System.Object, System.EventArgs)"
    "" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Custom Identity Details:
    Name: PCEDOMAIN\Administrator
     IsAuthenticated: True
     AuthenticationType: Negotiate
    Ticket: 
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.BusinessLayer.UserIdentity"
    "Boolean get_IsAuthenticated()"
    "PCEDOMAIN\Administrator" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Checking if PCEDOMAIN\Administrator is authenticated
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.BusinessLayer.UserIdentity"
    "Boolean get_IsAuthenticated()"
    "PCEDOMAIN\Administrator" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    True (is authenticated) PCEDOMAIN\Administrator
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.BusinessLayer.UserIdentity"
    "Boolean get_IsAuthenticated()"
    "PCEDOMAIN\Administrator" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Checking if PCEDOMAIN\Administrator is authenticated
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.BusinessLayer.UserIdentity"
    "Boolean get_IsAuthenticated()"
    "PCEDOMAIN\Administrator" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    True (is authenticated) PCEDOMAIN\Administrator
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.BusinessLayer.UserIdentity"
    "Boolean get_IsAuthenticated()"
    "PCEDOMAIN\Administrator" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Checking if PCEDOMAIN\Administrator is authenticated
    "2014-04-16 02:48:51.01 -07" "Microsoft.Clm.BusinessLayer.UserIdentity"
    "Boolean get_IsAuthenticated()"
    "PCEDOMAIN\Administrator" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    True (is authenticated) PCEDOMAIN\Administrator
    "2014-04-16 02:48:51.03 -07" "Microsoft.Clm.BusinessLayer.UserIdentity"
    "Boolean get_IsAuthenticated()"
    "PCEDOMAIN\Administrator" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    Checking if PCEDOMAIN\Administrator is authenticated
    "2014-04-16 02:48:51.03 -07" "Microsoft.Clm.BusinessLayer.UserIdentity"
    "Boolean get_IsAuthenticated()"
    "PCEDOMAIN\Administrator" "PCEDOMAIN\clmWebPool"
    0x000014F8 0x00000004
    True (is authenticated) PCEDOMAIN\Administrator
    Thanks

    On Wed, 16 Apr 2014 10:15:55 +0000, Priyesh92 wrote:
    I am trying to install FIM Certificate management 2010. I am not able to access the CM Web portal. Whenever I login it shows the following error
    Logon failure: unknown user name or bad password. (Exception from HRESULT: 0x8007052E)
    1. Make sure that you've got all of the required Kerberos delegation
    settings and SPNs setup correctly.
    2. Make sure that you've added the portal to Trusted Sites in IE and that
    you configure the security settings to for Trusted Sites to log on
    automatically.
    3. Make sure that you have the password for the CLMWebPool account set
    correctly.
    Paul Adare - FIM CM MVP
    But these are not inherent flaws in [NT]. They are the result of deliberate
    and well-thought-out efforts. -- M$ Spokesweenie

  • Unable to load DLL 'sqlceme35.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)

    I'm new to ADO.NET and need help with this error.
    Currently running Vista Home Premium 64 and Visual Studio 2008 Trial.
    1. Create Win form app.
    2. Add new data source...
    3. New connection - SQL Server Compact 3.5 - Northwind.sdf
    4. Highlight Products and Suppliers.
    5. Drag both onto Win form
    6. Run with debug
    7. Error message "Unable to load DLL 'sqlceme35.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E)"
    some blogs advice change dir in SQL Server Compact 3.5 in regedit but regedit doesn't even have SQL Server Compact 3.5; only SQL Server\SQLExpress.
    reinstall SQL Server Compact 3.5 and problem still exists.
    anyone knows how to fix this problem?

     ErikEJ wrote:
    Have you set your solution target to "Any CPU" ?? If so, set to "x86", as SQL Compact only runs in WoW mode on x64. Or use corflags.exe /32BIT+ against your project output (.exe file).
     ErikEJ wrote:
    Look at this blog post for a walk-through: http://erikej.blogspot.com/2008/01/x64-and-sql-compact.html
    Hello everyone,
    I have the same problem as mentioned above "Unable to load DLL 'elev.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) ", when trying to load the dll file into a window application.  I developed a window application in VS2005 and want to import a dll file from another program into my project and use it.  But when I try to call one of the function in the dll file, I got the error message "Unable to load dll 'elev.dll".  I try all options that say it works to solve this problem, but somehow it doesn't work for me. I put the "elev.dll" file in the bin folder and use P/Invoke to import the dll file into my project.  Can anyone help me out with this?  thanks and really appreciated!
     Here is how I import the dll:
    [DllImport(@"D:\elev.dll")]
    //[DllImport("emap.dll", SetLastError = true)]
    private static extern void EMA_Init();
    and in the code,  I call the function above but failed to load the dll file
    EMA_Init();

  • Exception from crimson in Tomcat

    Hi,
    I am facing a very strange senario while using Tomcat3.2.4. When I ran a WebApp under the Tomcat, I got an exception, please see below:
    With the following stack trace: java.lang.NullPointerException at org.apache.crimson.tree.TextNode.cloneNode(TextNode.java:222) at org.apache.crimson.tree.ElementNode2.createCopyForImportNode(ElementNode2.java:167) at org.apache.crimson.tree.ElementNode2.createCopyForImportNode(ElementNode2.java:164) at org.apache.crimson.tree.XmlDocument.importNode(XmlDocument.java:1260) at idea.xmldocument.flatfile.XMLDataCache._$31523(XMLDataCache.java:492) at ...
    The strange thing is that I don't have any org.apache.crimson package in classpath, even in my whole computer.
    1. Before I started tomcat my classpath is empty.
    2. I only have "ant.jar", "jasper.jar", "servlet.jar", "webserver.jar" in the lib folder of my Tomcat.
    3. I only have xalan_2.0.1.jar and xerces_1.3.0.jar in the WEB-INF/lib folder of my web app.
    And the interesting thing is that when I moved xalan_2.0.1.jar and xerces_1.3.0 from WEB-INF/lib folder of my web app to lib folder of tomcat, the exception is not present any more.
    It is so weird.
    Does anyone have some idea? I would very appriecate.
    Thanks in adavance!
    Louis
    2002/10/17

    if you use JDK 1.4, then you have Crimson embedded into it as the default parser of JAXP.
    apparently you want to use Xerces instead of Crimson, so maybe you are creating nodes with JAXP/Crimson then try to use them with Xerces (or the contrary)...

  • Error: Got minus one from a read call, sporadic disconnections...

    Hello,
    I am running JSP apps on Tomcat hitting against Oracle 10g DB. They have been working great. However, recently I am experience some bazzare events. Sporadically, webpages are only displaying partial result or even nothing from DB calls. When I checked the Tomcat log, I saw a bunch of the following error messages.
    java.sql.SQLException: Io exception: Got minus one from a read call
    I've checked network connection (by ping and tnsping) between the webserver and the DB server, and everything looked good.
    Someone said running TOAD on the client machine can cause such sporadic disconnections. Indeed turning off TOAD did reduce the number of errors. However, when I tried to load up a same page from two different web brower instances, I still get the partial results on both pages.
    Does anyone know what is going on? It looks like my app is not waiting enough to get the entire data back. Is there anyway I can do that?
    Thank you very much for your help.
    Frustrated but not gave up yet,
    Yosep

    Hi everyone,
    I got a problem with my jsp code which is giving class not found exception when i try to load the oracle driver for oracle 10g. The sample code is given below...
    <html>
    <body background="bgnd.gif" bgcolor=#FFFFFF>
    <center><h1>Student Registration Form</h1></center>
    <br>
    <form>
    <%@ page import = "java.sql.Connection, java.io.*,java.util.*,oracle.jdbc.*,oracle.sql.*"%>
    <%
    try{
    Class cls = Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    }catch(Exception e){ System.out.println("Driver not loaded");}
    String uname = "system";
    String password = "searching";
    Connection con = DriverManager.getConnection("jdbc:odbc:"+sro,uname,password);
    %>
    <b>First Name: </b><input type=text name="fName">
    <b>Middle Name: </b><input type=text name="mName">
    <b>Last Name: </b><input type=text name="lName">
    <br>
    <b>Student ID </b><input type=text name="studentId">
    <br>
    <b>Date of Birth </b><input type=text name="dOb">
    <br>
    <b>Permanant Address </b><input type=text name="pAddress">
    <br>
    <b>Local Address </b><input type=text name="lAddress">
    <br>
    <b>Level of Degree </b><input type=text name="lOfdegree">
    <br>
    <b>Department </b><input type=text name="department">
    <br>
    <b></b><input type=button name="submit">
    <% String myname = request.getParameter("name");
    %>
    <br>
    Entered name is <%= myname %>
    </body>
    </html>
    Please help me out. Its really urgent...............

Maybe you are looking for

  • Mini-DVI to HDMI Issues

    I have an early 2008 Macbook and have been using a Mini-DVI to HDMI adapter and HDMI cable to connect to my TV.  It was working great until I upgraded to OS X Lion.  Now the video is laggy/glitchy on the TV and the computer when the cable is plugged

  • Problems using a printer shared by a Windows XP PC

    I'm having problems seeing my shared printers on my mac mini. The shared printers are hooked up to a Windows XP PC. There is another PC on the network that is running Windows 7. All 3 machines can access one another with respect to files. I have the

  • 3rd Gen Nano:  Play Button???

    I bought a 3rd generation Nano about year ago. In excellent condition and has been in a hard case since I bought it. The "play" button has not been responding. Sometimes, if you press really hard or in the right place, it will work. I have an appoint

  • Radius Authentication for FWSM

    Hello, this is my first posting so I apologize if I accidentally disobeyed any posting rules. Thank you to any and all that respond. My problem is setting up Authentication to my FWSM through my Radius server. My Radius server is set up by the ASDM,

  • Media Issues in PDF?

    Hello everyone, I have been looking all evening through endless tutorials about embedding audio in indesign, but haven't found any that apply to my specific needs so I figured I would petition the forum for solutions. I am creating a press kit for a