Assembler Pipeline Servlet always return 404 not found??

Hi folks,
I am having an issue trying to view the XML results of the assembler servlet from my browser.
When I enter: http://localhost:8080/assembler/guidedsearch?format=xml&N=0 I get a 404 not found. the loggingDebug and loggingTrace are on but I don't see anything in the server log.
I followed the conditions on the help page http://docs.oracle.com/cd/E36434_01/Platform.10-1-2/ATGEndecaIntegrationGuide/html/s0706assemblerpipelineservlet01.html
But without success.
Is there a good way I can troubleshoot this?
Thanks for your help,
Luc

Problem Resolved!
          I found out that I had 'http' instead of 'httpd' in the statement where I
          registered my servlet, SqlServlet.
          Now, I am having difficulty with hot deployment. The server is returning
          error 404.
          

Similar Messages

  • 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

  • One Application deployed OK;  my app always gets error "404 Not Found"...

    I am trying deploying my application from within JDeveloper 10.1.3.4 to the standalone oc4j on the localhost, before deploying it on an application server. I am a newbie and I am doing this by following a tutorial. The tutorial application is deployed fine, but my application always gets the "404 Not Found" error after deployment.
    The standalone oc4j is set up on my Windows XP PC by running the <jdev_home>\jdev\bin\start_oc4j.bat file, and works fine because the tutorial application is deployed and runs fine.
    For the tutorial application, deployment is the last chapter (Chapter 10). I started from the nearly completed tutorial application from the end of Chapter 9, and went throug all the steps in Chapter 10 and the application is deployed and invoked successfully.
    My application starts with the login.jspx page. The applilcation runs perfectly when invoked directly within JDeveloper by right-clicking login.jspx and selecting Run. But when going through the same steps as with the tutorial application, my application always gets "404 Not Found" in the browser.
    The steps of deployment are:
    1. Right-click the ViewController project, select New and then Deployment Profiles/WAR File, to create the deployment profile. When creating this profile, I entered "ZBV" as the custom root context.
    2. Right-click the deployment profile (ZBV.deploy), and "Deploy To..." the standalone oc4j on the localhost, and accept the default configuration. The messages in the log window in JDeveloper are all clean without error.
    3. Open a browser, enter the url "http://localhost:8888/ZBV/faces/staff/login.jspx and get "404 Not Found". I have undeployed and gone through the same steps several times and always got the same error. I use /staff/login.jspx after ZBV/faces because in the Application Navigator, the login.jspx file is located in the ViewController/Web Content/staff folder.
    I wonder what could be wrong with my application. In the tutorial it is said that both an .ear file and a .war will be created but only the .war file needs to be created because of the dependency of the ViewController project on the DataModel project set in the application. My application has this dependency set therefore I went throug the same steps as with deploying the tutorial application.
    I hope the experienced and experts and gurus will shed light on me with their experience and wisdom.
    Many thanks!
    Newman

    Hi, Shay,
    You are right. I checked the log and found one notification message:
    Unable to dispatch JSP Page : Exception:java.io.FileNotFoundException: /staff/Login.jspx
    The capital L is a typo when creating the page file. During development you never need to type the file name but just click, and I always thought it was login.jspx. When that is corrected in the url string, the application is invoked and runs as it should. The one letter drove myself crazy for a whole day.
    Sorry and thanks! And to Dom too!
    Regards,
    Newman

  • APEX Listener 2.0 - RESTful Services Failure with  404 - Not Found

    Versions used:
    * APEX Listener 2.0.0.354.17.05
    * Application Express 4.2.1.00.08
    * Oracle Database 11.2.0.1
    When testing the sample RESTful Service Module oracle.example.hr I always get 404 - Not Found page.
    I followed the documentation to install and configure APEX 4.2 and the Listener 2.0. Everything in my APEX installation works fine except RESTful Services.
    For example, when calling this RESTful Service:
    http://company.com:45678/apex/DEV/xxuapex/hr/empinfo/
    I get a 404 page.
    The corresponding entry in url-mapping.xml is:
    <pool base-path="/DEV" name="od01" workspace-id="xxuapex"/>
    where xxuapex is the name of the schema as well as the workspace where the RESTful Service is installed.
    Moreover, the corresponding od01.xml, od01_rt.xml and od01_al.xml in the conf directory seem correct.
    Any help is greatly appreciated.
    Thanks.
    Eddie Awad.

    Hi Eddie,
    +> try the other option base-url of the url-mapping+
    I did. No change. Still getting 404.When active it should transform the 404 page into a detailed 404 with a description of what the error is. Just to be sure, this is activated in the defaults.xml file of the APEX Listener as: *<entry key="log.logging">true</entry>*.
    You should then see a detailed 404 output in your browser of what's going wrong first of all.
    +> Could you post your url-mapping.xml file?+
    <?xml version="1.0" encoding="UTF-8"?>
    <pool-config xmlns="http://xmlns.oracle.com/apex/pool-config">
    <pool base-path="/DEV" name="od01" workspace-id="xxuapex"/>
    <pool base-path="/TEST" name="ot01" workspace-id="xxuapex"/>
    </pool-config>
    Despite using the url mapping script, it didn't map mine correctly and had to edit it manually. It was the use of "apex" that got it to work for me:
    *<pool base-path="/" name="apex" workspace-id="workspace-name-here" updated="2013-01-09T20:48:59.75Z"/>*
    Nick.

  • The remote server returned an error: (404) Not Found.

    Hi All
    Now I try to deploy my SAP Portal Project it gives following error message "The remote server returned an error: (404) Not Found.". What is missing?
    Regards

    Hi,
    In order to check if those seetings are ok, do following:
    Open internet explorer (or another) browser and go to
    http://localhost:50000/irj
    You should get the Portal homepage with login screen.
    If you don't - then you have a problem with your local portal ( may be it is not running ).
    If you do - Login with username: administrator and
    password: abcd1234
    If you don't succeed to login, then you have a problem with your user( may be it does not exist ).
    Regards,
    Rima.

  • The Remote server returned an error (404) not found in SharePoint Client Context code

    Hi All,
    I am getting an error with below line.
    "The Remote server returned an error (404) not found"
    It occurs when I am trying to fetch some data from SharePoint 2010 List.
    For eg. I have a webpart in which i am showing some content on page load and that content is coming from a List.
    But I am getting error.
    Screen shot for your reference.

     Here is my code:
       ClientContext context1 = new ClientContext("site url");
                context1.AuthenticationMode = ClientAuthenticationMode.Anonymous;
                List list1 = context1.Web.Lists.GetByTitle("List1");
                CamlQuery query1 = new CamlQuery();
                query1.ViewXml = @"<Query><Query><OrderBy><FieldRef Name='Title' Ascending='True' /></OrderBy>      
       </Query></Query>";
                Microsoft.SharePoint.Client.ListItemCollection listCollection1 = list1.GetItems(query1);
                context1.Load(listCollection1);
                context1.ExecuteQuery();  
               Even i removed the line no. 2 from above code and placed below but still same issue.
               context1.Credentials = new NetworkCredential("user", "password", "domain");
    Hope someone will solve my issue here.

  • Wildcard search returns Error 404-Not Found

    Wildcard searc for entity returns the Error 404-Not Found in Report(v.7). Any ideas?

    In your weblogic console the application called -
    BPM Workspace would be in a Inactive or prepared state
    & worklist app wpuld be in an active state

  • 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

  • A small icon of 404 not found is always appearing on the lower right of my screen whenever I open firefox,whichever page I go,it's still there on the same place

    I can go to whichever page I like,but the small message is always appearing.It is just a small paralilogram whith the message 404 not found and a strange server name.

    Can you attach a screenshot?
    *http://en.wikipedia.org/wiki/Screenshot
    *https://support.mozilla.org/kb/how-do-i-create-screenshot-my-problem
    Use a compressed image type like PNG or JPG to save the screenshot.
    Check the connection settings.
    *Tools > Options > Advanced : Network : Connection > Settings
    *https://support.mozilla.org/kb/Options+window+-+Advanced+panel
    If you do not need to use a proxy to connect to internet then try to select "No Proxy" if the "Use the system proxy settings" setting or one of the others doesn't work properly.
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    See also:
    *http://kb.mozillazine.org/Preferences_not_saved
    *https://support.mozilla.org/kb/Preferences+are+not+saved

  • 404 Not Found : Servlet not found on this server

    I have been trying to run a simple servlet from a JSP page. For some reason I keep getting an error informing me that the servlet in question cannot be found on the server. I have incuded some code from my project in the hope that it may provide a clue to the problem. I would appreciate any help.
    from the web.xml file
    <servlet>
    <servlet-name>MapTestServlet</servlet-name>
    <servlet-class>Common.MapTestServlet</servlet-class>
    </servlet>
    from the JSP page
    <FORM ACTION="\PATSCoreROC\classes\Common.MapTestServlet" METHOD="post">
    <INPUT TYPE="SUBMIT" NAME="Test" VALUE="Test Servlet">
    </FORM>
    Clicking the Test Servlet button produces the following 404 error in the browser
    404 Not Found
    Resource /PATSCoreROC/classes/Common.MapTestServlet not found on this server

    After a little work and some coffee I tried the following and it resolved my problem.
    <FORM ACTION="servlet\Common.MapTestServlet" METHOD="post">
    <INPUT TYPE="SUBMIT" NAME="Test" VALUE="Test Servlet">
    </FORM>
    I should have included 'servlet\' in the ACTION property.

  • Application Server Console returns EMDAEMON HTTP 1.1 404, Not Found

    Hello,
    Windows XP
    Version 10.1.2.0.2
    When I try to access the AS Console through the following URL:
    http://192.168.1.100:18100/emd/console/
    I get the following error:
    EMDAEMON
    HTTP/1.1 404 , Not Found
    But I'm able to access AS Portal through the following URL:
    http://192.168.1.100:18101/emd/console/
    I'm able to access all the other following URLs:
    http://192.168.1.100:7777/
    http://192.168.1.100/portal/page/portal/TOPLEVELSITE/Welcome
    http://192.168.1.100:5500/em/console/
    http://192.168.1.100:7777/oiddas/
    I think the port number is messed up somewhere and I'm not sure how to correct and get the AS Console working again.
    emctl status iasconsole gives:
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://192.168.1.100:18000/emd/console/aboutApplication
    Oracle Enterprise Manager 10g Application Server Control is running.
    emctl status agent gives:
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Agent Version : 10.1.0.4.2
    OMS Version : Unknown
    Protocol Version : 10.1.0.2.0
    Agent Home : D:\oracle\appserver\OraInfra
    Agent binaries : D:\oracle\appserver\OraInfra
    Agent Process ID : 3728
    Agent Process ID : 3728
    Agent URL : http://192.168.1.100:18100/emd/main/# MEDIUM if number of ta
    rgets is from 11 to 50.
    Started at : 2008-01-06 20:16:23
    Started by user : SYSTEM
    Last Reload : 2008-01-06 20:22:01
    Last successful upload : (none)
    Last attempted upload : (none)
    Total Megabytes of XML files uploaded so far : 0.00
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 78.03%
    Agent is Running and Ready
    It would be helpful if someone can guide me in the right direction. Thanks for your time.

    Hello, thanks for the input. Running in separate boxes is not a viable option at this point. I tried to update the iasconsole and agent ports based on the document here:
    http://download.oracle.com/docs/cd/B14099_07/core.1012/b13995/ports.htm#i1038847
    So I used the following commands to update the ports:
    emctl config agent port 18139
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Oracle Enterprise Manager 10g Agent configuration update succeeded.
    emctl config iasconsole port 18119
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://192.168.1.100:1156/emd/console/aboutApplication
    0 [main] ERROR emSDK.config - java.util.MissingResourceException: Can't find bu
    ndle for base name oracle.xml.mesg.XMLResourceBundle, locale en_US
    java.util.MissingResourceException: Can't find bundle for base name oracle.xml.m
    esg.XMLResourceBundle, locale en_US
    at java.util.ResourceBundle.throwMissingResourceException(ResourceBundle
    .java:839)
    at java.util.ResourceBundle.getBundleImpl(ResourceBundle.java:808)
    at java.util.ResourceBundle.getBundle(ResourceBundle.java:579)
    at oracle.xml.util.XMLError.getMessageBundle(XMLError.java:500)
    at oracle.xml.util.XMLError.alloc(XMLError.java:508)
    at oracle.xml.util.XMLError.getMessage0(XMLError.java:419)
    at oracle.xml.util.XMLError.error0(XMLError.java:310)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidati
    ngParser.java:318)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingP
    arser.java:281)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:186)
    at oracle.sysman.emSDK.conf.TargetInstaller.parseTargetFromFile(TargetIn
    staller.java:1747)
    at oracle.sysman.emSDK.conf.TargetInstaller.modifyTargetFromFile(TargetI
    nstaller.java:1294)
    at oracle.sysman.emSDK.conf.TargetInstaller.main(TargetInstaller.java:36
    86)
    16 [main] ERROR emSDK.config - java.io.IOException: Error parsing target from f
    ile D:\oracle\appserver\OraInfra/sysman/emd/iasTargetMod.xml :: Can't find bundl
    e for base name oracle.xml.mesg.XMLResourceBundle, locale en_US
    java.io.IOException: Error parsing target from file D:\oracle\appserver\OraInfra
    /sysman/emd/iasTargetMod.xml :: Can't find bundle for base name oracle.xml.mesg.
    XMLResourceBundle, locale en_US
    at oracle.sysman.emSDK.conf.TargetInstaller.parseTargetFromFile(TargetIn
    staller.java:1760)
    at oracle.sysman.emSDK.conf.TargetInstaller.modifyTargetFromFile(TargetI
    nstaller.java:1294)
    at oracle.sysman.emSDK.conf.TargetInstaller.main(TargetInstaller.java:36
    86)
    Error parsing target from file D:\oracle\appserver\OraInfra/sysman/emd/iasTarget
    Mod.xml :: Can't find bundle for base name oracle.xml.mesg.XMLResourceBundle, lo
    cale en_US
    Oracle Enterprise Manager 10g Application Server Control configuration update fa
    iled.
    When I looked at iasTargetMod.xml the file is empty (0 KB size).
    After Starting the Application Server Control, I checked the status of both iasconsole and agent and are as follows:
    emctl status iasconsole
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    http://192.168.1.100:18119/emd/console/aboutApplication
    Oracle Enterprise Manager 10g Application Server Control is running.
    Logs are generated in directory D:\oracle\appserver\OraInfra/sysman/log
    emctl status agent
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    Agent Version : 10.1.0.4.2
    OMS Version : Unknown
    Protocol Version : 10.1.0.2.0
    Agent Home : D:\oracle\appserver\OraInfra
    Agent binaries : D:\oracle\appserver\OraInfra
    Agent Process ID : 8176
    Agent Process ID : 8176
    Agent URL : http://192.168.1.100:18139/emd/main/# we can set it to 0 to
    use the OS default value.
    Started at : 2008-01-08 00:13:53
    Started by user : SYSTEM
    Last Reload : 2008-01-08 00:13:53
    Last successful upload : (none)
    Last attempted upload : (none)
    Total Megabytes of XML files uploaded so far : 0.00
    Number of XML files pending upload : 0
    Size of XML files pending upload(MB) : 0.00
    Available disk space on upload filesystem : 78.00%
    Agent is Running and Ready
    I also checked the following:
    emctl config listtargets
    Oracle Enterprise Manager 10g Application Server Control Release 10.1.2.0.2
    Copyright (c) 1996, 2005 Oracle Corporation. All rights reserved.
    [192.168.1.100:18139, oracle_emd]
    [192.168.1.100, host]
    [orcl.168.1.100, oracle_database]
    [LISTENER_192.168.1.100, oracle_listener]
    After all this, I went to this URL:
    http://192.168.1.100:18101/
    - and logged in as ias_admin. The name for Infra and Portal are as follows:
    infra.192.168.1.100
    PORTAL.192.168.1.100
    When I clicked on infra.192.168.1.100 I get 'Internet Explorer cannot display the webpage' error.
    But when I click on PORTAL.192.168.1.100 everything is working and the status of all the components are up.
    I'm not sure how I should proceed at this point. Any pointers would be helpful. Thanks!!

  • While processing a message : Error HTTP 404: not found

    Hi gurus,
    I'm stuck on a File-XI-IDoc scenario.
    Here is the message i get in the Message Tool Display:
    Erreur lors de la transmission du message au point d'accès http://rchase12:53000/sap/xi/engine?type=entry via la connexion File_http://sap.com/xi/XI/System. Motif : com.sap.aii.af.ra.ms.api.RecoverableException: Received HTTP response code 404 : Not Found
    It's in French but it it's like my url is not good. I read about the port that must be 80xx in place of 53000 is it true?? I can't find any information about it, in another place than some forum topics.
    Could anyone help me?
    Thanks in advance.
    Thomas

    Hi,
    Description: The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address. This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.
    Possible Tips:- for HTTP_RESP_STATUS_CODE_NOT_OK 404
    u2022 404 is an HTTP response code that indicates that the resource in question couldn't be found. Usually this is due to an incorrect URL, so it is better to cross check all URLs. Check pipeline URL in the SLD in the business system of the Integration Server For this go to SLD->Business System-><yourIntegrtaion Server>->Pipeline URL: It should be like this http://<host>:<port>/sap/xi/engine?type=entry Where host is the host name of the Integration Server and port is the HTTP(8xxx) port. To verify this in Integration Server you can do like this. Go to SXMB_ADM->Integration Engine Configuration->Choose Edit from Menu -> Change Global Configuration Data to switch to change mode. Then select System Landscape - Load Configuration. (This is not required always)
    u2022 Check that the port really is the ICM HTTP Port and not the J2EE port i.e SMICM then menu GOTO --> SERVICES and check the port number for HTTP. It should be HTTP port
    u2022 If the error is Page cannot be displayed, cannot find server in https configurations Check and correct the SSL configuration for the ABAP and the J2EE side of the system
    u2022 If the error is because of integration server when using Proxy communications then check these. i.e SXMB_ADM->Integration Engine Configuration->Corresponding Integration Server enrty should be dest://<Http Integration server-Destination> Where < Http Integration server -Destination > is the RFC destination (SM59) of type HTTP connection (type H) to the Integration Server. In this case, host name, port, and path prefix are saved in the RFC destination.
    Regards,
    Shabari

  • I can go to every other website except for facebook even if i use other browsers all i can see is 404 Not found or HTTP 500 Error since yesterday I tried reinstalling clearing history and cookies enabling them make sure that my firewall permits me to acce

    I can go to every other website except for facebook. I try every other browser in my computer but the only thing I can see is HTTP 500 error and 404 Not Found. I tried clearing cache history and cookies, enabling cookies, checking my modem, make sure my firewall permits me to access this web and even pt 's' in front of 'http' but it still dosent work. I can go to facebook with my dad's laptop and my handphone but not with this computer, why?
    == URL of affected sites ==
    http://www.facebook.com

    Problem Resolved!
              I found out that I had 'http' instead of 'httpd' in the statement where I
              registered my servlet, SqlServlet.
              Now, I am having difficulty with hot deployment. The server is returning
              error 404.
              

  • 404 Not Found, the requested resource does not exist

    Hi gurus,
    We're faciing an issue where when we submit data back to the SRM shopping cart from the MDM catalog UI, we intermittently get a "404 Not Found, the request resource does not exist" error page.
    Below is the HTTP trace upon item checkout:
    POST     200     text/html; charset=UTF-8     https://server/webdynpro/dispatcher/sap.com/tcmdmsrmcat~uisearch/MDM_SRM_UI_App?sap-wd-cltwndid=0cf753a3797111dfa7c662676002500a&sap-wd-appwndid=0cf753a4797111df966b62676002500a&sap-wd-norefresh=X
    GET     (Cache)     application/x-javascript     https://server/webdynpro/resources/sap.com/tcwddispwda/global/SSR/js/autorelax.js?7.0103.20091012142306
    GET     404     text/html     https://server/webdynpro/resources/sap.com/tcmdmsrmcat~uisearch/Components/com.sap.mdm.srmcat.uisearch.master.Master/ProductForm30703.html
    GET     (Cache)     text/html     https://server/webdynpro/resources/sap.com/tcwddispwda/global/SSR/html/blank.html?7.0103.20091012142306
    GET     (Cache)     application/x-javascript     https://server/webdynpro/resources/sap.com/tcwddispwda/global/SSR/js/autorelax.js
    GET     (Cache)     text/html     https://server/webdynpro/resources/sap.com/tcwddispwda/global/SSR/html/backprevention.html
    GET     (Cache)     text/html     https://server/webdynpro/resources/sap.com/tcwddispwda/global/SSR/html/backdummy.html
    GET     (Cache)     application/x-javascript     https://server/webdynpro/resources/sap.com/tcwddispwda/global/SSR/js/autorelax.js
    The page https://server/webdynpro/resources/sap.com/tcmdmsrmcat~uisearch/Components/com.sap.mdm.srmcat.uisearch.master.Master/ProductForm30703.html is where the 404 error is being generated. And this error is also intermittent, so some time, the page will load with GET 200, but other times, it will show GET 404.
    Does anyone know what this ProductForm#####.html does? The ##### is a numerical value that seems to be incrementing on every catalog submission back to SRM shopping cart.
    MDM build 03.69
    Thanks.

    Sudhanshu appreciate your quick responses and the intermittent error is what's troubling me as well.
    Let me run through the SRM SC scenario for example:
    1. In shopping cart professional > Add Item > SRMMDM Catalog
    2. In the SRM-MDM catalog > Add an item to cart > Checkout
    3. After checkout, is where the intermittent error comes. Sometimes, the ProductForm.html is generated without a problem, and the product data is returned to the SRM SC in line 1.
    4. When we're back in the SRM SC professional > Add Item > SRMMDM Catalog  to punchout to the catalog again.
    5. Again, in the SRM-MDM catalog > Add an item to cart > Checkout
    6. Boom...the ProductForm.html page generates a 404 error.
    The scenario is similar from SUS to MDM, where for example, the first (or second or third) MDM punch out works, then all of a sudden, the 404 error is generated and it's always at the ProductForm.html where the 404 code is given.  I have yet to find a pattern to see what triggers this 404 error. Sometimes the first MDM punchout will generate this 404 error. Sometimes it will work up to 4 or 5 punchouts before the 404 error is generated.
    I'm have our BASIS team do a thorough analysis at the portal level to look for errors and still waiting for SAP's response.
    Another interesting thing is that this ONLY  happens in our dev box. In our QA box, we don't see such a behavior.
    Thanks for your time!

  • Weblogic 4.5.1 SP7 Error 404 Not Found

    I have moved from Weblogic 4.5.1 (no service packs installed) to
    Weblogic 4.5.1 SP7. Now I cannot access any of my jhtml and jsp files.
    All of them return Error 404 Not Found. I see that the page compile
    servlet's
    init method is called in the server log but then there are no error messages
    printed.
    Would appreciate some help,
    Thanks,
    Mihir

    Mihir,
    I thought we had SP7 installed, but not in our test env. I just experienced
    the same thing. If I install SP7 vs. SP1, my JHTML is not found, I get an
    error:
    Couldn't find file: /.../public_html/index.jhtml
    Why is it looking for index.jhtml. Very strange, can't believe this hasn't
    been reported
    Jim
    "Mihir" <[email protected]> wrote in message
    news:8catod$9dh$[email protected]..
    I have moved from Weblogic 4.5.1 (no service packs installed) to
    Weblogic 4.5.1 SP7. Now I cannot access any of my jhtml and jsp files.
    All of them return Error 404 Not Found. I see that the page compile
    servlet's
    init method is called in the server log but then there are no errormessages
    printed.
    Would appreciate some help,
    Thanks,
    Mihir

