GRMG RFC Configuration "HTTP method GET is not supported by this URL"

Hi All,
when i create the RFC Destinaton for SLD  with regards to GRMG Configuration and test the rfc i get the Reason code 400 with error "HTTP method GET is not supported by this URL".
Even if i call  http://hostname:port/sld/rtc in the browser i get the same error.
RFC Details:
Target machine:Host
Service No: port no
path prefix: /sld/rtc
My other RFC destinations for rwb,IR,ID,Adapter Engine works well.
I would appreciate your suggestions on this
Aravind

Hi David,
I feel sorry to wake this thread up after long time.
It's the same situation, connection testing for SLD returns 400 "HTTP method GET is not supported by this URL".
However, CCMS hearbeat seems to work fine with SLD. It returns green.
I have a question here. Is it OK if we leave it that way without changing GRMG?
Is there any potential problem, or side effect when the RFC destination returns 400?
Thank you very much,
Teyun

Similar Messages

  • Error: HTTP method GET is not supported by this URL

    Hey,
    I am attempting to overload the doGet method with a Wrapper class I created for HttpServletReponse that extends it of course and I receive this error: "HTTP method GET is not supported by this URL". I figure you can't change the method as I have but I am curious if there is anyway I can go about to accomplish what I am trying to do. Basically I just need to extend the HttpServletResponse so that it contains a few more variables and such.
    public class test extends HttpServlet {
        public void doGet(HttpServletRequest request,  XmlServletResponseWrapper response) throws ServletException, IOException{
            response.setContentType("text/html");
            PrintWriter out = response.getWriter();
            out.println("<html>");
            out.println("<head>");
            out.println("</head>");
            out.println("<body>test</body>");
            out.println("</html>");
       

    public void doGet(HttpServletRequest request, XmlServletResponseWrapper response)
    is not the same method as
    public void doGet(HttpServletRequest request, HttpServletResponse response)
    The servlet container is going to call the later method and since you did not overwrite it to provide an implementation it sees the GET request as not being supported.
    what you are looking to do is something like this:
    public void doGet(HttpServletRequest request,  HttpServletResponse response) throws ServletException, IOException{
            XmlServletResponseWrapper myResponse = (XmlServletResponseWrapper ) response;
            myResponse .setContentType("text/html");
            PrintWriter out = myResponse .getWriter();
            out.println("<html>");
            out.println("<head>");
            out.println("</head>");
            out.println("<body>test</body>");
            out.println("</html>");
       

  • HTTP method GET is not supported by this URL

    hi.. I am trying one Cookie example.. I m ready with the class file.. and I have deployed it in Tomcat.. but when I am trying to run this the error "HTTP method GET is not supported by this URL" is coming..
    Pls give some clues so that I can run this....

    Implement HttpServlet#doGet() in your servlet.

  • Problem:HTTP Status 405 - HTTP method GET is not supported by this URL

    Hi
    I m beginner.I try to invoke servlet using HTML page with doPost method .I put the html file in Tomcat4.1/webapps/root and put the class file in Tomcat4.1/webapps/root/WEB-INF/classes. So when i put the url in the browser the html page is diplayed but when i sumit it to open the servet it gives this error HTTP Status 405 - HTTP method GET is not supported by this URL.I give the servlet name and class in web.xml also have done its mapping but still it is not working.Whereas the simple servet runs like HelloWord but when i use html page to run servlet it does'nt work.
    Plz help me out.
    Thanx

    Hi,
    I have also encountered this problem while running my web-application under tomcat 3.3.2. My application is resided in webapps directory. And servlet class is placed inside <app-dir>/WEB-INF/Classes/com/rEWebSite/Servlets.
    <web-app>
    <servlet>
    <servlet-name>
    LoginServlet
    </servlet-name>
    <servlet-class>
    com.rEWebSite.Servlets.LoginControlServlet
    </servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>
    LoginServlet
    </servlet-name>
    <url-pattern>
    /Login
    </url-pattern>
    </servlet-mapping>
    </web-app>
    This is script in web.xml file. And after clicking on the link it is showing http://localhost:8080/<app-dir>/Login .
    If anyone knows a solution, plz reply me.

  • 405 HTTP method GET is not supported by this URL

    When I use GET method to browse a servlet by using TOMCAT or Resin, receive the following message:
    405 HTTP method POST is not supported by this URL
    Thanks!

    Just post your question once and be patient:
    http://forum.java.sun.com/thread.jspa?threadID=573890
    Go out and get a servlet book. Don't you know how to write servlets?
    %

  • HTTP Status 405 - HTTP method POST is not supported by this URL

    dear all
    can u solve my problem.am getting the *"HTTP Status 405 - HTTP method POST is not supported by this URL"* msg from the browser when i press the search button in my form.plz suggest me the solution for my fault.these are the following html,xml,class files:
    search.html*
    <html>
    <head>
    <title>Search Page</title>
    </head>
    <body>
    <p align="center"><font size="6" color="#0000FF"><b>Search Module</b></font></p>
    <p align="center"> </p>
    <center>
    <form method="POST" action="./emp">
    <table border="1" width="43%">
    <tr>
    <td width="50%">
    <p align="right">Employee Name</td>
    <td width="50%"><input type="text" name="empname" size="36"></td>
    </tr>
    <tr>
    <td width="100%" colspan="2">
    <p align="center"><input type="submit" value="Search" name="B1"></td>
    </tr>
    </table>
    </form>
    </center>
    </body>
    </html>
    web.xml*
    <web-app>
    <servlet>
    <servlet-name>jdbc</servlet-name>
    <servlet-class>searchModule</servlet-class>
    <init-param>
    <param-name>driver</param-name>
    <param-value>sun.jdbc.odbc.JdbcOdbcDriver</param-value>
    </init-param>
    <init-param>
    <param-name>url</param-name>
    <param-value>jdbc:odbc:first</param-value>
    </init-param>
    <init-param>
    <param-name>user</param-name>
    <param-value>scott</param-value>
    </init-param>
    <init-param>
    <param-name>pass</param-name>
    <param-value>tiger</param-value>
    </init-param>
    </servlet>
    <servlet-mapping>
    <servlet-name>jdbc</servlet-name>
    <url-pattern>/emp</url-pattern>
    </servlet-mapping>
    <welcome-file-list>
    <welcome-file>search.html</welcome-file>
    </welcome-file-list>
    </web-app>
    SearchModule.java*
    import java.util.*;
    import java.io.*;
    import java.sql.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    public class searchModule extends HttpServlet
    Connection con;
    public void init() throws ServletException
    String d=getInitParameter("driver");
    String u=getInitParameter("url");
    String us=getInitParameter("user");
    String pwd=getInitParameter("pass");
    try
    Class.forName(d);
    con=DriverManager.getConnection(u,us,pwd);
    catch(ClassNotFoundException e)
    System.out.println(e);
    catch(SQLException e)
    System.out.println("Unable to establish the connection");
    }//init
    public void doGet(HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException
    String empname=req.getParameter("empname");
    res.setContentType("text/html");
    PrintWriter pw=res.getWriter();
    try
    pw.println("<html><body><center>");
    Statement st=con.createStatement();
    String sql="select * from employee where empname="+empname;
    ResultSet rs=st.executeQuery(sql);
    if(rs.next())
    pw.println("<h2>Employee Details</h2>");
    pw.println("<table border=1>");
    pw.println("<tr><th>Employee No.</th>");
    pw.println("<th>Employee Name</th>");
    pw.println("<th>Designation</th>");
    pw.println("<th>Department</th>");
    pw.println("<th>Salary</th>");
    pw.println("</tr><tr>");
    pw.println("<td>"+rs.getInt(1)+"</td>");
    pw.println("<td>"+empname+"</td>");
    pw.println("<td>"+rs.getString(3)+"</td>");
    pw.println("<td>"+rs.getString(4)+"</td>");
    pw.println("<td>"+rs.getInt(5)+"</td>");
    pw.println("</tr></table>");
    else
    pw.println("<h2>Employee Record Not Found</h2>");
    pw.println("</center></body></html>");
    pw.close();
    rs.close();
    st.close();
    catch(SQLException e)
    System.out.println(e);
    }//doPost
    public void destroy()
    if(con!=null)
    try
    con.close();
    catch(Exception e)
    System.out.println("Connection Closed");
    }//destroy
    }//searchModule
    in control panel i selected System DNS and created the name as first and driver as Microsoft ODBC for Oracle
    plz suggest me the solution where i committed mistake.

    <form method="*POST*" action="./emp">
    public void doGet (HttpServletRequest req,HttpServletResponse res) throws ServletException,IOException
    HTTP method POST is not supported by this URL

  • HTTP method POST is not supported by this URL

    Hi everyone,
    I'm having a problem in my application.
    I used the ADF Security Wizard to enable the ADF Security in my application. So, it created the pages login.html, error.html and welcome.jsp.
    The problem is when I try to sign in in my applicaton. On the page login.html I filled in the fields username and password and click on the button to post the form. But when the form is posted I get the message: "HTTP method POST is not supported by this URL".
    The form is posted to the bean j_security_check.
    Does anybody know why is it happening? What should I do to fix it?
    Thanks a lot
    Daniel
    Edited by: [email protected] on 23/02/2010 05:37

    Normally when you get this error, your username/password is not correct.
    It's not a clean way of errorhandling. I have had the same issue and after a while i noticed the password i entered was not correct.

  • 405 HTTP method POST is not supported by this URL

    When I use GET method to browse a servlet by using TOMCAT or Resin, receive the following message:
    405 HTTP method POST is not supported by this URL
    Thanks!

    Just post your question once and be patient:
    http://forum.java.sun.com/thread.jspa?threadID=573890
    %

  • GET is not supported by this URL

    I have created a simple droplet and I tried to see output in my jsp page.
    But I am getting bellow message with blank page - "GET is not supported by this URL"
    I am new to ATG :)
    Looking for any help.....
    Thnx in Adv.!!!!
    Rajib

    I think u r placed super.service() method in ur code.. Pls remove that one.. it wil work fine.

  • POST method not supported by this URL

    Hello gentlemen,
              We are trying to migrate our servlets from another Web Application
              Server (IBM WebSphere 2.02) to Weblogic 4.5.1.
              A servlet that did work fine with WebSphere, now produces the "POST
              method not supported by this URL" error under Weblogic.
              Of course, we implement doPost method in our servlet.
              Any idea to fix this problem? thank you.
              emanuele
              

              Emanuele--
              In the ICSessionServlet file you are posting the data to ICIdentification servlet which is
              again a servlet
              So you need to register this servlet in weblogic.properties file before you post something to
              this servlet.
              Also the way you are calling the servlet is totally wrong from weblogic standpoint
              You don't need to specify the package name in weblogic(this is OK in java web server) for e.g.
              icdoor.myservlet.session.ICIdentificationServlet.
              Because we are registering the servlet with full package name in properties file so we don't
              need to mention the package
              name here..
              Call the servlet in the following way or whichever way is suitable for you.
              Here is how i'm calling ICIdentificationServlet
              http://localhost:7001/ICIdentificationServlet
              Here is the output i'm getting after entering user name/password
              "Welcome Startfighter"
              Requested URL
              http://localhost:7001/Stupida
              Hope this helps
              Kumar
              emanuele wrote:
              > Here's the source code for a servlet producing "HTTP method POST is not
              > supported by this URL".
              >
              > I have registered servlet Stupida in the file weblogic.properties. This
              > servlet subclass the ICSessionServlet.
              > The service() method of ICSessionServlet ask for a userid and a password
              > (user and password are not verified, anyway) and then calls the doPost()
              > method of ICIdentification servlet. This one displays a sort of "Welcome
              > page" and then the calling URL. (if it works fine...).
              >
              > On WebSphere, it works. On Weblogic, it doesn't.
              >
              > Any idea?
              >
              > emanuele
              >
              > "Kumaraswamy A." wrote:
              >
              > > can you post the stacktrace , also if possible send your java file
              > > too!..
              >
              >
              

  • HTTP Method Post not supported by this URL

    We are running WL6.0sp1 on Win2000. When we try to open a JSP page which calls
    a servlet we get a "HTTP Method Post not supported by this URL". This same setup
    (WL 6.0sp1 on Win2000) on another machine works absolutely fine running from the
    same client. Is there any setup that needs to be done in Weblogic for this? Any
    pointers on this would be appreciated.
    Rgds

    Normally when you get this error, your username/password is not correct.
    It's not a clean way of errorhandling. I have had the same issue and after a while i noticed the password i entered was not correct.

  • HT1918 Everytime I try to purchase music I get.... Update payment method PayPal is not supported on this device.... Help!!!!

    I can't purchase songs any longer using ITunes. The message I receive is Paypal is not supported by this device. Problem with previous payment update acct info. ... I did update acct info! Help?????

    I had this same problem also.  The problem has to do with your credit card number associated with you iCloud account.  To solve this problem, you need to update your credit card/payment information by doing the following on your iPad / iPhone / iTouch:
         Settings > iCloud > click on your account > Payment Information
    Update this section with your correct credit card information and Save.

  • Unable to open iSync: "Not supported on this platform"

    Maybe it was the 10.5.5 upgrade, maybe not. Right now, when I click on iSync, I get an immediate popup saying "You can't open the application 'iSync' because it is not supported on this architecture. Well, it was a month ago. I use iSync to set the threshold of changes on my calendar that result in a confirmation notification. When I sync my iphone, I want to know if the sync process is changing more than 2 calendar events.
    Can anyone help me out?

    Thanks for taking the time to reply
    This is an Intel MacMini
    iSync was located in the Applications folder and has lived there all its life. I tried moving it to the desktop and then back to the Applications folder, like you suggested. I still get the "Not supported on this platform ..." message. I'll re-apply the 10.5.5 update in the morning.
    I agree that some apps hate to be removed from the Applications folder. I have tried to move some Apps to the Utilities folder unsuccessfully before.

  • Invalid key predicate error while running http method get via tcode /IWFND/MAINT_SERVICE

    Hi,
    I am facing an error which says "Invalid Key predicate"while running http method get via tcode /IWFND/MAINT_SERVICE.
    The same works fine for sdata .The SICF nodes are active.But when the url has odata it does not seem to work as expected .This is the url I am trying to execute.
    /sap/opu/odata/sap/QMLSINSPECTIONLOT/MATERIALDETAIL(MaterialNumber='1706',FROMDATE='20120303',TODATE='20120708')?$format=xml
    (does not work -error invalid predicate)
    /sap/opu/sdata/sap/QMLSINSPECTIONLOT/MATERIALDETAIL(MaterialNumber='1706',FROMDATE='20120303',TODATE='20120708')?$format=xml(works fine)
    Could you help me with this error?
    Regards,
    Ann

    Ann,
    FROMDATE is a date field? Then you need to specify while providing value.
    Example: Check it here.
    How to use OData Date filter query to filter data from OData NetWeaver Gateway Service?
    Thanks
    Krishna

  • TS3274 Every time I try to play Amazon video on iPad, it shows "our Internet connection is currently using an HTTP proxy, content playbacks not supported when a proxy is configured". Though I can play it on iPhone which has same Internet connection. Plz h

    Every time I try to play Amazon video on iPad, it shows "our Internet connection is currently using an HTTP proxy, content playbacks not supported when a proxy is configured". Though I can play it on iPhone which has same Internet connection.
    Can any one please help?

    This helped me
    http://mashtips.com/amazon-instant-video-http-proxy-error-on-ipad/

