Retrying Email Service fails for the stalled Operations:

Hi,
Some of the send email operations randomly fails due to invalid recipients address or some connectivity issues with SMTP server. Once we do the corrections to the service, and retry those stalled operations, its erring out with Java Nullpointer exception.
Stalled operations work fine for other operations except for email service. Is this a Engineering issue with the Adobe design or do we need to change any configuration settings to make that work?
Thanks for your time.
Regards,
Krishna

Hi Aashish,
  Thanks for the response. Yes, it works good for new operations. It fails with Null pointer exception if I retry the stalled ones after corrections.
This was the initial error -
Failed to connect to email server: adobemailer@xxxxx. Reason: Could not connect to SMTP host: xxxxx, port: 25, response: 421: com.adobe.idp.dsc.email.ConnectionFailedException: Failed to connect to email server: adobemailer@xxxxx. Reason: Could not connect to SMTP host: xxxxx, port: 25, response: 421
We corrected the problems with SMTP server and when we retried this stalled operation, this is what we see -
( Email has an attachment, I 'm thinking adobe is not catching up the attachments when I retry it again)
com.adobe.idp.DocumentError: com.adobe.idp.DocumentError: java.lang.IllegalStateException: No transaction
          at com.adobe.idp.Document.getDataBuffer(Document.java:2134)
          at com.adobe.idp.dsc.email.EmailServiceImpl.assembleAttachments(EmailServiceImpl.java:533)
          at com.adobe.idp.dsc.email.EmailServiceImpl.setMessageBody(EmailServiceImpl.java:496)
          at com.adobe.idp.dsc.email.EmailServiceImpl.sendWithMapOfAttachments(EmailServiceImpl.java:4 26)
          at sun.reflect.GeneratedMethodAccessor7169.invoke(Unknown Source)
          at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
Regards,
Krishna

Similar Messages

  • Aleatory One factory fails for the operation "encode"-JPEG

    I've a very strange problem with JAI.write using JPEG, but is happening aleatory. Some times it works, some times I get the exception and some other times don't. What I've seen is that when I got first this error, then all the rest of the images throws it. I mean, I'm working OK and then I got the exception, from there, all the images, no matter that they were not trowing exceptions before, now they do, so I don't know what is happening. I'll post some code snippets and the full stack trace of the exception. Hope you can help me:
    First, I have a class that is a JSP-Tag:
    RenderedOp outputImage = JAI.create("fileload", imgFile.getAbsolutePath());
    int widthSize = outputImage.getWidth();
    int heightSize = outputImage.getHeight();
    try{
        outputImage.dispose();                         
    }catch(Exception e){}
    outputImage = null;That's the first thing, now, the second, this is a Servlet that writes the image to the browser (GetImageServlet its name, which appears in the stack trace):
    FileSeekableStream fss = new FileSeekableStream(file);
    RenderedOp outputImage = JAI.create("stream", fss);
    int widthSize = outputImage.getWidth();
    int heightSize = outputImage.getHeight();
    if ((outputImage.getWidth() > 0) && (outputImage.getHeight() > 0)) {
                        if ((isThumbnail) && ((outputImage.getWidth() > 60) || (outputImage.getHeight() > 60))) {
                             outputImage = ImageManagerJAI.thumbnail(outputImage, 60);
                        } else if (outputRotate != 0) {
                             outputImage = ImageManagerJAI.rotate(outputImage, outputRotate);
                        OutputStream os = resp.getOutputStream();
    resp.setContentType("image/jpeg");
         ImageManagerJAI.writeResult(os, outputImage, "JPEG");
                        outputImage.dispose();
                        os.flush();
                        os.close();
    outputImage = null;
    imgFile = null;The code of ImageManagerJAI.writeResult, which is a method I use above:
    public static void writeResult(OutputStream os, RenderedOp image, String type) throws IOException {
              if ("GIF".equals(type)) {
                   GifEncoder encoder = new GifEncoder(image.getAsBufferedImage(), os);
                   encoder.encode();
              } else {
                   JAI.create("encode", image, os, type, null);
         }And the full exception trace is:
    Error: One factory fails for the operation "encode"
    Occurs in: javax.media.jai.ThreadSafeOperationRegistry
    java.lang.reflect.InvocationTargetException
         at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at javax.media.jai.FactoryCache.invoke(FactoryCache.java:122)
         at javax.media.jai.OperationRegistry.invokeFactory(OperationRegistry.java:1674)
         at javax.media.jai.ThreadSafeOperationRegistry.invokeFactory(ThreadSafeOperationRegistry.java:473)
         at javax.media.jai.registry.RIFRegistry.create(RIFRegistry.java:332)
         at javax.media.jai.RenderedOp.createInstance(RenderedOp.java:819)
         at javax.media.jai.RenderedOp.createRendering(RenderedOp.java:867)
         at javax.media.jai.RenderedOp.getRendering(RenderedOp.java:888)
         at javax.media.jai.JAI.createNS(JAI.java:1099)
         at javax.media.jai.JAI.create(JAI.java:973)
         at javax.media.jai.JAI.create(JAI.java:1668)
         at com.syc.image.ImageManagerJAI.writeResult(ImageManagerJAI.java:27)
         at GetImageServlet.doGet(GetImageServlet.java:214)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: com.sun.media.jai.codecimpl.util.ImagingException
         at com.sun.media.jai.codecimpl.ImagingListenerProxy.errorOccurred(ImagingListenerProxy.java:63)
         at com.sun.media.jai.codecimpl.JPEGImageEncoder.encode(JPEGImageEncoder.java:280)
         at com.sun.media.jai.opimage.EncodeRIF.create(EncodeRIF.java:70)
         ... 31 more
    Caused by: com.sun.media.jai.codecimpl.util.ImagingException: IOException occurs when encode the image.
         ... 33 more
    Caused by: java.io.IOException: reading encoded JPEG Stream
         at sun.awt.image.codec.JPEGImageEncoderImpl.writeJPEGStream(Native Method)
         at sun.awt.image.codec.JPEGImageEncoderImpl.encode(JPEGImageEncoderImpl.java:472)
         at sun.awt.image.codec.JPEGImageEncoderImpl.encode(JPEGImageEncoderImpl.java:228)
         at com.sun.media.jai.codecimpl.JPEGImageEncoder.encode(JPEGImageEncoder.java:277)
         ... 32 more
    javax.media.jai.util.ImagingException: All factories fail for the operation "encode"
         at javax.media.jai.OperationRegistry.invokeFactory(OperationRegistry.java:1687)
         at javax.media.jai.ThreadSafeOperationRegistry.invokeFactory(ThreadSafeOperationRegistry.java:473)
         at javax.media.jai.registry.RIFRegistry.create(RIFRegistry.java:332)
         at javax.media.jai.RenderedOp.createInstance(RenderedOp.java:819)
         at javax.media.jai.RenderedOp.createRendering(RenderedOp.java:867)
         at javax.media.jai.RenderedOp.getRendering(RenderedOp.java:888)
         at javax.media.jai.JAI.createNS(JAI.java:1099)
         at javax.media.jai.JAI.create(JAI.java:973)
         at javax.media.jai.JAI.create(JAI.java:1668)
         at com.syc.image.ImageManagerJAI.writeResult(ImageManagerJAI.java:27)
         at GetImageServlet.doGet(GetImageServlet.java:214)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at javax.media.jai.FactoryCache.invoke(FactoryCache.java:122)
         at javax.media.jai.OperationRegistry.invokeFactory(OperationRegistry.java:1674)
         ... 26 more
    Caused by: com.sun.media.jai.codecimpl.util.ImagingException
         at com.sun.media.jai.codecimpl.ImagingListenerProxy.errorOccurred(ImagingListenerProxy.java:63)
         at com.sun.media.jai.codecimpl.JPEGImageEncoder.encode(JPEGImageEncoder.java:280)
         at com.sun.media.jai.opimage.EncodeRIF.create(EncodeRIF.java:70)
         ... 31 more
    Caused by: com.sun.media.jai.codecimpl.util.ImagingException: IOException occurs when encode the image.
         ... 33 more
    Caused by: java.io.IOException: reading encoded JPEG Stream
         at sun.awt.image.codec.JPEGImageEncoderImpl.writeJPEGStream(Native Method)
         at sun.awt.image.codec.JPEGImageEncoderImpl.encode(JPEGImageEncoderImpl.java:472)
         at sun.awt.image.codec.JPEGImageEncoderImpl.encode(JPEGImageEncoderImpl.java:228)
         at com.sun.media.jai.codecimpl.JPEGImageEncoder.encode(JPEGImageEncoder.java:277)
         ... 32 more
    Caused by:
    java.lang.reflect.InvocationTargetException
         at sun.reflect.GeneratedMethodAccessor45.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at javax.media.jai.FactoryCache.invoke(FactoryCache.java:122)
         at javax.media.jai.OperationRegistry.invokeFactory(OperationRegistry.java:1674)
         at javax.media.jai.ThreadSafeOperationRegistry.invokeFactory(ThreadSafeOperationRegistry.java:473)
         at javax.media.jai.registry.RIFRegistry.create(RIFRegistry.java:332)
         at javax.media.jai.RenderedOp.createInstance(RenderedOp.java:819)
         at javax.media.jai.RenderedOp.createRendering(RenderedOp.java:867)
         at javax.media.jai.RenderedOp.getRendering(RenderedOp.java:888)
         at javax.media.jai.JAI.createNS(JAI.java:1099)
         at javax.media.jai.JAI.create(JAI.java:973)
         at javax.media.jai.JAI.create(JAI.java:1668)
         at com.syc.image.ImageManagerJAI.writeResult(ImageManagerJAI.java:27)
         at GetImageServlet.doGet(GetImageServlet.java:214)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:690)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:870)
         at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:665)
         at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:528)
         at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:81)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:685)
         at java.lang.Thread.run(Thread.java:619)
    Caused by: com.sun.media.jai.codecimpl.util.ImagingException
         at com.sun.media.jai.codecimpl.ImagingListenerProxy.errorOccurred(ImagingListenerProxy.java:63)
         at com.sun.media.jai.codecimpl.JPEGImageEncoder.encode(JPEGImageEncoder.java:280)
         at com.sun.media.jai.opimage.EncodeRIF.create(EncodeRIF.java:70)
         ... 31 more
    Caused by: com.sun.media.jai.codecimpl.util.ImagingException: IOException occurs when encode the image.
         ... 33 more
    Caused by: java.io.IOException: reading encoded JPEG Stream
         at sun.awt.image.codec.JPEGImageEncoderImpl.writeJPEGStream(Native Method)
         at sun.awt.image.codec.JPEGImageEncoderImpl.encode(JPEGImageEncoderImpl.java:472)
         at sun.awt.image.codec.JPEGImageEncoderImpl.encode(JPEGImageEncoderImpl.java:228)
         at com.sun.media.jai.codecimpl.JPEGImageEncoder.encode(JPEGImageEncoder.java:277)
         ... 32 moreI'm using JDK 1.6, Tomcat 5.5, Windows XP, and JAI 1.1.2_01 (the jars are in the WEB-INF/lib of the project AND in the jdk 6/jre/lib/ext, while the dlls are only on jdk 6/jre/bin)
    Please help, I don't know what to do, I've weeks with this problem. Dukes available pleaseeee!

    Hi
    you can check if you get in the error logs an message like 'Could not load mediaLib accelerator wrapper classes. Continuing in pure Java mode.' may be the problem of JAI native accelerator

  • Error: One factory fails for the operation "encode"

    Dear all,
    This is my first attempt to use JAI. I am getting the following error message. Any ideas why this could happen?
    Thanks
    Error: One factory fails for the operation "encode"
    Occurs in: javax.media.jai.ThreadSafeOperationRegistry
    java.lang.reflect.InvocationTargetException
         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:494)
         at javax.media.jai.FactoryCache.invoke(FactoryCache.java:122)
         at javax.media.jai.OperationRegistry.invokeFactory(OperationRegistry.java:1674)
         at javax.media.jai.ThreadSafeOperationRegistry.invokeFactory(ThreadSafeOperationRegistry.java:473)
         at javax.media.jai.registry.RIFRegistry.create(RIFRegistry.java:332)
         at com.sun.media.jai.opimage.FileStoreRIF.create(FileStoreRIF.java:138)
         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:494)
         at javax.media.jai.FactoryCache.invoke(FactoryCache.java:122)
         at javax.media.jai.OperationRegistry.invokeFactory(OperationRegistry.java:1674)
         at javax.media.jai.ThreadSafeOperationRegistry.invokeFactory(ThreadSafeOperationRegistry.java:473)
         at javax.media.jai.registry.RIFRegistry.create(RIFRegistry.java:332)
         at javax.media.jai.RenderedOp.createInstance(RenderedOp.java:819)
         at javax.media.jai.RenderedOp.createRendering(RenderedOp.java:867)
         at javax.media.jai.RenderedOp.getRendering(RenderedOp.java:888)
         at javax.media.jai.JAI.createNS(JAI.java:1099)
         at javax.media.jai.JAI.create(JAI.java:973)
         at javax.media.jai.JAI.create(JAI.java:1668)
         at RectifyIt.actionPerformed(RectifyIt.java:715)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1834)
         at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2152)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
         at java.awt.Component.processMouseEvent(Component.java:5463)
         at javax.swing.JComponent.processMouseEvent(JComponent.java:3052)
         at java.awt.Component.processEvent(Component.java:5228)
         at java.awt.Container.processEvent(Container.java:1961)
         at java.awt.Component.dispatchEventImpl(Component.java:3931)
         at java.awt.Container.dispatchEventImpl(Container.java:2019)
         at java.awt.Component.dispatchEvent(Component.java:3779)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4203)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3883)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3813)
         at java.awt.Container.dispatchEventImpl(Container.java:2005)
         at java.awt.Window.dispatchEventImpl(Window.java:1757)
         at java.awt.Component.dispatchEvent(Component.java:3779)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:234)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
    Caused by: java.lang.OutOfMemoryError: Java heap space
    Error: One factory fails for the operation "filestore"
    Occurs in: javax.media.jai.ThreadSafeOperationRegistry
    java.lang.reflect.InvocationTargetException

    I'm not an expert in JAI either, but I noticed you have an OutOfMemoryError at the bottom of your stacktrace. I'd focus on that.
    Are you dealing with a large image? Maybe try holding as little of the image in memory as possible. Do you have a small Java heap size? Maybe try increasing the footprint. etc...
    CowKing

  • When deleting emails i get the following error message at times ...The IMAP command "UID COPY" (to Deleted) failed for the mailbox "INBOX" with server error: Error 9. Server error. Please try again later..

    When deleting emails i get the following error message at times ...The IMAP command “UID COPY” (to Deleted) failed for the mailbox “INBOX” with server error: Error 9. Server error. Please try again later..

    Please complete or update your system profile so the users here can properly help you.
    Which email client are you using?

  • The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError) Log on failed. Ensure the user name and password are correct. (rsLogonFailed) Logon failure: unknown user name or bad

    The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError)
    Log on failed. Ensure the user name and password are correct. (rsLogonFailed)
    Logon failure: unknown user name or bad password 
    am using Windows integrated security,version of my sql server 2008R2
    I have go throgh the different articuls, they have given different answers,
    So any one give me the  exact soluction for this problem,
    Using service account then i will get the soluction or what?
    pls help me out it is urgent based.
    Regards
    Thanks!

    Hi Ychinnari,
    I have tested on my local environment and can reproduce the issue, as
    Vaishu00547 mentioned that the issue can be caused by the Execution Account you have configured in the Reporting Services Configuration Manager is not correct, Please update the Username and Password and restart the reporting services.
    Please also find more details information about when to use the execution account, if possible,please also not specify this account:
    This account is used under special circumstances when other sources of credentials are not available:
    When the report server connects to a data source that does not require credentials. Examples of data sources that might not require credentials include XML documents and some client-side database applications.
    When the report server connects to another server to retrieve external image files or other resources that are referenced in a report.
    Execution Account (SSRS Native Mode)
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    Vicky Liu
    TechNet Community Support

  • You have insufficient privileges for the current operation-Getting error running OAF page in R12

    I have a custom OAF page in R11 which is working fine.
    Same page is giving below errors in R12.
    Any suggestions how to resolve this issue..please advice.
    [167]:STATEMENT:[fnd.framework.webui.OAPageSecurity]:MAC validation status = false   
    [167]:STATEMENT:[fnd.framework.webui.OAPageSecurity]:Request parameters validation status = false   
    [167]:ERROR:[fnd.framework.webui.OAPageSecurity]:You cannot run a page which is not SelfSecured when the MAC fails.   
    [169]:ERROR:[fnd.common.Message.auto_log]:FNDFND_INSUFF_PRIVILEGES   
    [169]:ERROR:[fnd.framework.OAException]:You have insufficient privileges for the current operation. Please contact your System Administrator.   
    [170]:EVENT:[fnd.framework.webui.OAPageContextImpl]:OAF LOG: Event : Redirect Page, in: oracle.apps.fnd.framework.webui.OAPageContextImpl: OA.jsp?akRegionCode=FNDDIALOGPAGE&akRegionApplicationId=0&transactionid=817211813&oapc=10&oas=YyMjRI6buFwrYehD8b25iQ..&retainAM=Y&addBreadCrumb=S&OAMC=G   
    [170]:PROCEDURE:[fnd.profiles.Profiles]:getProfileOptionValue:  name=JTF_PF_MASTER_ENABLED; levelID=10001; levelValue=0; levelValueApplID=0   
    [170]:EVENT:[jtf.activity.CorePageObject]: PATBE START currentPageObject : PAT STATUS:false   
    [170]:EVENT:[jtf.activity.CorePageObject]: PATBE END currentPageObject : return factory.dummyProxyUser():   
    [322]:EXCEPTION:[fnd.framework.webui.OAPageBean]:java.lang.NullPointerException   
    Thanks in Advance
    Sridevi K

    Hi Sridevi,
    The custom page is a selfsecured page?
    ie, it will be accessed without login?
    What is the profile option fnd_debuging_level 's value set to.
    I Could see one your other thread
    Re: You have insufficient privileges for the current Operation error
    you mentioned that you did tried setting the profile options
    Framework Validation Level
    FND Function Validation LEvel
    FND Validation Level
    to none, still you are facing the issue,
    At what level you tried the profile options.
    Thanks,
    With regards,
    Kali.
    OSSi.    

  • The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError) Log on failed. Ensure the user name and password are correct. (rsLogonFailed) The user name or password is incorrect

    I am able to run the report fine in BIDS in the preview window, and it deployes fine.  When it goes to view the report in the browser, I get the following error.  There is no domain, I am using a standalone computer with SQL Server and SSRS on
    this one machine.
    Can anyone point to where I might configure the permission it is looking for?  thanks!  Steven
    The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError)
    Log on failed. Ensure the user name and password are correct. (rsLogonFailed)
    The user name or password is incorrect
    Steven DeSalvo

    Hi StevenDE2012,
    Based on the error message "The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError)", it seems that the Unattended Execution Account settings in Reporting Services
    Configuration is not correct.
    Reporting Services provides a special account that is used for unattended report processing and for sending connection requests across the network. Unattended report processing refers to any report execution process that is triggered by an event rather than
    a user request. The report server uses the unattended report processing account to log on to the computer that hosts the external data source. This account is necessary because the credentials of the Report Server service account are never used to connect
    to other computers. To configure the account, please refer to the following steps:
    Start the Reporting Services Configuration tool and connect to the report server instance you want to configure.
    On the Execution Account page, select Specify an execution account.
    Type the account and password, retype the password, and then click Apply.
    In addition, please verify you have access to the Report Server database by following steps:
    Go to SQL Server Reporting Services Configuration Manager, make sure the configuration is correct.
    Go to Database, Verify that you can connect to the database.
    Make sure you are granted public and RSExecRole roles.
    Reference:
    Configure the Unattended Execution Account
    Configure a Report Server Database Connection
    If the problem is unresolved, i would appreciate it if you could give us detailed error log, it will help us move more quickly toward a solution.
    Thanks,
    Wendy Fu

  • Logon failed for the unattended execution account.

    Hi while am running my report it is throwing the below error.I have verified entire config file,
    And i have recently uninstall and install the Reporting services after installing this i have faced this error ,shell i need to remove any old files from the configmgr or what why it is not working.The follwg error  i have get while am running the report
    The report server has encountered a configuration error. Logon failed for the unattended execution account. (rsServerConfigurationError)
    Log on failed. Ensure the user name and password are correct. (rsLogonFailed)
    Logon failure: unknown user name or bad password
    It will create any logfiles and entries  in the logfile Folder and There is no folder for rsConfig in the Root Folder,
    was it made any thing wrong or what give me the soluction
    Please give me the right soluction for this problem.

    Hi Ychinnari,
    According to your description, you comes across an error when you run a report.
    In your scenario, the issue could cause by the Execution Account you have configured in the Reporting Services Configuration Manager is not correct. Please go to Reporting Services Configuration Manager and connect to the report server instance, then open
    the Execution Account page, update the username and password for the execution account, finally, restart the Reporting Services for this instance.
    Since you mentioned you can’t find the log files, please check the server which has reporting server instance installed with this path: C:\Program Files\Microsoft SQL Server\<instance name>\Reporting Services\LogFiles to check the error log.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • "The User profile Service service failed at the logon. User profile cannot be loaded".

    Hi
    I'm having the below problem while i'm starting to logon to my system.  when i entered  the password, i'm getting the below msg as 
    "The User profile Service service failed at the logon. User profile cannot be loaded."
    i m trying since morning . 
    please help me in this issue .
    This question was solved.
    View Solution.

    Hi,
    You could try the following.
    Shut down the notebook.  Tap away at f8 as you start the notebook to enter Windows Recovery Console.  Use the arrow keys to select Safe Mode and hit enter.  If windows will load in this mode, from the Start Menu, click All Programs, click Accessories, click System Tools and launch System Restore.  Pick a restore point at least 48 hours before the log-on issue and then proceed with the restore process.  When complete, Windows will reboot as normal so check if you can now log in correctly.
    Another option if the above does not help is as follows.
    Shut down the notebook.  Tap away at f8 as you start the notebook to enter Windows Recovery Console.  Use the arrow keys to select 'Start Using Last Known Good Configuration' and hit enter.
    If neither of the options above are successful, try running through the procedure detailed in the guide on the following link.
    http://www.sevenforums.com/tutorials/186131-user-profile-service-failed-logon-user-profile-cannot-lo...
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Data retrieval failed for the subreport

    Hi All,
    I m getting this error whn i try to bind a sub report within a report,
    Data retrieval failed for the subreport, 'Subreport2', located at: E:\Anil\Sample.rdlc. Please check the log files for more information.
    Thanks,
    Anil Kumar Dhiman

    Hi Anil,
    This is a know issue which you can see in the link:https://connect.microsoft.com/SQLServer/feedback/details/648560/subreport-with-shared-dataset-throws-error
    This issue occurs only on Business Integrated Development Studio (BIDS) and use a shared dataset in subreport. And it is fixed in SQL Server Reporting Services 2012. So you can avoid this issue by changing the shared dataset to embedded dataset or deploy the
    shared dataset to Report Server and view report on Report Manage.
    If you have any questions, please feel free to ask.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Event code: 4005 Event message: Forms authentication failed for the request. Reason: The ticket supplied was invalid.

    When i was run my web application in everyday morning(after that issue was not reproduced), it was immediatly redirected to logout page
     while i perform any task after login.Session_end function was called unfortunately.
    Event log as follows 
    Event code: 4005 
    Event message: Forms authentication failed for the request. Reason: The ticket supplied was invalid. 
    Event time: 10/10/2014 10:36:33 AM 
    Event time (UTC): 10/10/2014 5:06:33 AM 
    Event ID: a268f3dd45da406dadd78773a858067f 
    Event sequence: 4 
    Event occurrence: 1 
    Event detail code: 50201 
    Application information: 
        Application domain: 463c736b-2-130573911817035712 
        Trust level: Full
    The output while session_end() was called is as follows
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\mscorlib\v4.0_4.0.0.0__b77a5c561934e089\mscorlib.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Program Files\Common Files\Microsoft Shared\DevServer\11.0\WebDev.WebServer40.exe'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\WebDev.WebHost40\v4.0_11.0.0.0__b03f5f7f11d50a3a\WebDev.WebHost40.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Windows.Forms\v4.0_4.0.0.0__b77a5c561934e089\System.Windows.Forms.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Drawing\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System\v4.0_4.0.0.0__b77a5c561934e089\System.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.Web\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Core\v4.0_4.0.0.0__b77a5c561934e089\System.Core.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Configuration\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Configuration.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Caching\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Runtime.Caching.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Build.Utilities.v4.0\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.v4.0.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll'
    A first chance exception of type 'System.ArgumentNullException' occurred in System.Core.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.CSharp.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.WorkflowServices\v4.0_4.0.0.0__31bf3856ad364e35\System.WorkflowServices.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.DataSetExtensions\v4.0_4.0.0.0__b77a5c561934e089\System.Data.DataSetExtensions.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ComponentModel.DataAnnotations\v4.0_4.0.0.0__31bf3856ad364e35\System.ComponentModel.DataAnnotations.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.DynamicData\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.DynamicData.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\d2ac696f\807ca1a9_01cccf01\AjaxControlToolkit.dll'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\0ff769a3\738a1ab9_47e4cf01\myapp.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\48c5da56\c38dd5b4_47e4cf01\WPCSCore.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\1c6f45a6\dd41c2e2_8ed8cf01\wpcsLibrary.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\6a813290\35d3aedf_8ed8cf01\WPWebControls.dll', Symbols loaded.
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.Web.PageInspector.Loader\v4.0_1.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Web.PageInspector.Loader.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Deployment\v4.0_1.0.0.0__31bf3856ad364e35\System.Web.WebPages.Deployment.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Deployment\v4.0_2.0.0.0__31bf3856ad364e35\System.Web.WebPages.Deployment.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.Web.PageInspector.Runtime\v4.0_1.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Web.PageInspector.Runtime.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Web.Infrastructure\v4.0_1.0.0.0__31bf3856ad364e35\Microsoft.Web.Infrastructure.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.RegularExpressions\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.Wrapper.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\App_global.asax.3ly5lssc.dll', Symbols loaded.
    A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll
    A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll
    A first chance exception of type 'System.Threading.ThreadAbortException' occurred in System.Web.dll
    A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll
    'iexplore.exe' (Script): Loaded 'Script Code (Windows Internet Explorer)'.
    The thread '<No Name>' (0x2178) has exited with code 0 (0x0).
    The thread '<No Name>' (0x22c0) has exited with code 0 (0x0).
    The thread '<No Name>' (0x3c4) has exited with code 0 (0x0).
    The thread '<No Name>' (0x2198) has exited with code 0 (0x0).
    The thread '<No Name>' (0x19e0) has exited with code 0 (0x0).
    The thread '<No Name>' (0x21c8) has exited with code 0 (0x0).
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.JScript\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.Web.PageInspector.Loader\v4.0_1.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Web.PageInspector.Loader.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Deployment\v4.0_1.0.0.0__31bf3856ad364e35\System.Web.WebPages.Deployment.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.WebPages.Deployment\v4.0_2.0.0.0__31bf3856ad364e35\System.Web.WebPages.Deployment.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.Web.PageInspector.Runtime\v4.0_1.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Web.PageInspector.Runtime.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.Web.Infrastructure\v4.0_1.0.0.0__31bf3856ad364e35\Microsoft.Web.Infrastructure.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.CSharp\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.CSharp.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.Data\v4.0_4.0.0.0__b77a5c561934e089\System.Data.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Services\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.IdentityModel\v4.0_4.0.0.0__b77a5c561934e089\System.IdentityModel.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Runtime.Serialization\v4.0_4.0.0.0__b77a5c561934e089\System.Runtime.Serialization.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel\v4.0_4.0.0.0__b77a5c561934e089\System.ServiceModel.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activation\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activation.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Web\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Web.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.Activities.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Activities\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Activities.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.WorkflowServices\v4.0_4.0.0.0__31bf3856ad364e35\System.WorkflowServices.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Extensions\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.Extensions.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.DataSetExtensions\v4.0_4.0.0.0__b77a5c561934e089\System.Data.DataSetExtensions.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xml.Linq\v4.0_4.0.0.0__b77a5c561934e089\System.Xml.Linq.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ComponentModel.DataAnnotations\v4.0_4.0.0.0__31bf3856ad364e35\System.ComponentModel.DataAnnotations.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.DynamicData\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.DynamicData.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.ApplicationServices\v4.0_4.0.0.0__31bf3856ad364e35\System.Web.ApplicationServices.dll'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\d2ac696f\807ca1a9_01cccf01\AjaxControlToolkit.dll'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\0ff769a3\738a1ab9_47e4cf01\myapp.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\48c5da56\c38dd5b4_47e4cf01\WPCSCore.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\1c6f45a6\dd41c2e2_8ed8cf01\wpcsLibrary.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\6a813290\35d3aedf_8ed8cf01\WPWebControls.dll', Symbols loaded.
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Data.Services.Design\v4.0_4.0.0.0__b77a5c561934e089\System.Data.Services.Design.dll'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\App_global.asax.yz9nltrj.dll', Symbols loaded.
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualBasic\v4.0_10.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Deployment\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll'
    A first chance exception of type 'System.Deployment.Application.InvalidDeploymentException' occurred in System.Deployment.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.Transactions\v4.0_4.0.0.0__b77a5c561934e089\System.Transactions.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_32\System.EnterpriseServices\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.Wrapper.dll'
    WebDev.WebServer40.exe Information: 0 : [Source : ASP.global_asax ] - <No Message>
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Mobile\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Web.Mobile.dll'
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.ServiceModel.Internals\v4.0_4.0.0.0__31bf3856ad364e35\System.ServiceModel.Internals.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\SMDiagnostics\v4.0_4.0.0.0__b77a5c561934e089\SMDiagnostics.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml.Hosting\v4.0_4.0.0.0__31bf3856ad364e35\System.Xaml.Hosting.dll'
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Web.Entity\v4.0_4.0.0.0__b77a5c561934e089\System.Web.Entity.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Design\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Design.dll'
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'A_7ac34899_0878_4547_ab89_13333f2a2da8'
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\App_Web_2vnmaiqi.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\App_Web_axfwmnjt.dll', Symbols loaded.
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\myapp\8b99fcaa\690ad76d\assembly\dl3\a9a217f9\93d383b9_47e4cf01\myapp.resources.dll'
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    The thread '<No Name>' (0x230c) has exited with code 0 (0x0).
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    Exception was thrown at line 3, column 25599 in http://localhost:51399/myapp/public/jquery-1.7.2.min.js
    0x800a139e - JavaScript runtime error: SyntaxError
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    A first chance exception of type 'System.Web.HttpException' occurred in System.Web.dll
    The thread '<No Name>' (0x258c) has exited with code 0 (0x0).
    WebDev.WebServer40.exe Information: 0 : [Source : ASP.login_aspx ] - <No Message>
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\Microsoft.VisualStudio.Diagnostics.ServiceModelSink\v4.0_4.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualStudio.Diagnostics.ServiceModelSink.dll'
    WebDev.WebServer40.exe Information: 0 : [Source : wpcsLibrary.wpcsUserManager.UserAuthenticate ] - <No Message>
    A first chance exception of type 'System.IO.IOException' occurred in mscorlib.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Net.Http\v4.0_4.0.0.0__b03f5f7f11d50a3a\System.Net.Http.dll'
    WebDev.WebServer40.exe Information: 0 : [Source : ] - <No Message>
    A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll
    WebDev.WebServer40.exe Information: 0 : Entering method call dbUtilities
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Numerics\v4.0_4.0.0.0__b77a5c561934e089\System.Numerics.dll'
    WebDev.WebServer40.exe Information: 0 : [Source :dbUtilities ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : Exiting method call dbUtilities
    WebDev.WebServer40.exe Information: 0 : [Source : ASP.accountselector_aspx ] - <No Message>
    The thread '<No Name>' (0x24dc) has exited with code 0 (0x0).
    WebDev.WebServer40.exe Information: 0 : [Source : ASP.accountselector_aspx ] - <No Message>
    A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll
    A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'Microsoft.GeneratedCode'
    A first chance exception of type 'System.Threading.ThreadAbortException' occurred in mscorlib.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\windows\Microsoft.Net\assembly\GAC_MSIL\System.Xaml\v4.0_4.0.0.0__b77a5c561934e089\System.Xaml.dll'
    WebDev.WebServer40.exe Information: 0 : Entering method call myweb.CentralStation.Apps.AppManager
    WebDev.WebServer40.exe Information: 0 : [Source : myweb.CentralStation.Apps.AppManager ] - <No Message>
    The thread '<No Name>' (0x2590) has exited with code 0 (0x0).
    WebDev.WebServer40.exe Information: 0 : Entering method call myweb.CentralStation.Apps.AppManager
    WebDev.WebServer40.exe Information: 0 : [Source : myweb.CentralStation.Apps.AppManager ] - <No Message>
    WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'C:\Users\E849324\myweb\Finalview\NCI\Source\WIN-PAK 2.0 R5\SourceCode\WPCSWEB\myapp\bin\DoorApp.app', Symbols loaded.
    WebDev.WebServer40.exe Information: 0 : Entering method call myweb.CentralStation.Apps.AppManager
    WebDev.WebServer40.exe Information: 0 : [Source : myweb.CentralStation.Apps.AppManager ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : Exiting method call myweb.CentralStation.Apps.AppManager
    WebDev.WebServer40.exe Information: 0 : Exiting method call myweb.CentralStation.Apps.AppManager
    WebDev.WebServer40.exe Information: 0 : Exiting method call myweb.CentralStation.Apps.AppManager
    The thread '<No Name>' (0x1f04) has exited with code 0 (0x0).
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : Entering method call wpcsLibrary.wpcsDataManager.dbUtilities
    WebDev.WebServer40.exe Information: 0 : Exiting method call wpcsLibrary.wpcsDataManager.dbUtilities
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.Instance.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.Canvas.set'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    The thread '<No Name>' (0x26c0) has exited with code 0 (0x0).
    Step into: Stepping over method without symbols 'string.Concat'
    Step into: Stepping over method without symbols 'System.Diagnostics.Trace.TraceInformation'
    WebDev.WebServer40.exe Information: 0 : Entering method call myweb.CentralStation.Apps.AppManager
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.Canvas.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Clear'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Collections.Generic.List<System.Web.UI.WebControls.Panel>.List'
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.InstalledApps.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'string.Concat'
    Step into: Stepping over method without symbols 'System.Diagnostics.Trace.TraceInformation'
    WebDev.WebServer40.exe Information: 0 : Entering method call myweb.CentralStation.Apps.AppManager
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.Panel.Panel'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.WebControl.CssClass.set'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.Panel.Panel'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.WebControl.CssClass.set'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.Panel.Panel'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.WebControl.CssClass.set'
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Add'
    Step into: Stepping over method without symbols 'myweb.CentralStation.Apps.App.AppInfo.get'
    Step into: Stepping over method without symbols 'myweb.CentralStation.Apps.AppAttribute.IconImage.get'
    Step into: Stepping over method without symbols 'string.IsNullOrEmpty'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.Label.Label'
    Step into: Stepping over method without symbols 'myweb.CentralStation.Apps.App.AppInfo.get'
    Step into: Stepping over method without symbols 'myweb.CentralStation.Apps.AppAttribute.Name.get'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.Label.Text.set'
    Step into: Stepping over method without symbols 'myweb.CentralStation.Apps.App.AppInfo.get'
    Step into: Stepping over method without symbols 'myweb.CentralStation.Apps.AppAttribute.Description.get'
    Step into: Stepping over method without symbols 'System.Web.UI.WebControls.WebControl.ToolTip.set'
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Add'
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Add'
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Add'
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.Canvas.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Add'
    Step into: Stepping over method without symbols 'string.Concat'
    Step into: Stepping over method without symbols 'System.Diagnostics.Trace.TraceInformation'
    WebDev.WebServer40.exe Information: 0 : Exiting method call myweb.CentralStation.Apps.AppManager
    Step into: Stepping over method without symbols 'System.Collections.Generic.List<System.Web.UI.WebControls.Panel>.Add'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Collections.Generic.List<System.Web.UI.WebControls.Panel>.ToArray'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].set'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.Canvas.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Web.UI.Control.Controls.get'
    Step into: Stepping over method without symbols 'System.Web.UI.ControlCollection.Add'
    Step into: Stepping over method without symbols 'string.Concat'
    Step into: Stepping over method without symbols 'System.Diagnostics.Trace.TraceInformation'
    WebDev.WebServer40.exe Information: 0 : Exiting method call myweb.CentralStation.Apps.AppManager
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.InstalledApps.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over property 'myweb.CentralStation.Apps.AppManager.InstalledApps.get'. To step into properties, go to Tools->Options->Debugging and uncheck 'Step over properties and operators (Managed only)'.
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Threading.ExecutionContext.Reader.IllogicalCallContext.get'
    Step into: Stepping over method without symbols 'System.Runtime.Remoting.Messaging.CallContext.HostContext.get'
    Step into: Stepping over method without symbols 'System.Web.HttpContext.Application.get'
    Step into: Stepping over method without symbols 'System.Web.HttpApplicationState.this[string].get'
    Step into: Stepping over method without symbols 'System.Web.UI.HtmlControls.HtmlControl.Style.get'
    Step into: Stepping over method without symbols 'System.AppDomain.Flags.get'
    Step into: Stepping over method without symbols 'string.Concat'
    Step into: Stepping over method without symbols 'System.Web.UI.CssStyleCollection.Add'
    The thread '<No Name>' (0x1b04) has exited with code 0 (0x0).
    WebDev.WebServer40.exe Information: 0 : Entering method call ASP.site_master
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : [Source : System.Byte[] ] - <No Message>
    WebDev.WebServer40.exe Information: 0 : Entering method call wpcsLibrary.wpcsDataManager.dbUtilities
    WebDev.WebServer40.exe Information: 0 : Exiting method call wpcsLibrary.wpcsDataManager.dbUtilities
    WebDev.WebServer40.exe Information: 0 : Exiting method call ASP.site_master
    A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll
    A first chance exception of type 'System.IO.FileNotFoundException' occurred in mscorlib.dll
    'WebDev.WebServer40.EXE' (Managed (v4.0.30319)): Loaded 'Microsoft.GeneratedCode'

    Please post this question to the forums at http://www.asp.net.
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

  • Getting error "You have insufficiant priviliges for the current operation"

    Hi,
    we are calling one seeded self service page from one custom self service page. But it is showing error like *"You have insufficiant priviliges for the current operation. Pls contact your system administrator."* Pls advice how to resolve this issue.
    Thanks in advance,
    Hanimi.....

    Hanimi
    This can be possible that in the instance in which it is working, In that the user with which you are testing the page is having access to that particular responsibility to which this page is attached.
    So try to assign this page's responsibility to your user and try again.
    Thanks
    AJ

  • When I try to move messages to trash I get this  The IMAP command "CHECK" failed for the mailbox "INBOX" with server error: Error in IMAP command received by server..  what do I do ?

    I try to move emails into the trash and this message comes up;
    The IMAP command “CHECK” failed for the mailbox “INBOX” with server error: Error in IMAP command received by server..
    what should I do ?
    My trash is empty and I re booted etc...

    Back up all data. Rebuild the mailbox. Try again to delete the message.

  • I do not know which email i used for the my old apple ID.

    I do not know which email i used for the my old apple ID. All I know is that it goes C*****@gmail.com. Is there any way for me to figure out my username or email used for the apple id without having the username or email logged in?

    You need to try each one you think it might be, or try using Apple’s iForgot service, or if you’re the device’s original owner, take it and its purchase receipt to a physical Apple Store.
    (117341)

  • Disk Erase failed with the error- Operation timed out

    I've checked my computer- Mac Book White in Apple store, everything is fine just the hard disk has been corrupted. Needed to erase and reinstall. By the time I wanted to erase it, I can't erase and appears "Disk Erase failed with the error- Operation timed out".
    Anyone knows how to solve this question would be nice.
    Thanks

    Well give this a try:
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger, Leopard or Snow Leopard.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported click on the Repair Permissions button. Wait until the operation completes, then quit DU and return to the installer. Now restart normally.
    If DU reports errors it cannot fix, then you will need Disk Warrior and/or Tech Tool Pro to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    Now download a utility like TinkerTool System or Leopard Cache Cleaner - VersionTracker or MacUpdate - and use it to clear out your system, user, and font caches.
    And, try this for the software update issue:
    Fix for Software Update
    See Troubleshooting Automatic Software Update in Mac OS X.
    Delete the following files:
    /Library/Preferences/com.apple.SoftwareUpdate.plist
    /Home/Library/Preferences/com.apple.SoftwareUpdate.plist
    /Home/Library/Preferences/ByHost/com.apple.SoftwareUpdate.xxx.plist
    "xxx" is a number.
    /Home/Library/Caches/com.apple.SoftwareUpdate/ (delete entire folder)

Maybe you are looking for