HTTP 405 Method Not allowed

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Manikgisl
    New Member
    • Oct 2008
    • 37

    HTTP 405 Method Not allowed

    we are trying to upload a file

    [code=cpp]
    using System;
    using System.Drawing;
    using System.Collecti ons;
    using System.Componen tModel;
    using System.Windows. Forms;
    using System.Data;
    using System.Net;

    namespace WindowsApplicat ion3
    {
    /// <summary>
    /// Summary description for Form1.
    /// </summary>
    public class Form1 : System.Windows. Forms.Form
    {
    private System.Windows. Forms.Button button1;
    /// <summary>
    /// Required designer variable.
    /// </summary>
    private System.Componen tModel.Containe r components = null;

    public Form1()
    {

    InitializeCompo nent();


    }

    /// <summary>
    /// Clean up any resources being used.
    /// </summary>
    protected override void Dispose( bool disposing )
    {
    if( disposing )
    {
    if (components != null)
    {
    components.Disp ose();
    }
    }
    base.Dispose( disposing );
    }

    #region Windows Form Designer generated code
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeCompo nent()
    {
    this.button1 = new System.Windows. Forms.Button();
    this.SuspendLay out();
    //
    // button1
    //
    this.button1.Lo cation = new System.Drawing. Point(104, 96);
    this.button1.Na me = "button1";
    this.button1.Ta bIndex = 0;
    this.button1.Te xt = "button1";
    this.button1.Cl ick += new System.EventHan dler(this.butto n1_Click);
    //
    // Form1
    //
    this.AutoScaleB aseSize = new System.Drawing. Size(5, 13);
    this.ClientSize = new System.Drawing. Size(292, 273);
    this.Controls.A dd(this.button1 );
    this.Name = "Form1";
    this.Text = "Form1";
    this.ResumeLayo ut(false);

    }
    #endregion

    /// <summary>
    /// The main entry point for the application.
    /// </summary>
    [STAThread]
    static void Main()
    {
    Application.Run (new Form1());
    }

    private void button1_Click(o bject sender, System.EventArg s e)
    {
    fnUpload();
    }
    public void fnUpload()
    {
    try
    {
    WebClient Client = new WebClient();
    //Client.UploadFi le("http://www.csharpfrien ds.com/Members/index.aspx", "c:\wesiteFiles \newfile.aspx") ;
    Client.UploadFi le("http://10.100.7.143/OETAdminWebServ ice/123.zip", "C:\\123.zi p");


    }
    catch(Exception ex)
    {
    MessageBox.Show (ex.Message);
    }
    }
    }
    }[/code]
    while download its works

    but upload is not working throwing an exception

    HTTP 405 Method not allowed


    we are change settings but its not working


    thanks in advance

    Happy New Year

    With Regards,
    Mani
    Last edited by Frinavale; Dec 30 '08, 09:06 PM. Reason: added [code] tags
  • kenobewan
    Recognized Expert Specialist
    • Dec 2006
    • 4871

    #2
    Not sure why you posted to IIS forum? Looks like a coding problem, try debugging.

    Comment

    • Frinavale
      Recognized Expert Expert
      • Oct 2006
      • 9749

      #3
      A 405 error indicates:

      The method specified in the Request-Line is not allowed for the resource identified by the Request-URI.

      Check to make sure that you are allowed to access the resource:
      "http://10.100.7.143/OETAdminWebServ ice/123.zip"


      Also, if the underlying request does not use HTTP or POST, the request for the resource is not understood by the server and a WebException is thrown with the Status property set to indicate the error.


      So, make sure that the underlying request uses HTTP and POST.
      For example:
      [code=cpp]
      String uriString = "http://10.100.7.143/OETAdminWebServ ice/123.zip";
      String fileName = "C:\\123.zi p";
      String method = "POST";

      // Upload the file to the URL using the HTTP 1.0 POST.
      byte[] responseArray = Client.UploadFi le(uriString, method, fileName);

      [/code]


      -Frinny

      Comment

      Working...