OpenBinaryDirect returns 404 Not Found Error

Hi All,
I am trying to download a given document from a SharePoint Online library in an aspx page.
I have the URL of a document, that when navigated to in a browser begins a download of the document in question (so it's definitely the correct one!), however when I use that same URL in OpenBinaryDirect, I am faced with a 404: Not Found error. Below is
the entire stack trace
Stack Trace:    at System.Net.HttpWebRequest.GetResponse()    at Microsoft.SharePoint.Client.SPWebRequestExecutor.Execute()   at Microsoft.SharePoint.Client.File.OpenBinaryDirect(ClientContext context, String serverRelativeUrl)   at Convert_Web_Service.Convert.Page_Load(Object sender, EventArgs e)   at System.Web.UI.Control.LoadRecursive()   at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)
I have tried suggestions from the other posts from blogs and this forum, created and re-created, encoded and decoded, but I still get this error no matter what I try.
Is there a particular format, or processing path for SharePoint Online, or connecting through a web service in this way?
Thanks :)

Hi,
According to your post, an error occurred when you download document file from SharePoint Online using Client Object Model.
Please check whether you have authenticated in your code.
http://www.wictorwilen.se/Post/How-to-do-active-authentication-to-Office-365-and-SharePoint-Online.aspx
The following code snippet for your reference:
public static void GetFileBinary_ClientOM(string fileUrlPath, string localFileNamePath)
Uri fileUrl = new Uri(fileUrlPath);
int position = 1;
int bufferSize = 200000;
ClientContext clientContext = new ClientContext(fileUrl.GetComponents(UriComponents.SchemeAndServer, UriFormat.UriEscaped));
using (FileInformation fileInfo = File.OpenBinaryDirect(clientContext, Uri.UnescapeDataString(fileUrl.AbsolutePath)))
if (IO.File.Exists(localFileNamePath)) IO.File.Delete(localFileNamePath);
fileInfo.Stream.ReadTimeout = 120000;
Byte[] readBuffer = new Byte[bufferSize];
using (IO.Stream s = IO.File.Create(localFileNamePath))
while (position > 0)
position = fileInfo.Stream.Read(readBuffer, 0, bufferSize);
s.Write(readBuffer, 0, position);
readBuffer = new Byte[bufferSize];
fileInfo.Stream.Flush();
s.Flush();
We can also use copy web service to download documents.
http://nikpatel.net/2010/04/12/download-and-upload-the-sharepoint-documents-using-the-sharepoint-copy-web-service/
More information:
Remote Authentication in SharePoint Online Using the Client Object Model
http://code.msdn.microsoft.com/office365/Remote-Authentication-in-b7b6f43c
Best Regards
Dennis Guo
TechNet Community Support

