Secure Webservice?

Posted by cam on Stack Overflow See other posts from Stack Overflow or by cam
Published on 2010-05-07T21:51:46Z Indexed on 2010/05/07 21:58 UTC
Read the original article Hit count: 148

Filed under:
|

I'm trying to create a secure webservice (that provides simple database data) with PHP that can be connected to through my Silverlight application. I don't know enough about PHP to be able to see another way to do this.

The webservice should only be accessible through the client, and only with the proper username/password.

The only two ways I can imagine to do this would be by passing the username/password hash via URL, or use a "hidden form" and do it via POST_.

I'm just trying to get past this point, I'm the sole developer on this project and I'm just trying to get past this PHP webservice part so I can get back to being an application programmer :)

Normally, I would learn PHP, but I'm on the clock, so I'm just looking for a point in the right direction on how to achieve this!

© Stack Overflow or respective owner

Related posts about php

Related posts about webservice