Setup resource template - getting 405 method not allowed

I'm attempting to migrate an app that ran under the old mod_plsql and 10g. Looking at 11g we've been testing out the apex listener on glassfish. However, we have methods that run from a client that uses post methods to send files (XML) to an oracle Pl/Sql procedure. The procedure grabs the blob out of a table that was configured in the mod_plsql for that location. Ideally - we'd use a web service, but don't have time to migrate everything yet. In order to get it running, we looked at the example of creating a resource template to handle these methods. We've got some Pl/Sql code to insert this into the original table and call the method. However - it's not working. The client is getting a 405 method not allowed error. That's it. There's a few lines in the server.log for the version and the driver - but no error messages. How does one debug this? What is generating the 405 error? Glassfish? If so, what logs tell you what the issue is? If it's apex listener, is there logs that can tell me where to find what the issue is calling the resource? Right now - considering installing the http server for oracle on this and just not using apex listener until we can migrate the code. It might be an easier migration to our new server. I'm hoping it's something simple...

There a number of standard verbs defined in HTTP:
GET- Retrieve a resource
POST- Submit new resource
PUT - update resource
DELETE - delete resource
When you enter a URL in a web browser it always uses the GET method, the method to retrieve the resource.
In your example Firefox is attempting to a do a GET on https://apex.oracle.com/pls/apex/orange/TestPOST
but you have not defined a GET handler for this resource, only a POST handler. ORDS then tells you that the GET method is not supported on the resource, which is the correct behaviour.
If you want to test the POST method from within a browser then you need to use JavaScript and perform an XMLHttpRequest and configure it to use the 'POST' method, for an example see the ORDS Developer guide:
REST Data Services Developers Guide

