Securing web service

Ask a Question related to ASP.NET Web Services, Design and Development.

  1. #1

    Default Securing web service

    Hi

    How can I make sure that no one else can call and receive data from my web
    methods?

    Thanks

    Regards


    John Guest

  2. Similar Questions and Discussions

    1. Securing the CF administrator
      I'm looking for a way to better secure the CF administrator, which comes up at http://www.domain.com/cfide/administrator/index.cfm because of the...
    2. Securing Database & DSN
      Here is my situation: I am using Access, IIS & OBDC to connect to my databases. Is there a way to secure certain databases (namely the ones with...
    3. Securing a web service
      Hi. Whats the best practice to secure a webserivce, basically I have already secured the webservice with XHEO however I need the webservice to...
    4. Securing response send back by Web Service
      I am looking at samples that come along with WSE 2.0 but I cannot find any example that shows how to secure the response that is send by the...
    5. Securing MDBs
      I've got a webserver, IIS6, and an ASP application running on that server. The ASP validates users by their logon name so for this particular...
  3. #2

    Default Re: Securing web service

    Turn the server off.

    "John" <john@nospam.infovis.co.uk> wrote in message
    news:#seUmHsaEHA.556@tk2msftngp13.phx.gbl...
    > Hi
    >
    > How can I make sure that no one else can call and receive data from my web
    > methods?
    >
    > Thanks
    >
    > Regards
    >
    >

    Dale Guest

  4. #3

    Default Re: Securing web service

    That was a nice joke. LOL.

    Well, I assume that you don't want to give access to your webservice to the
    unauthorized users.

    1.Use sessions in your web methods in application layer
    2.Use SSL in transport layer

    More can be found under
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetsec/html/SecNetch10.asp[/url]
    [url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpguide/html/cpconUsingSOAPHeaders.asp[/url]

    Regards,
    R.Balaji


    "Dale" <daleDeletepres@msndotcomNot.Net> wrote in message
    news:uaTc4XsaEHA.4048@TK2MSFTNGP10.phx.gbl...
    > Turn the server off.
    >
    > "John" <john@nospam.infovis.co.uk> wrote in message
    > news:#seUmHsaEHA.556@tk2msftngp13.phx.gbl...
    > > Hi
    > >
    > > How can I make sure that no one else can call and receive data from my
    web
    > > methods?
    > >
    > > Thanks
    > >
    > > Regards
    > >
    > >
    >
    >

    R.Balaji Guest

  5. #4

    Default Re: Securing web service

    You could only send the wsdl defining your service to the people who are
    entitled to use it, i.e. Don't publish the WSDL which would include endpoint
    details etc.

    Additionally you could look at implementing WS-Security frim MS. This would
    validate any user who tried to use your service. The implementation is very
    straightforward..


    Search for "WS-Security Authentication and Digital Signatures with Web
    Services Enhancements" in msdn.


    "John" <john@nospam.infovis.co.uk> wrote in message
    news:%23seUmHsaEHA.556@tk2msftngp13.phx.gbl...
    > Hi
    >
    > How can I make sure that no one else can call and receive data from my web
    > methods?
    >
    > Thanks
    >
    > Regards
    >
    >

    John Jenkins Guest

  6. #5

    Default Re: Securing web service

    I've always put a username / password params in each of my web methods. I
    then validate the user on each method call, and THEN do the real work of the
    web method.

    You can authenticate that username / password against a hardcoded value, a
    database value, or a web.config value.

    Michael

    "John" <john@nospam.infovis.co.uk> wrote in message
    news:%23seUmHsaEHA.556@tk2msftngp13.phx.gbl...
    > Hi
    >
    > How can I make sure that no one else can call and receive data from my web
    > methods?
    >
    > Thanks
    >
    > Regards
    >
    >

    Michael Pearson Guest

  7. #6

    Default Re: Securing web service

    John wrote:
    > How can I make sure that no one else can call and receive data
    > from my web methods?
    Rather than hardcoding security logic into your applications
    (as described in separate answers in this thread) you can use
    a separate SOAP Firewall that allows you to

    - integrate security transparently (i.e. without modifying
    application code) even in multi-vendor deployments

    - manage your security policies centrally, using a professional
    admin console GUI

    You may want to take a look at Xtradyne's WS-DBC (Domain Boundary
    Controller), which delivers comprehensive security and enterprise-
    grade performance. See [url]http://www.xtradyne.com[/url] for more info.

    Regards, Gerald.
    --
    Dr. Gerald Brose mailto:brose@xtradyne.com
    Xtradyne Technologies [url]http://www.xtradyne.com[/url]
    Schoenhauser Allee 6-7, Phone: +49-30-440 306-27
    D-10119 Berlin, Germany Fax : +49-30-440 306-78
    Gerald Brose Guest

  8. #7

    Default Re: Securing web service

    Your username/password can be viewed by attacker, if your transport is HTTP.
    Then he can do something else after obtain username/password. He can also
    changed the request message with know what's the meaning of original message,
    withoud detected by your web service. Best way is to go with SSL using client
    certificate as security token, to encrypt and sign message. search WSE in
    MSDN.

    "Michael Pearson" wrote:
    > I've always put a username / password params in each of my web methods. I
    > then validate the user on each method call, and THEN do the real work of the
    > web method.
    >
    > You can authenticate that username / password against a hardcoded value, a
    > database value, or a web.config value.
    >
    > Michael
    >
    > "John" <john@nospam.infovis.co.uk> wrote in message
    > news:%23seUmHsaEHA.556@tk2msftngp13.phx.gbl...
    > > Hi
    > >
    > > How can I make sure that no one else can call and receive data from my web
    > > methods?
    > >
    > > Thanks
    > >
    > > Regards
    > >
    > >
    >
    >
    >
    Tony Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139