Maybe you are looking for

  • Regarding letter of credit

    HI Can any one say me how to hadle Letter fo Credit in SD. As my client does not have export scenario i have been said that they are going to have it in domestic sale please provide me the settings and the masters if any has to be updated. And in wha

  • Problem exporting for TV viewing

    I am finding FCPX most frustrating and  have the following problems with exporting and saving to a USB HDD then viewing on a HD pal TV.   If there are any Ken Burns effects in the project then the file won't play on the TV. Without the ken burns it p

  • Install Problem ECC 5.0\Windows server 2003(SP2)\oracle 9.2.1.0

    Dear Friends I am Saikumar from Hyderabad I hasve been trying to install ecc 5.0 on my System but it failed more than 4 times now. My PC Config Intel Desktopboard S975XBX 2 8GB Ram 500 GB HDD I have done all the prerequisites like setting the swap Sp

  • Why is there always the text of an old message in the text box every time I go to write a new message?

    For the last three days, when I go to write a new text/iMessage, there is the text of a message I sent recently in the text box. I've tried everything to get rid of it, but nothing seems to work... each time I go to write a new message, there's the s

  • Photoshop CS6 Performance Settings Recommendations?

    I use Photoshop CS6 for Image editing. I just purchased a new Imac 27 inch late 2012 Model with an i7 3.4Ghz Processor plus the following: 1TB Fusiion HDD 24Gb of System Ram 2GB Video Card. This screenshot shows what I currenlty have as my setttings