Introduction: In this article,i am going to explain about how to authenticate web service into a particular client machine without using userid/password (stored in database). Main: Normally we know in windows/password based authentications we are using ip addess for validating windows account. so here also i tried the same ip address approach for authenticating particular [...]
Category Archives: WEB SERVICES
How to authenticate a particular user machine in web services without using Userid&Password Authentication
Posted by on June 26, 2010
12 comments
Creating Managing Transactions in Web services
Posted by on June 14, 2010
1 comment
Introduction: In this article,i am going to explain about how to do transactions in web services using Webmethod.Transactionoption property. Main: we can easily manage tranctions using webmethod.transaction property, [WebMethod(TransactionOption= TransactionOption.RequiresNew)] It Indicates that the XML Web service method requires a new transaction. When a request is processed, the XML Web service is created within a [...]