Similar Messages

  • External Catalog gives HTTP 404 not found error on return

    Hi,
    I have an SRM 4.0 that I am running with an external ITS.  I have two systems that are almost exactly the same.  When I shop with a particular external catalog in one system, it works fine.  When I shop in the other system, I can get to the catalog and shop OK, but when I try to return the items to my cart, I get a 404 not found error.  I have reviewed the HTML source being sent back to both systems and can identify no differences.  I have scoured the config and it is exactly the same.  There are no other error messages anywhere in the broken system.  There are other external catalogs in that system that work fine.  I know I am overlooking something but can't seem to figure out what.  Any suggestions to alleviate this most frustrating problem are greatly appreciated.
    Many thanks,
    Kris

    Hi
    <u>What are the steps you doing to reproduce this error in the system? Please give complete details.</u>
    <b>Meanwhile, please look for following SAP OSS Notes as well -></b>
    Note 576530 - Page cannot be displayed
    Note 763955 - Error when resubmitting or forwarding
    Note 851106 - Search in catalog from SRM leads to "Service not reachable"
    Note 869716 - Package and SICF node missing for AP SICF services
    Note 961775 - Missing 1x1.gif - HTTP 404 Error - File Not Found
    Note 991863 EBPMSG service not available in transaction SICF
    Do let me know.
    Regards
    - Atul

  • 404 Not Found,   Error: The requested resource does not exist.

    Hi all,
    When I try to access VC with the http://localhost:50400/vc where 04 is the CE1 instance, it returns the following error:
    404 Not Found
      Error: The requested resource does not exist.
    Any clues. Just to add that the CE1 servers are running green and nwa is accessible on same url.
    Regards.

    Hi
    Try with following link (VC should be in Caps) -
    http://localhost:50400/VC/default.jsp
    Also check whether you have proper admin roles assigned to your user id.
    Regards
    Sandeep
    Edited by: Sandeep Patki on Sep 16, 2009 8:47 AM

  • Sender Soap scenario HTTP/1.1 404 Not Found error

    Hello All,
    I created SOAP to  IDOC scenario, generated the WSDL file from Sender agreement and while testing the interface using SOAPUI tool iam getting HTTP/1.1 404 Not Found error.
    i gave login authorization details in the SOAPUI tool.
    Update: when i generated the WSDL file from sender agrement, in the URL the port number was 443.
    when i check the port numer in SMICM transaction it show 50000.
    Now when i test with port numer 443 iam getting Connction refused error.
    Regards,
    Chinna
    Edited by: chinnasapxi on Mar 4, 2011 6:44 AM

    i created the URl and when i tested the from SOAP UI below is the error detials.
    Fri Mar 04 11:32:08 IST 2011:ERROR:com.eviware.soapui.model.iface.Request$SubmitException: com.eviware.soapui.impl.wsdl.submit.RequestTransportRegistry$MissingTransportException: Missing transport for protocol [ http]
       com.eviware.soapui.model.iface.Request$SubmitException: com.eviware.soapui.impl.wsdl.submit.RequestTransportRegistry$MissingTransportException: Missing transport for protocol [ http]
            at com.eviware.soapui.impl.wsdl.WsdlRequest.submit(WsdlRequest.java:241)
            at com.eviware.soapui.impl.wsdl.panels.request.AbstractWsdlRequestDesktopPanel.doSubmit(AbstractWsdlRequestDesktopPanel.java:146)
            at com.eviware.soapui.impl.support.panels.AbstractHttpRequestDesktopPanel.onSubmit(AbstractHttpRequestDesktopPanel.java:777)
            at com.eviware.soapui.impl.support.panels.AbstractHttpRequestDesktopPanel$SubmitAction.actionPerformed(AbstractHttpRequestDesktopPanel.java:488)
            at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
            at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
            at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
            at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
            at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
            at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
            at java.awt.Component.processMouseEvent(Unknown Source)
            at javax.swing.JComponent.processMouseEvent(Unknown Source)
            at java.awt.Component.processEvent(Unknown Source)
            at java.awt.Container.processEvent(Unknown Source)
            at java.awt.Component.dispatchEventImpl(Unknown Source)
            at java.awt.Container.dispatchEventImpl(Unknown Source)
            at java.awt.Component.dispatchEvent(Unknown Source)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
            at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
            at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
            at java.awt.Container.dispatchEventImpl(Unknown Source)
            at java.awt.Window.dispatchEventImpl(Unknown Source)
            at java.awt.Component.dispatchEvent(Unknown Source)
            at java.awt.EventQueue.dispatchEvent(Unknown Source)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
            at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
            at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
            at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
            at java.awt.EventDispatchThread.run(Unknown Source)

  • Can't do online banking. Get error message. "The requested URL /Summary.cgi was not found on this server. Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    I can't do online banking. When I try to open the page I get error "The requested URL /Summary.cgi was not found on this server.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

    Hi,
    These blog posts might help debug problem
    Oracle APEX: Got a 404 Not Found? | Inside Oracle APEX by Patrick Wolf
    daust_de :: Oracle XE / APEX: Troubleshooting the 404-not found error on XE
    Regards,
    Jari

  • 404 Not Found Error while testing INTEGRATION_DIRECTORY_HMI

    Hi,
    I am installing XI 3.0 SR1 on Win2000 sp4. I got struck at page 40 of installation guide trying to configure rfc destination INTEGRATION_DIRECTORY_HMI. I gave all the parameters as specified in the guide and clicked on "Test". I am getting the 404 Not Found error. The detalied error log is attached below. Can some one please let me know what could be the reason for the error?
    Thanks
    Sireesha
      HEADER NAME                HEADER VALUE                                                    
    ~response_line               HTTP/1.1 404 Not Found
    ~server_protocol             HTTP/1.1
    ~status_code                 404
    ~status_reason               Not Found
    connection                   close
    pragma                       no-cache
    cache-control                no-cache
    expires                      0
    content-type                 text/html
    content-length               1539
    server                       SAP J2EE Engine/6.40
    date                         Fri, 03 Feb 2006 04:00:56 GMT
      HTTP BODY                                                                               
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html>
    <head> <title>Error Report</title> <style> td {font-family : Arial,
    Tahoma, Helvetica, sans-serif; font-size : 14px;} A:link A:visited A:active </style
    > </head> <body marginwidth="0" marginheight="0" leftmargin="0" topmar
    gin="0" rightmargin="0"> <table width="100%" cellspacing="0" cellpaddin
    g="0" border="0" align="left" height="75"> <tr bgcolor="#FFFFFF">    
    <td align="left" colspan="2" height="48"><font face="Arial, Verdana, Hel
    vetica" size="4" color="#666666"><b>  404 &nbsp Not Found</b><
    /font></td> </tr> <tr bgcolor="#3F73A3">     <td height="23" width="8
    4"><img width=1 height=1 border=0 alt=""></td>     <td height="23"><img
    width=1 height=1 border=0 alt=""></td>     <td align="right" height="2
    3"><font face="Arial, Verdana, Helvetica" size="2" color="#FFFFFF"><b>SA
    P J2EE Engine/6.40 </b></font></td> </tr> <tr bgcolor="#9DCDFD">
        <td height="4" colspan="3"><img width=1 height=1 border=0 alt=""></
    td> </tr> </table> <br><br><br><br><br><br> <p><font face="Arial, Ve
    rdana, Helvetica" size="3" color="#000000"><b>  The requested
    resource does not exist.</b></font></p> <p><font face="Arial, Verdana,
    Helvetica" size="2" color="#000000"><table><tr><td valign="top"><b>&nbsp
    ;Details:</b></td><td valign="top"><PRE>Go to <A HREF="/" target="_paren
    t">main page</A> of this application!</PRE></font></td></tr></table></fo
    nt></p> </body> </html>                                             
      Time (ms)                                134

    Hi Sireesha -
    >>>As per your suggestion. I am trying to reinstall the XI Component again. But the setup is not asking me for any uninstallation of the existing setup nor any message saying that you already have the XI Component installed. Does it mean that the XI Component got deleted automatically?
    It's hard for me to say not being able to see your system, but here are some things you can check:
    - check link http://<xi_host>:<j2ee_port>/sap/monitoring/ComponentInfo
    You should be able to see components like SAP_XITOOL, SAP_XIAF, SAP_XIAFC which would indicate that XI components are installed.  You need role SAP_J2EE_ADMIN to access this.
    - Using SDM, you can see what's currently deployed in the SDM repository for XI related components.
    - Using Visual Admin, you can look for XI related services within the Server instance.
    But in any case, try reinstalling the XI Java components (which is really what you're installing following the SR1 Installation Guide).  If you run into problems during the installation and it's possibly due to already existing XI components, I would recommend, cleaning the slate and uninstalling the J2EE Add-in and starting again from the J2EE add-in part.  Instructions for deleting the add-in are in the corresponding WebAS Java 6.40 <platform/db> install guide (in the last section - "Additional Information").
    Regarding the central adapter engine, yes, this is installed automatically when you do the main installation of the XI Java components.  Instructions in the SR1 guide specifically referring to the Adapter Engine are for a decentral adapter engine.
    Hope that helps.
    Best regards,
    Jin

  • HTTP 404 Not Found Error in Process Control Mail

    Hi All,
    I am working on version 9.3.3
    I have setup e-mail alerts through a SMTP server.
    When I am going on Process control and starting the cycle OR promoting to any level, I am getting a Minimized window showing HTTP 404 Not Found error and Mail is not going.
    Whereas My ICP mail alerts are working fine
    Please suggest something to resolve.
    Regards,
    Jai

    Hi Jai,
    Check the below documents, which might be helpful to you.
    Financial Management Error "Server object error ASP 0177 : 80131040" When Sending Email Alerts (Doc ID 830823.1)
    Financial Management Error "HTTP 500 Internal Server Error" in Process Management E-Mail Alerting (Doc ID 855942.1)
    Process Control Email Alerts Are Not Working For Certain Entities and Entity Hierarchies (Doc ID 1160594.1)
    Hope this helps,
    Thank you,
    Charles Babu J
    Edited by: CJX on Jan 30, 2012 7:08 AM

  • HTTP 404 not found Error while click on Tab

    Hi All,
    Please help us as we are facing issue in Prodution.
    We are using Apex 3.0.1 version. our appication having 1 parent tab and 4 child tabs. parent tab working fine and 3 child tabs are working fine but while click on 4th child tab we are getting HTTP 404 not found error.
    The detials in tab/page
    it has 4 reports and 5 Iteams and 1 Hidden iteams.
    We are not able to find out the issue please help us.
    Thanks,

    Yes Scoot,
    i do understand that 1 hour is not sufficient to answer in forum but my situation is strange.
    To take a wild stab in the dark - how do you define your links in the tab set? Are you linking to a page in the application or your own URL?
    Kumar: I have linked to pages in Appication. In same appication rest of the TAB's are working fine with respective linked pages but only one TAB is not working, getting error.
    URL is same for all pages/Tabs, i don't think URL is the issue here.
    Please help me to get exact error so that i can resolve the issue my own. is there any possibilities to find out the errors in backend tables or elase files.
    Kumar.

  • Oem database console giving a  404 Not Found error

    Hi, The OEM database console shows a 404 not found error outside the machine. It works fine within the machiine when I remote desktop. I am clueless as to why, the sysman logs directory is empty. If you know any reasons please let m e know.
    Thanks..

    It may be that you can't access the hostname/port on the server. So try to do a ping to the server and see if you can get a response, can you ssh or telnet to the machine? Is there a firewall between your client and the machine?
    -Andy

  • HTTP 404 Not Found Error when using htp.anchor

    Hi All,
    We have customized hire flow and Oracle aplication 11i and added some HTML pages from PL/SQL. We are receiving "HTTP 404 Not Found Error" intermittently when clicking on submit button to go to the next page. If we close the browser and perform the same transaction it is working fine.
    Can you please help us in troubleshooting this issue.
    Thanks & Regards,
    Veerababu.

    If you are using Apache, check the error log for more details about the 404. If you are using EPG, there are similar logs somewhere but I can't tell you where off-hand.
    Scott

  • Dynamic Pages & Parameters - 404 Not Found Error

    I have the following dynamic page:
    declare
    M_subject varchar2(2000):= :message_subject;
    begin
    htp.print(''||M_subject||'');
    htp.print('This is a Test - Passing a parameter to a Dynamic Page');
    htp.p('Value: ' || M_subject);
    end;
    I also have another dynamic page that calls the above page and passes a parameter to it. And it works,..that is, the parameter gets passed to the page above, is assigned to M_subject and correctly prints on the screen.
    The problem is that i want to do more then just simply print the variable, in particular, i'd like to use it in a sql query.
    But when i add the following code into the above page
    thebody varchar(2000);
    select subject into thebody from MyTable where subject = M_subject;
    htp.print(''||thebody||'');
    it won't work. It compiles correctly but when i run the first dynamic page and call this 2nd page, i get a 404 Not Found error. Very strange because the page is definitely there.
    So is there anything obvisous that i'm not doing correctly? Is my query not structured properly? Why can't i use this variable for something useful instead of just simply printing it on the screen?
    Any comments, suggestions, fixes or ideas would be greatly appreciated.
    thanks
    chris

    Put debug on on the application server for the dad you're using.
    The error you are encountering will appear instead of the 404 not found error.
    How:
    in the home of your application server update the file
    $ashome/Apache/modplsql:/conf/dads.conf
    put ' PlsqlErrorStyle DebugStyle' in the dad you're using.
    restart the application server, retry your dynamic page and the sql error will appear.

  • Captivate 8:  Why am I getting a HTTP 404 Not Found error when I try to preview a responsive project?

    Captivate 8:  Why am I getting a HTTP 404 Not Found error when I try to preview a responsive project?

    Out of curiosity, some here have recommended renaming an EXE file behind the scenes to eliminate that firewall message when starting up. Are you one of those folks that tried this? My thought is that if so, perhaps this is a result?
    Cheers... Rick

  • 404 not found error from BB Protect download

    Hi,
    My sync/charge contact has broken off, so I am trying to download Blackberry Protect directly onto the phone.  Every the browser seems to work fine, but every time I click 'Download Protect', whether from Google or within Blackberry's site logged on with BlackberryID, I get the 404 : Not found error on my phone.
    Is it impossible to download directly, do Blackberry have a problem with downloads at the moment or is there another issue?
    Thanks,
    Tom

    Hi,
    My sync/charge contact has broken off, so I am trying to download Blackberry Protect directly onto the phone.  Every the browser seems to work fine, but every time I click 'Download Protect', whether from Google or within Blackberry's site logged on with BlackberryID, I get the 404 : Not found error on my phone.
    Is it impossible to download directly, do Blackberry have a problem with downloads at the moment or is there another issue?
    Thanks,
    Tom

  • 404 Not Found Error after 5.2 SP04 Patch04 deployment

    Hi,
    Today I did an installation and deployment of the 5.2 SP04 Patch 04 to one of our standalone
    SAP ME Application Servers. The installation and deployment worked without any error.
    However afterwards I could not login to SAP ME on the patched server.
    I get a 404 Not found error page after entering my site, login and password. The page I am being redirected
    to is http://<appserver>:50000/manufacturing/j_security_check?VALIDATE=true
    The real funny thing started right after when I discovered that my other SAP ME Application Server (Which has
    not been patched and is on 5.2 SP04 Patch03) started showing the same error message.
    Anybody has an idea on what is going on?
    Br,
    Johan Nordebrink

    Hi,
    Yes both my SAP ME Database servers (WIP and ODS) are up and running.
    After restaring my patched server this morning I found that before I get the 404 error during login I get a
    message saying License file corrupted 11904.
    On my other application server I don't get license file corrupted. There I get the 404 error but when I try to login again right after I am already logged in to SAP ME and can run the application.
    This is the last default trace messages from my patched application server since this mornings restart:
    #2.0 #2010 10 08 08:24:06:035#+0200#Warning#com.sap.engine.core.service630.container.ReferenceResolver#
    com.sap.ASJ.krn_srv.000064#BC-JAS-EJB#sap.com/ejbormapping_api#1CC1DE01D044000000000006000006EC###com.sap.engine.core.service630.container.ReferenceResolver########Thread[main,5,main]#Plain##
    Interface [ejbormapping] without declared provider#
    #2.0 #2010 10 08 08:24:06:035#+0200#Warning#com.sap.engine.core.service630.container.ReferenceResolver#
    com.sap.ASJ.krn_srv.000064#BC-JAS-EJB#sap.com/ejblocking_api#1CC1DE01D044000000000007000006EC###com.sap.engine.core.service630.container.ReferenceResolver########Thread[main,5,main]#Plain##
    Interface [ejblocking] without declared provider#
    #2.0 #2010 10 08 08:24:06:035#+0200#Warning#com.sap.engine.core.service630.container.ReferenceResolver#
    com.sap.ASJ.krn_srv.000064#BC-JAS-ADM-MON#sap.com/dsr_ejbcontext_api#1CC1DE01D044000000000008000006EC###com.sap.engine.core.service630.container.ReferenceResolver########Thread[main,5,main]#Plain##
    Interface [dsr_ejbcontext_api] without declared provider#
    #2.0 #2010 10 08 08:24:06:035#+0200#Warning#com.sap.engine.core.service630.container.ReferenceResolver#
    com.sap.ASJ.krn_srv.000064#BC-JAS-ADM-ADM#sap.com/visual_administration_api#1CC1DE01D044000000000009000006EC###com.sap.engine.core.service630.container.ReferenceResolver########Thread[main,5,main]#Plain##
    Interface [visual_administration] without declared provider#
    #2.0 #2010 10 08 08:24:24:159#+0200#Warning#com.sap.engine.services.deploy#
    com.sap.ASJ-dpl.ds-000463#BC-JAS-DPL#deploy#1CC1DE01D044000300000000000006EC#1674450000000118##com.sap.engine.services.deploy#####aeb67914d2a411dfad841cc1de01d044##0#Service Runner [tcjecachemgmt~srv]#Plain##
    Warnings:
       The Cache Configuration Upload container reports that doesn't support parallel operations, which slows down the deploy, update and remove operations with applications.
    Solution: Please contact the container holder to fix these warnings.#
    #2.0 #2010 10 08 08:24:39:112#+0200#Error#com.sap.esi.esp.service.server.ESPServiceInterfaceAbstract#
    #BC-ESI-WS-JAV#tcesiespsrv#1CC1DE01D044000B00000000000006EC#1674450000000768##com.sap.esi.esp.service.server.ESPServiceInterfaceAbstract####AEB67914D2A411DFAD841CC1DE01D044#aeb67914d2a411dfad841cc1de01d044#aeb67914d2a411dfad841cc1de01d044#0#Service Runner [tcesiespsrv]#Plain##
    There is problem reading the hostname from the ClusterManager. This could lead to improper wsdl links.#
    #2.0 #2010 10 08 08:24:43:753#+0200#Info#com.sap.archtech.daservice#
    #BC-ILM-DAS#sap.com/tcTechSrvXML_DAS#1CC1DE01D044001000000002000006EC#1674450000000042#sap.com/tcTechSrvXML_DAS#com.sap.archtech.daservice#Administrator#0##BAB53AFBD2A411DFA501000000198CD2#bab53afbd2a411dfa501000000198cd2#bab53afbd2a411dfa501000000198cd2#0#Application [21]#Plain##
    MasterMethod: An error occurred during the System Landscape Directory synchronization: Getting WBEMClient failed: com.sap.sldserv.exception.SldServiceRuntimeException: Destination SLD_Client not found. Destinations are defined in the Destination service.. Please check that destination SLD_Client is maintained correctly.
    [EXCEPTION]
    com.sap.sldserv.exception.SldServiceRuntimeException: Getting WBEMClient failed: com.sap.sldserv.exception.SldServiceRuntimeException: Destination SLD_Client not found. Destinations are defined in the Destination service.. Please check that destination SLD_Client is maintained correctly.
         at com.sap.sldserv.SldApplicationService.getWbemClient(SldApplicationService.java:150)
         at com.sap.archtech.daservice.commands.MasterMethod.synchronizeSystemLandscapeDirectory(MasterMethod.java:428)
         at com.sap.archtech.daservice.DASmain.init(DASmain.java:188)
         at javax.servlet.GenericServlet.init(GenericServlet.java:270)
         at com.sap.engine.services.servlets_jsp.server.security.PrivilegedActionImpl.run(PrivilegedActionImpl.java:97)
         at java.security.AccessController.doPrivileged(Native Method)
         at javax.security.auth.Subject.doAs(Subject.java:396)
         at com.sap.engine.services.servlets_jsp.server.application.WebComponents.addServlet(WebComponents.java:336)
         at com.sap.engine.services.servlets_jsp.server.deploy.ApplicationThreadInitializer.loadServlets(ApplicationThreadInitializer.java:977)
         at com.sap.engine.services.servlets_jsp.server.deploy.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:288)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:182)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:212)
    Caused by: com.sap.sldserv.exception.SldServiceRuntimeException: Destination SLD_Client not found. Destinations are defined in the Destination service.
         at com.sap.sldserv.SldApplicationService.getWbemClient(SldApplicationService.java:105)
         ... 13 more
    #2.0 #2010 10 08 08:25:00:472#+0200#Warning#com.sap.engine.services.deploy#
    com.sap.ASJ.dpl_ds.000554#BC-XI-IS-WKB#sap.com/com.sap.xi.mdt.soa#1CC1DE01D044001200000055000006EC#1674450000000001##com.sap.engine.services.deploy####BAB53AFBD2A411DFA501000000198CD2#bab53afbd2a411dfa501000000198cd2#bab53afbd2a411dfa501000000198cd2#0#Deploy Parallel Start Thread#Plain##
    Global operation [startApp] over [application] [sap.com/com.sap.xi.mdt.soa] finished successfully for [578]ms on server [1674450
    >>> Warnings <<<
         1). Application sap.com/com.sap.xi.rwb is not deployed, but resolving of application sap.com/com.sap.xi.mdt.soa continues because it has weak reference to this application.]#
    #2.0 #2010 10 08 08:25:01:144#+0200#Error#System.err#
    #BC-JAS-WEB-JSF#ecjavajsf#1CC1DE01D044001600000000000006EC#1674450000000984#sap.com/xapps~ra.edm.prjmgmt.jee.app#System.err#Guest#0##BAB53AFBD2A411DFA501000000198CD2#bab53afbd2a411dfa501000000198cd2#bab53afbd2a411dfa501000000198cd2#0#Application [18]#Plain##
    Oct 8, 2010 8:25:01 AM com.sun.faces.config.ConfigureListener contextInitialized
    INFO: Initializing JSF 1.2_08 for context '/EDMProjectWEB'
    #2.0 #2010 10 08 08:25:02:237#+0200#Error#com.sap.tc.lm.itsam.ui.config.registration.RoleToGroupMappingServlet#
    #BC-JAS-ADM#sap.com/tclmitsamuicontentmodelear#1CC1DE01D044001700000000000006EC#1674450000001041#sap.com/tclmitsamuicontentmodelear#com.sap.tc.lm.itsam.ui.config.registration.RoleToGroupMappingServlet#Guest#0##BAB53AFBD2A411DFA501000000198CD2#bab53afbd2a411dfa501000000198cd2#bab53afbd2a411dfa501000000198cd2#0#Application [21]#Plain##
    SAP_NWA_READONLY group does not exist
    [EXCEPTION]
    com.sap.security.api.NoSuchGroupException: Group "SAP_NWA_READONLY" does not exist.
         at com.sap.security.core.imp.GroupFactory.getGroupByUniqueName(GroupFactory.java:1429)
         at com.sap.tc.lm.itsam.ui.config.registration.RoleToGroupMappingServlet.init(RoleToGroupMappingServlet.java:82)
         at javax.servlet.GenericServlet.init(GenericServlet.java:270)
         at com.sap.engine.services.servlets_jsp.server.application.WebComponents.addServlet(WebComponents.java:324)
         at com.sap.engine.services.servlets_jsp.server.deploy.ApplicationThreadInitializer.loadServlets(ApplicationThreadInitializer.java:977)
         at com.sap.engine.services.servlets_jsp.server.deploy.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:288)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:182)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:280)
    #2.0 #2010 10 08 08:25:02:237#+0200#Error#com.sap.tc.lm.itsam.ui.config.registration.RoleToGroupMappingServlet#
    #BC-JAS-ADM#sap.com/tclmitsamuicontentmodelear#1CC1DE01D044001700000001000006EC#1674450000001041#sap.com/tclmitsamuicontentmodelear#com.sap.tc.lm.itsam.ui.config.registration.RoleToGroupMappingServlet#Guest#0##BAB53AFBD2A411DFA501000000198CD2#bab53afbd2a411dfa501000000198cd2#bab53afbd2a411dfa501000000198cd2#0#Application [21]#Plain##
    SAP_NWA_FULL group does not exist
    [EXCEPTION]
    com.sap.security.api.NoSuchGroupException: Group "SAP_NWA_FULL" does not exist.
         at com.sap.security.core.imp.GroupFactory.getGroupByUniqueName(GroupFactory.java:1429)
         at com.sap.tc.lm.itsam.ui.config.registration.RoleToGroupMappingServlet.init(RoleToGroupMappingServlet.java:99)
         at javax.servlet.GenericServlet.init(GenericServlet.java:270)
         at com.sap.engine.services.servlets_jsp.server.application.WebComponents.addServlet(WebComponents.java:324)
         at com.sap.engine.services.servlets_jsp.server.deploy.ApplicationThreadInitializer.loadServlets(ApplicationThreadInitializer.java:977)
         at com.sap.engine.services.servlets_jsp.server.deploy.ApplicationThreadInitializer.run(ApplicationThreadInitializer.java:288)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:182)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:280)
    #2.0 #2010 10 08 08:25:14:987#+0200#Info#com.sap.me.trace#
    ##sap.com/meear#1CC1DE01D044001900000000000006EC#1674450000001163#sap.com/meear#com.sap.me.trace.VM#Guest#0##BAB53AFBD2A411DFA501000000198CD2#bab53afbd2a411dfa501000000198cd2#bab53afbd2a411dfa501000000198cd2#0#Application [18]#Plain##
    SAP Manufacturing Execution Base 5.2.4.4 11 112868#
    #2.0 #2010 10 08 08:26:35:096#+0200#Error#com.sap.me.trace#
    ##sap.com/meear#1CC1DE01D044001A00000000000006EC#1674450000000004#sap.com/meear#com.sap.me.trace#Guest#0##AF1CFA4DD2A411DF9F991CC1DE01D044#af1cfa4dd2a411df9f991cc1de01d044#af1cfa4dd2a411df9f991cc1de01d044#0#Thread[HTTP Worker [@1499959050],5,Dedicated_Application_Thread]#Plain##
    The Login ID is missing.#
    #2.0 #2010 10 08 08:26:35:112#+0200#Error#com.sap.me.trace#
    ##sap.com/meear#1CC1DE01D044001A00000001000006EC#1674450000000004#sap.com/meear#com.sap.me.trace#Guest#0##AF1CFA4DD2A411DF9F991CC1DE01D044#af1cfa4dd2a411df9f991cc1de01d044#af1cfa4dd2a411df9f991cc1de01d044#0#Thread[HTTP Worker [@1499959050],5,Dedicated_Application_Thread]#Plain##
    Login module exception. com.sap.me.frame.security.loginmodules.common.MfgLoginException: null#
    Br,
    Johan

  • 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request

    When I try to go to my website, I get a blank screen and this message:
    Method Not Implemented
    GET to / not supported.
    Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
    Can anyone help me fix this bug, please? Thanks!

    I did as you said and it worked magic! I didn't even have to restart Mozilla. Thank you so much for your help! :-)

Maybe you are looking for

  • How to fill column value of a matrix with specific color when there is no value in that specific cell?

    Hi All, I need to create a 5/5  matrix in SSRS report. The data will be : Col_Side   Col_Header   Col_data 1                  1                1 1                  1                 1 1                  2                1 1                  5        

  • Photo stream does not sync mac OSX mavericks

    I have macbook air running mavericks 10.9.2 and when I setup photostream it only synced back for about 2 months, want it to collect all prior photostream photos from my iphone/ipad.  It has stayed just the 2 months data for a few days now so convince

  • Std. WF/Bo for consignment process in Sales?

    Hi Friends, Is  there any std. WF/Bo for consignment process in Sales?. I will definitly award points for any useful hits. Thanks Nash

  • Information of customize setting "active" in transport request

    Hello Experts, I have customized Company codes. In this context, I have deactivated three of them. When I take a look in my transport request, I see the following structure: - View Maintenance Data      - V_FLQCOMPANY           - FLQCOMPANY          

  • [SOLVED] No sound after update

    Hello Arch-Community, unfortunately my sound (neither Speakers nor Mic) is not working anymore on my machine. Yesterday evening was everything fine, but I guess after todays update something must have happened. Unfortunately I don't know which kind o