Passing User and password between two webservices ?

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

  1. #1

    Default Passing User and password between two webservices ?

    We have a solution where we access one webservice trough asp.net form.
    than the first webservice access the second webservice.
    In the first webservice I can get the user-identity but from the second
    webservice
    i donīt. The authenticated access on the webservice is configured:
    "Intergrated Windows authentication"
    Iīve tried with CachCredential without success.

    How can I solve this. I donīt want to send the user as parameter to the
    webservice.

    Regards

    /glenn


    glenn h Guest

  2. Similar Questions and Discussions

    1. Need javascript/VB code to open passwordprotected PDF file by passing password in codeitself.
      Hi, I have used PDFcreator to create the PDF file with password security 'To create PDF file with password security With PDFCreator1 ...
    2. Pls Help : WINNT user/Anonymous login error in Webservices ?
      Hi, am using Sqlserver as a database which connects thru WINNT Authentication. I wrote a simple webservice which has 2 public functions ,one...
    3. Passing user and password between two webservice ?
      We have a solution where we access one webservice trough asp.net form. than the first webservice access the second webservice. In the first...
    4. Passing XML Strings to Webservices - a bad practice?
      Hi there, when I design webservices, I usually pass simple data container types to the webservice (one or several objects containing primitive...
    5. HELP! Passing from database to asp page allowing user input then passing to another database.
      My big problem is I'm a newbie working with someone else's code.(See code below) What I want to do is for the records that have a purchase order...
  3. #2

    Default Re: Passing User and password between two webservices ?

    Glenn-

    If I understand your scenario correctly a winForm application (say machine
    A) calls first Web Service (say running on machine B) which intern calls
    another Web Service (say running on Machine C). Both the web services are
    configured to use "Intergrated Windows authentication".



    Impersonating winForms application user in second web service is not
    possible unless the machine, on which your first Web Service (machine B) is
    running, is marked for delegation.



    1. The simplest thing would let the client call both these
    web services separately.

    2. Pass user name along with other application data to the
    second web service (optionally encrypting with a symmetric key, well storing
    the key comes into play now)






    "glenn h" <glenn.hafstrom@invalid> wrote in message
    news:eBgPS5wlDHA.2404@TK2MSFTNGP12.phx.gbl...
    > We have a solution where we access one webservice trough asp.net form.
    > than the first webservice access the second webservice.
    > In the first webservice I can get the user-identity but from the second
    > webservice
    > i donīt. The authenticated access on the webservice is configured:
    > "Intergrated Windows authentication"
    > Iīve tried with CachCredential without success.
    >
    > How can I solve this. I donīt want to send the user as parameter to the
    > webservice.
    >
    > Regards
    >
    > /glenn
    >
    >

    Ram Sunkara [msft] 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