Click here to Skip to main content
15,897,704 members
Home / Discussions / Web Development
   

Web Development

 
GeneralRe: Making sure that only MYapplication can using MY webservice? Pin
Cormac M Redmond1-May-07 4:26
Cormac M Redmond1-May-07 4:26 
GeneralRe: Making sure that only MYapplication can using MY webservice? Pin
kubben1-May-07 4:32
kubben1-May-07 4:32 
QuestionATLAS.NET Pin
Bhupendra Rana1-May-07 0:03
Bhupendra Rana1-May-07 0:03 
QuestionFTP Error, 550 Error code Pin
btsrinath30-Apr-07 10:32
btsrinath30-Apr-07 10:32 
AnswerRe: FTP Error, 550 Error code Pin
Bradml1-May-07 1:14
Bradml1-May-07 1:14 
GeneralRe: FTP Error, 550 Error code Pin
btsrinath1-May-07 5:15
btsrinath1-May-07 5:15 
QuestionMaking sure that only MYapplication can using MY webservice? Pin
Cormac M Redmond30-Apr-07 10:02
Cormac M Redmond30-Apr-07 10:02 
AnswerRe: Making sure that only MYapplication can using MY webservice? Pin
kubben30-Apr-07 14:15
kubben30-Apr-07 14:15 
It helps if your webservice isn't exposed at all. That means get rid of all disco file on your web server.

In your web.config you can add this code:
<webServices>
<protocols>
<remove name="HttpPost" />
<remove name="HttpGet" />
</protocols>
</webServices>
That causes your webservice to only allow soap protocols. This means if you access your asmx file you would see links you can click.

Finally, you could have your application pass some sort of key into each request. Of course, if you don't use ssl the data could always be read. I think if you webservice isn't exposed through disco files and it rejects http protocol you probably have 90%. To go the whole way you would have to have ssl and some sort of key.

Hope that helps.
Ben
GeneralRe: Making sure that only MYapplication can using MY webservice? Pin
Cormac M Redmond30-Apr-07 16:23
Cormac M Redmond30-Apr-07 16:23 
GeneralRe: Making sure that only MYapplication can using MY webservice? Pin
kubben1-May-07 2:48
kubben1-May-07 2:48 
GeneralRe: Making sure that only MYapplication can using MY webservice? Pin
Cormac M Redmond1-May-07 3:45
Cormac M Redmond1-May-07 3:45 
GeneralRe: Making sure that only MYapplication can using MY webservice? Pin
kubben1-May-07 3:50
kubben1-May-07 3:50 
GeneralRe: Making sure that only MYapplication can using MY webservice? Pin
Cormac M Redmond1-May-07 4:15
Cormac M Redmond1-May-07 4:15 
GeneralRe: Making sure that only MYapplication can using MY webservice? Pin
kubben1-May-07 4:20
kubben1-May-07 4:20 
GeneralRe: Making sure that only MYapplication can using MY webservice? [modified] Pin
Cormac M Redmond30-Apr-07 16:48
Cormac M Redmond30-Apr-07 16:48 
GeneralRe: Making sure that only MYapplication can using MY webservice? Pin
kubben1-May-07 3:26
kubben1-May-07 3:26 
AnswerRe: Making sure that only MYapplication can using MY webservice? Pin
Bradml1-May-07 1:12
Bradml1-May-07 1:12 
GeneralRe: Making sure that only MYapplication can using MY webservice? Pin
Cormac M Redmond1-May-07 3:45
Cormac M Redmond1-May-07 3:45 
GeneralRe: Making sure that only MYapplication can using MY webservice? Pin
DavidNohejl1-May-07 4:29
DavidNohejl1-May-07 4:29 
GeneralRe: Making sure that only MYapplication can using MY webservice? Pin
Cormac M Redmond1-May-07 4:46
Cormac M Redmond1-May-07 4:46 
QuestionHow to use IE on Pocket PC 2003 SE Emulator...? Pin
Edmundisme30-Apr-07 9:49
Edmundisme30-Apr-07 9:49 
QuestionRICHTEXT CONTROL? - ASP.NET / AJAX Pin
hifiger200430-Apr-07 4:26
hifiger200430-Apr-07 4:26 
AnswerRe: RICHTEXT CONTROL? - ASP.NET / AJAX Pin
totig30-Apr-07 4:32
totig30-Apr-07 4:32 
GeneralRe: RICHTEXT CONTROL? - ASP.NET / AJAX Pin
hifiger200430-Apr-07 5:07
hifiger200430-Apr-07 5:07 
GeneralRe: RICHTEXT CONTROL? - ASP.NET / AJAX Pin
totig30-Apr-07 5:17
totig30-Apr-07 5:17 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.