Similar Messages

  • 405 Method Not Allowed error from images directory

    Some background: I'm implementing fusioncharts in APEX and the commercial version comes with an Save as Image capability. When the user wants to save the chart as an image, an aspx file is called which calls a POST method to the directory where the aspx file is located.
    I store the aspx and its dependent files in a subfolder in the images directory and reference it using http://myserver/i/imagesaving/FusionChartsSave.aspx. Then when I try to save, I get 405 Method Not Allowed: 'the requested method POST is not allowed for the URL /i/imagesaving/FusionChartsSave.aspx.'
    The aspx functions work for sure because I am able to successfully save to image when I put the files in IIS and reference the url to the aspx file that way.
    My main concern is trying to keep all the files in the APEX environment which is Apache. Is there a place where I can perform the POST or configure apache to a directory that allows POST?
    thanks!

    Hi,
    I am facing the same error, patch upgraded from 12 to 18.
    URL iview was working on patch 12 , but after upgrade , one particular URL iview is not working.
    Preview works fine, if I paste the URL in a new window it workf fine,
    but when I try to access as an end user , the following error is faced
    "HTTP Error 405 - The HTTP verb used to access this page is not allowed.
    Internet Information Services (IIS)".
    I have tried to use "Open in new Window" property, but it dint help.
    Can anybody suggest.??
    Thanks in anticipation,
    Juhi

  • Failed to load resource: the server responded with a status of 405 (Method Not Allowed) XMLHttpRequest cannot load (WCF service URL). Invalid HTTP status code 405

    Hi,
    while consuming the  WCF service POST method Jquery, getting error in Chrome and firefox, in IE  Its working fine.
    ERROR:Failed to load resource: the server responded with a status of 405 (Method Not Allowed)  XMLHttpRequest cannot load (WCF service URL). Invalid HTTP status code 405.
    Jquery used to call:
    $.support.cors = true
            $.ajax({
                type: "POST",
                url: serviceURL,
                data: JSON.stringify(managedProps),
                useDefaultXhrHeader:false,
                contentType: "application/json; charset=utf-8",
                dataType: "json",
                //processData: true,
                crossDomain: true,
                success: function (data, status, jqXHR) {
                   alert("sucess");
                error: function (xhr) {
                    alert("error");
    WCF sevice Web.config
    <webHttpBinding>
            <!--<binding name="webHttpBindingWithJsonP" transferMode="StreamedRequest" />-->
            <binding name="crossDomain" crossDomainScriptAccessEnabled="true" transferMode="StreamedResponse" />
          </webHttpBinding>
        </bindings>
        <services>
          <service name="DynamicRefinerWCF.DynamicRefiner">
            <endpoint address="" behaviorConfiguration="REST" bindingConfiguration="crossDomain" binding="webHttpBinding" contract="DynamicRefinerWCF.IDynamicRefiner" />
            <endpoint address="mex" binding="mexHttpBinding" contract="DynamicRefinerWCF.IDynamicRefiner" />
            <host>
              <baseAddresses>
                <add baseAddress="http://localhost/example.svc" />
              </baseAddresses>
            </host>
          </service>
        </services>
        <!--<protocolMapping>
            <add binding="basicHttpsBinding" scheme="https" />
        </protocolMapping>-->    
        <!--<serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="true" />-->
      </system.serviceModel>
      <system.webServer>
        <!--<modules runAllManagedModulesForAllRequests="true"/>-->
        <modules>
          <remove name="WebDAVModule" />
        </modules>
        <handlers>
          <remove name="WebDAV" />
        </handlers>
        <directoryBrowse enabled="true" />
        <httpProtocol>
          <customHeaders>
            <add name="Access-Control-Allow-Origin" value="*"/>
            <add name="Access-Control-Allow-Headers" value="Content-Type"/>
            <add name="Access-Control-Allow-Methods" value="GET, POST, PUT, DELETE, OPTIONS"/>
            <add name="Access-Control-Request-Headers:" value="*" />
            <add name="Access-Control-Request-Method:" value="*" />
          </customHeaders>
        </httpProtocol>
        <!--
            To browse web app root directory during debugging, set the value below to true.
            Set to false before deployment to avoid disclosing web app folder information.
          -->
        <!--<directoryBrowse enabled="true"/>-->
      </system.webServer>
    </configuration>
    Thanks,
    Swathi

    Right on - I have done that a number of times.

  • "405 - Method Not Allowed" when calling my Web Service

    Hi Guys,
    In APEX.ORACLE.COM I am trying to call some PL/SQL via a Web Service with the following setup:
    URI Template: TestPOST
    Method          : POST
    Source Type : PL/SQL
    Requires Secure Access : No
    Source:
    begin
      delete from ora_log;
      insert into ora_log values (1, 2, 3, null, sysdate);
      commit;
    end;
    The call is:
    https://apex.oracle.com/pls/apex/orange/TestPOST
    But Firefox returns Error: 405 - Method Not Allowed
    Does anyone know how to resolve this?
    Access to my Workspace is:
    Workspace: ORANGE
    User     : guest
    Password : 01range
    My email : [email protected]
    Cheers
    Jeroen

    There a number of standard verbs defined in HTTP:
    GET- Retrieve a resource
    POST- Submit new resource
    PUT - update resource
    DELETE - delete resource
    When you enter a URL in a web browser it always uses the GET method, the method to retrieve the resource.
    In your example Firefox is attempting to a do a GET on https://apex.oracle.com/pls/apex/orange/TestPOST
    but you have not defined a GET handler for this resource, only a POST handler. ORDS then tells you that the GET method is not supported on the resource, which is the correct behaviour.
    If you want to test the POST method from within a browser then you need to use JavaScript and perform an XMLHttpRequest and configure it to use the 'POST' method, for an example see the ORDS Developer guide:
    REST Data Services Developers Guide

  • Posting from  one jsp to another gives HTTP 405 "method not allowed"

    I have a servlet filter that authenticates all requests for resources in my web app. This works fine when HTTP GET requests are being used, but I notice I get a HTTP 405 "Method not allowed" when a HTTP POST is issued. Even a simple JSP page that posts to another JSP page fails with this error. If I remove the filter, everything works OK.
    The filter doesn't do anything exceptional (that I can see), other than do a redirect to use SSL if the request isn't being called on that.
    Thanks for any help.

    If you've got access to the filter code - check that it doesn't contain any conditional checking on HttpServletRequest.getMethod() or alike.
    If the only thing you need to do is to ensure the use of SSL, why don't you declare a security-constraint in you web.xml:
    <security-constraint>
    <web-resource-collection>
    <web-resource-name>Ensure encryption</web-resource-name>
    <url-pattern>/</url-pattern>
    </web-resource-collection>
    <user-data-constraint>
    <transport-guarantee>CONFIDENTIAL</transport-guarantee>
    </user-data-constraint>
    </security-constraint>
    - J�rgen L�kke -

  • POST to SharePoint Online REST API - 405 Method Not Allowed

    Good afternoon,
    I am writing C# with the intention of uploading a file to a document library using the REST API.
    The code must run on an on-premise machine and the target SharePoint site is in SharePoint Online (Office 365 E-plan).  It has to handle large files, so CSOM is not an option.
    I have successfully tested a few different "get" messages, so I believe the authentication part is working.  However, so far I have no such luck with POST.
    In fiddler, my most recent attempt looks like this (I redacted the parts in <> because I'm not sure if they are sensitive somehow):
    POST http://org.sharepoint.com/sites/site/_api/web/GetFolderByServerRelativeUrl('Documents')/Files/add(url='test2.txt',overwrite=true) HTTP/1.1
    Accept: application/json;odata=verbose
    X-RequestDigest: <digest value>,15 Jan 2014 17:48:49 -0000
    BinaryStringRequestBody: true
    Host: org.sharepoint.com
    Content-Length: 6
    Expect: 100-continue
    stuff!
    Seems like it should work, but the result is "301 Moved Permanently."  This request is immediately followed by this one: 
    GET https://org.sharepoint.com/sites/site/_api/web/GetFolderByServerRelativeUrl('Documents')/Files/add(url='test2.txt',overwrite=true) HTTP/1.1
    Accept: application/json;odata=verbose
    X-RequestDigest: <formdigest>,15 Jan 2014 18:01:51 -0000
    BinaryStringRequestBody: true
    Host: org.sharepoint.com
    Cookie: FedAuth=<cookiestuff>; rtFA=<cookiestuff>
    Response:
    HTTP/1.1 405 Method Not Allowed
    Cache-Control: private, max-age=0
    Transfer-Encoding: chunked
    Content-Type: application/json;odata=verbose;charset=utf-8
    Expires: Tue, 31 Dec 2013 18:01:52 GMT
    Last-Modified: Wed, 15 Jan 2014 18:01:52 GMT
    Server: Microsoft-IIS/7.5
    X-SharePointHealthScore: 0
    X-SP-SERVERSTATE: ReadOnly=0
    SPClientServiceRequestDuration: 25
    X-AspNet-Version: 4.0.30319
    SPRequestGuid: dd936a9c-f4fc-a05d-27e1-2c948f0eb575
    request-id: dd936a9c-f4fc-a05d-27e1-2c948f0eb575
    X-FRAME-OPTIONS: SAMEORIGIN
    X-Powered-By: ASP.NET
    MicrosoftSharePointTeamServices: 16.0.0.2308
    X-Content-Type-Options: nosniff
    X-MS-InvokeApp: 1; RequireReadOnly
    P3P: CP="ALL IND DSP COR ADM CONo CUR CUSo IVAo IVDo PSA PSD TAI TELo OUR SAMo CNT COM INT NAV ONL PHY PRE PUR UNI"
    Date: Wed, 15 Jan 2014 18:01:51 GMT
    128
    {"error":{"code":"-1, Microsoft.SharePoint.Client.ClientServiceException","message":{"lang":"en-US","value":"The HTTP method 'GET' cannot be used to access the resource 'Add'. The operation type of the resource is specified as 'Default'. Please use correct HTTP method to invoke the resource."}}}
    0
    So it looks to me as if my request is being redirected to the same address but with a "GET" method rather than "POST," resulting in the 405 Method Not Allowed error because "add" needs POST.
    I appreciate any insight you can offer.

    Mkay, perhaps I should rephrase:  
    I want to synchronize a SharePoint Online library with a local file share.  There are a large quantity of files, and many of them are large (actually it's all too large to fit in one SharePoint Online site collection due to the 100gb limit, but I'll
    deal with that separately).
    The approach I was working on here was to create a C# method basically like this:  UploadFile(File, Destination, username, password).  I would use this method in the script component of an SSIS package which would run on a server and push the files
    up to SPO, but right now I'm just testing it as a console application.
    I got the CSOM methods working, but obviously that won't work because the files are too large.  Above is what's happening with the REST version.
    Can anyone see what's wrong with my REST calls - why is it being redirected as a GET request?  Is this even possible?

  • HTTP 405 Method Not Allowed - portal30_sso.wwsso_app_admin.ls_login

    I was getting the common "no configuration found" message when I clicked on the login link from the portal homepage. So I ran the ssodatan script and now I get this error message when I try to access portal30_sso.wwsso_app_admin.ls_login:
    "HTTP Error 405
    405 Method Not Allowed
    The method specified in the Request Line is not allowed for the resource identified by the request. Please ensure that you have the proper MIME type set up for the resource you are requesting.
    Please contact the server's administrator if this problem persists."
    Any ideas why I'm getting this error message?
    Maple
    null

    Please follow the config. guidelines from this URL http://technet.oracle.com/doc.pdf/iportal/A87566_01.pdf

  • HTTP/1.1 405 Method Not Allowed error while deploying application in EPMA

    Hi All,
    I have recently installed EPM 11.1.2.1 on a windows 2008 server with SQL Server 2008 database. I created a new HFM application and tried to deploy it, but the deployment gets aborted with the error "HTTP/1.1 405 Method Not Allowed" seen in the deployment log.
    Any clue as to what might be the issue? Thanks in advance.

    "405 Method Not Allowed" is most likely an IIS configuration issue. Please try reboot and try to redeploy again.
    You need to check and ensure that both Roles and IIS components are installed correctly and that the HFM is functioning OK via IIS when browsing through it.
    Also, by default IIS does not install ASP server scripting roles. To correct this by adding the ASP role in IIS
    "If you are using Windows 2008, you must install ASP Role Services before installing EPM System products that require IIS. If you are using Windows 2008, you must install .NET 3.5 before installation of Data Relationship Management.
    If IIS is chosen as the Web server during configuration, you must allow all unknown ISAPI extensions through the Internet Information Services Manager."
    Please refer "Oracle Hyperion Enterprise Performance Management System Installation Start Here" guide page no: 64
    http://download.oracle.com/docs/cd/E17236_01/epm.1112/epm_install_start_here_11121.pdfhttp://download.oracle.com/docs/cd/E17236_01/epm.1112/epm_install_start_here_11121.pdf

  • 405 Method Not Allowed -- XI AS2 Adapter error

    Hi All,
    I am getting the folloeing error in AS2 Adapter "405 Method Not Allowed". Please let me know ablout the latest note etc to resolve the same as note no. 906435 is quite old and is unable to resolve the same.
    Thanks in Advance.
    With regards,
    Gaurav

    Is your computer directly connected to internet, or do you have make some proxy settings ?

  • Content Server HTTP error: 405 Method Not Allowed in CSADMIN transaction

    Hello,
    After installing the content server, when configuring in CSadmin
    transaction, when we try to save the new settings, I get the errror
    HTTP error: 405 Method Not Allowed.
    The operating system is W2008 R2 SP1. The storage type is filesystem, we do not use the MAXDB database. However, I have made so many tries, that, finally Ihave installed the system with database, although we are not going to use it (we have more content servers installed with database and they are working fine). Despite of this, it doesn't work either. The error message is the same.
    The Content Server release is 6.40
    Thanks and best regards,
    Ana

    I have seen this issue on Windows 2008 R2 with IIS 7.5. This was the solution of mine
    The error 405 appears because you have installed WebDav IIS Role in IIS 7.5. Please uninstall that particular role.
    Regards,
    Subhash

  • HTTP response code: 405 Method Not Allowed

    I get the following error message when trying to log into the DTR. However from another machine the same URL seems to work.
    When tring to import the configuration from remote the following stack trace shows up:
    [code]
    com.sap.lcr.api.cimclient.LcrException: com.sap.lcr.api.cimclient.CIMClientException: HTTP response code: 405 Method Not Allowed
         at com.sap.lcr.api.cimclient.HttpRequestSender.newClientException(HttpRequestSender.java:516)
         at com.sap.lcr.api.cimclient.HttpRequestSender.processResponse(HttpRequestSender.java:407)
         at com.sap.lcr.api.cimclient.HttpRequestSender.send(HttpRequestSender.java:581)
         at com.sap.lcr.api.cimclient.CIMOMClient.sendImpl(CIMOMClient.java:195)
         at com.sap.lcr.api.cimclient.CIMOMClient.send(CIMOMClient.java:147)
         at com.sap.lcr.api.cimclient.CIMOMClient.enumerateInstancesImpl(CIMOMClient.java:436)
         at com.sap.lcr.api.cimclient.CIMOMClient.enumerateInstances(CIMOMClient.java:740)
         at com.sap.lcr.api.cimclient.CIMClient.enumerateInstances(CIMClient.java:983)
         at com.sap.lcr.api.sapmodel.JavaCIMObjectAccessor.enumerateInstances(JavaCIMObjectAccessor.java:211)
         at com.sap.lcr.api.sapmodel.SAP_DesignTimeConfigurationAccessor.enumerateInstances(SAP_DesignTimeConfigurationAccessor.java:168)
         at com.sap.ide.eclipse.component.devconf.DevConfManager$3.run(DevConfManager.java:593)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
         at com.sap.ide.eclipse.component.devconf.DevConfManager.listRemoteDevConfNames(DevConfManager.java:587)
         at com.sap.ide.eclipse.component.wizard.LoadDevConfPage.fillTable(LoadDevConfPage.java:225)
         at com.sap.ide.eclipse.component.wizard.LoadDevConfPage$5.widgetSelected(LoadDevConfPage.java:281)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.jface.window.Window.runEventLoop(Window.java:583)
         at org.eclipse.jface.window.Window.open(Window.java:563)
         at com.sap.ide.eclipse.component.provider.actions.DevConfNewAction.run(DevConfNewAction.java:46)
         at com.tssap.selena.model.extension.action.SelenaActionCollector$GenericElementActionWrapper.run(SelenaActionCollector.java:229)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.saveRunAction(MenuFactory.java:1425)
         at com.tssap.util.ui.menu.MenuFactory$MuSiAction.run(MenuFactory.java:1391)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.processInternal(MenuFactory.java:616)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.access$100(MenuFactory.java:586)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction$BusyProcessWorker.run(MenuFactory.java:716)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
         at com.tssap.util.ui.menu.MenuFactory$DelegateAction.process(MenuFactory.java:610)
         at com.tssap.util.ui.menu.internal.MenuListenerFactory$ProcessAdapter.widgetSelected(MenuListenerFactory.java:172)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402)
         at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385)
         at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
         at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
         at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
         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:324)
         at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:291)
         at com.sap.ide.eclipse.startup.Main.run(Main.java:789)
         at com.sap.ide.eclipse.startup.Main.main(Main.java:607)
    [/code]
    Pl help, thanks,
    Manik.
    Message was edited by: Manik Narayan Saha

    Hi Manik
    What have you set in
    Windows ->Preferences ->Java Development Infrastructure ->Development configuration
    the url should be just http://<server>:<port>
    Regards
    Pran

  • Helppppppppppp : 405 Method not allowed

    Hi
    I am newbie to Sun One Proxy server and evaluating the product to use as proxy server.
    I was able to set URL Redirection from
    http://proxy:8080/test -----> http://internalserver:6666/invoke/kmn/kmn
    First 2 or 3 times it worked fine but then it started giving error 405 Method not allowed
    I am trying to post data to proxy server which will post data to our internal server.
    Any help would be appreciated
    Thanks

    Hi Anirudh,
    Thanks for answering.
    I will take it up with my network admin.
    Regards,
    Aagaard
    Edited by: Aagaard on Jul 21, 2009 7:54 AM
    BTW: I am able to listen to the connection. The problem was that I had set my listen port to 80 as well as the port.
    Changing the listen port to 1234 helped.
    Now I am getting an Unknownhost exception. I am asuming that Anirudh's comment is still valid, and will have a talk with my network admin.

  • HTTP Error Code 405 Method Not Allowed

    Hello everyone ;
    I want to connection in my project but I get this error.Research web and forum but I couldn'nt find solve.
    My project ; C# ASP.NET Sql Server 2008.I am using DW CS5.5 and IIS7 , My OS is Windows 7 64 bit
    and I tried add SQL Server Connection and OLE DB Connection but error message same.
    Please Help me

    Thanks for letting me know. Actually, I already installed ASP.NET for CS5.5 but this is not the issue. The problem I'm having is the one described above by HaXeRR: when trying to test my OleDB connection in Dreamweaver, I get HTTP Error 405 Method Not Allowed. I've seen many posts on many forums about this, but nothing recent and one of the Adobe support pages documenting this specific error many years ago has been deleted.
    I'm on Windows 7 Ultimate with .NET Framework 4, using IIS and Dreamweaver CS5.5. My website works fine in the web browser as http://localhost/, and http://localhost/ is also the same URL I've used as the testing server in DW. All the same settings in Dreamweaver worked perfectly fine on Windows XP SP2 - the issue only started when I upgraded to Windows 7. Even my old Dreamweaver MX installation has the same issue (not just CS5.5).
    I've checked permissions on all my website folders, I've given Everyone full access, and still I get the Error 405 message in Dreamweaver. Does anyone have any suggestions?
    Thanks in advance for your help!

  • Tutorial - Web Services - 405 Method Not Allowed

    Hi,
    I am going thru the tutorial "Building and Using Web Services with JDeveloper" from Oracle JDeveloper 11g Release 2 (11.1.2.0.0) Tutorials. I am using Studio Edition Version 11.1.2.1.0. At the end of the first section on POJO Annotation-Driven Service when I press the "Send Request" button, nothing comes back or is displayed. The HTTP Analyzer shows "405 Method Not Allowed" for every HEAD request. GET and POST are fine. I don't get a response and the logs don't show any errors.
    Does anyone know what is causing the 405 error?
    Thanks.

    Hi Frank,
    I have not written any code. I am following the JDeveloper Tutorial step-by-step. The tutorial is called "Building and Using Web Services with JDeveloper", "Part 1: Building a POJO Annotation-Driven Service ". Near the end of the tutorial, you are instructed to run "Test Web Service" from the menu on MyCompany.java. When JDeveloper runs the test, a new tab opens with the HTTP Analyzer. You are then instructed to enter a '20' as arg(0) in the parameters section of the HTTP request header panel and press the 'Send Request' button. After pressing the button, JDeveloper starts the integrated server and issues the request. The right hand side of the analyzer tab shows the results of the test as HTTP Response Headers. The tutorial shows data from getDeptInfo(int id). The result on my screen shows nothing - blank.
    In the logs frame at the bottom, there is a tab that shows the output logs of the HTTP Analyzer. It shows that 15 calls were made: 6 GET methods, 8 HEAD methods and 1 POST method. The status of each call is '200 OK' except for the HEAD method calls which show '405 Method Not Allowed'.
    The tutorial is at [http://docs.oracle.com/cd/E18941_01/tutorials/jdtut_11r2_52/jdtut_11r2_52_1.html] I wonder if maybe there is a parameter in the integrated Weblogic server that prevents the method call because of policy or security settings.
    If you have any ideas, please let me know.
    Thanks, Rick

  • 405 Method not allowed

    Hey,
    i deployed a rest webservice on a WLS 10.3 now i try to make a post request but iam getting a 405 Error.
    My Request :
    Accept
    text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8
    Accept-Encoding
    gzip, deflate
    Accept-Language
    de-de,de;q=0.8,en-us;q=0.5,en;q=0.3
    Access-Control-Request-He...
    content-type
    Access-Control-Request-Me...
    GET
    Connection
    keep-alive
    DNT
    1
    Host
    testi.de:7001
    Origin
    http://testi.de
    User-Agent
    Mozilla/5.0 (Windows NT 6.1; WOW64; rv:24.0) Gecko/20100101 Firefox/24.0
    Response :
    Access-Control-Allow-Cred...
    true
    Access-Control-Allow-Head...
    Origin,Content-Type, Accept, X-Requested-With
    Access-Control-Allow-Meth...
    GET, POST, DELETE, PUT, OPTIONS, HEAD
    Access-Control-Allow-Orig...
    Content-Length
    988
    Content-Type
    text/html; charset=UTF-8
    Date
    Wed, 27 Nov 2013 10:50:41 GMT
    X-Powered-By
    Servlet/2.5 JSP/2.1
    am i missing sth.?

    I am having the same problem. I am using DW CS3, MySQL Server
    5.0 and a localhost solution, but I am running Windows XP pro. When
    I try to connect to the database I get a "HTTP Error code 405
    Method Not Allowed'.
    Did you ever find a solution?

Maybe you are looking for

  • DVD Player with 10.4.3

    I put in a commercially produced DVD of a film that has played many times without any problem and the system responds by asking me "What I would like to do with this blank CD-ROM" Is there a system log somewhere that has got in a mess ? G4 Powerbook

  • Ios7 working too slow on iphone 4 ;( :(, Ios7 working too slow on iphone 4 ;( :(

    Ios 7 workin too slow on iphone 4 :( :(

  • Jetpack890L is up and running but still no internet

    I work Chelsea Manhattan and we lost both our phone and internet when Sandy rolled through. Verizon sent us a Jetpack 890L to connect to EuFI890 (that's what the sticker says) to help us get back online, but it simply doesn't work. Maybe we're doing

  • Can't print test results as "user"

    Hi, I have a program  written in Labview 6.1 by another developer. This program runs on a PC with Windows 2000 ver. 5.0 Bld 2195 SP 3. Even though this is a stand alone test station and cannot ever be connected to the internet, we have McAfee virus p

  • Need help in query tuning

    Hi All, In my application I have 3 tables. Event(1.2 L records), KeyWord(1K records) and Event_KeyWord_Mapping(1.4 L records) table. In my query i need to sort the Events table by 3 columns -( 1 Date column and 2 String column) and i am interested on