Maybe you are looking for

  • Connecting a macbook to a W2K PC

    First experience with Mac (since college 20+ years ago). Purchased for my wife's birthday. Having terrible experience with networking (have Linksys B router). Airport is fickle but I can get it to work at times (many calls to AppleCare). What I'm loo

  • How can I use a bluetooth remote to pause a video on Keynote?

    I used to use a bluetooh remote to pause videos on Keynote during my presentations.  However, since the Keynote update to 6.2 I am no longer able to do it and it was a very helpful tool for me.  I use the Satechi bluetooth remote GBR-100 for that.  I

  • Erro display allocation in G/L account line items by FBL3

    Helllo I changed the line layout that add vendor no. and allocation field to dislpaly line items in FBL3, the vendor no. is displayed ok as the "2****",but the allocation is displayed that "00002***" as same as the vendor no. ,and when I double click

  • How do i get rid of the ipad 2 tester virus on facebook?

    A few days ago I was using the Facebook app on my iPhone 4 and noticed that I had a picture of an iPad 2 in my Wall Photos... turns out that I had 85 copies of the same picture! All of them had captions about being a tester for the iPad 2. I immediat

  • Calendar, Reminders, Contacts do not sync

    Calendar, Reminders, Contacts do not sync w my iPad. However, other apps do sync (i.e. mail, bookmarks etc.). Calendar, Reminders, Contacts are turned on in iPad as well as in iMac.