Sunday, October 28, 2012

How to allow user to Run only specific Application in Windows 7

If you are a System Administrator of a Company and as your Company standard user can run only specified Application which is authorized, then your task is How to allow user to run Only Specified Application such as MS word , Internet Explorer , MS Excel and Notepad etc. Please follow the following step to do this : Open Group Policy Editor by typing "gpedit" in start menu's search bar as same as displaying in following image. Following...

Wednesday, October 3, 2012

Android Code for calling .NET web service

You need to declare 4 variable to call web service method OPERATION_NAME - name of method to call NAMESPACE - namespace SOAP_ACTION - particular methdo of specified namespace URL - URL of your web serivce Declare above variable as below : String OPERATION_NAME="HelloWorld"; String NAMESPACE="www.tempuri.org/"; String SOAP_ACTION=NAMESPACE+OPERATION_NAME; String URL="http://your-ip-address/your-application-nm(in .net)/Service.asmx"; *** Note ***:  in above statement instead your-ip-address you have to write your...

Tutorial of Android Web Service Application with VB .Net

Hello Friends, Today I am going to discuss with you that how to make web service in .NET and how to call it from android. You need following tools to develop application. Microsoft Visual Studio 2008 (to develop web methods) Internet Infomation Service (IIS 6 for Windows XP and IIS 7.5 for Win7) (virtual server) Android SDK (Min API Level-7) (to call web methods) Eclipse HELIOS KSOAP-android-2.5.2 jar file (it's a java class file which your have to include in your code. Step 1 : You need  Microsoft Visual Studio 2008 to develop web-service method....

Monday, October 1, 2012

How to Create Web Service in Microsoft Visual Studio 2008 in Windows7

Here I am going to explain you how to develop web service in Microsoft Visual Studio 2008. You need Internet Infomation Server (IIS) 7.5 as virtual server to run the web service. You can download IIS 7.5 from here. You need Dot Net Framework 3.5 to install IIS 7.5 You can download it from this link. Now to configure IIS you have to go in control panel - > Programs and Features -> Turn Windows Features on or off. Click on...