up vote 2 down vote favorite
share [g+] share [fb]

I've developed a web service with Form based authentication as below.

1.An entry in web.config as below.

<authentication mode="Forms">
<forms loginUrl="Loginpage.aspx" name=".AuthAspx">
</forms>
</authentication>
<authorization>
<deny users="?"/>
</authorization>

<authentication mode="Forms">

<forms loginUrl="Loginpage.aspx" name=".AuthAspx"/></authentication>

<authorization><deny users="?"/> </authorization>

2.In Login Page user is validate on button click event as follows.

if (txtUserName.Text == "test" && txtPassword.Text == "test")

        {

            FormsAuthenticationTicket ticket = new FormsAuthenticationTicket(1, // Ticket version

                txtUserName.Text,// Username to be associated with this ticket

                DateTime.Now, // Date/time ticket was issued

                DateTime.Now.AddMinutes(50), // Date and time the cookie will expire

                false, // if user has chcked rememebr me then create persistent cookie

                "", // store the user data, in this case roles of the user

                FormsAuthentication.FormsCookiePath); // Cookie path specified in the web.config file in <Forms> tag if any.

            string hashCookies = FormsAuthentication.Encrypt(ticket);

            HttpCookie cookie = new HttpCookie(FormsAuthentication.FormsCookieName, hashCookies); // Hashed ticket

            Response.Cookies.Add(cookie);

            string returnUrl = Request.QueryString["ReturnUrl"];

            if (returnUrl == null) returnUrl = "~/Default.aspx";

            Response.Redirect(returnUrl, false);

        }

3.Webservice has a default webmethod.

[WebMethod]

    public string HelloWorld()

    {      

            return "Hello World";            

    }

4.From a webApplication I am making a call to webservice by creating proxy after adding the webreferance of the above webservice.

          localhost.Service1 service = new localhost.Service1();           


            service.Credentials = ystem.Net.CredentialCache.DefaultNetworkCredentials;;


            string hello = service.HelloWorld();

            Response.Write(hello);

and here while consuming it in a web application the below exception is thrown from webservice proxy.

-- Object moved

Object moved to here.

link|improve this question

40% accept rate
That's been IIS config or partial deployment problems for me before – Tahbaza Jul 29 '10 at 12:24
Hi Tahbaza thanks for replying...not got what you mean by iis config?? when I change authentication from Forms to Windows it work fine :( – BreakHead Jul 29 '10 at 13:04
feedback

1 Answer

You have to specifically allow access to the login page or nobody can read it who isn't already logged in.

See ASP.NET Authorization - <deny users="?"/> denies all anonymous users.

link|improve this answer
Ooops, this thread is really old - sorry for bumping it. – Chuck Savage Apr 4 '11 at 19:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.