Distinguish between WebService and Windows App

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

  1. #1

    Default Distinguish between WebService and Windows App

    From inside a dotnet class library, is it possible to tell whether
    the dotnet application which called it is a web service, or a
    windows application ?

    Thanks,
    Stephen



    Stephen Ahn Guest

  2. Similar Questions and Discussions

    1. Does not distinguish between 2 sites on the same server
      HI All, I have 2 different websites running on IIS6. The 2 sites are located on two different partitions on the server. They both share the same...
    2. windows authentication (webservice security)
      I'm using a lan with domain server under win200, and, in the same network, but in an other machine, i've installed a webservice. This second server...
    3. CGI uses file size to distinguish between regular values and files
      I've been having a ton of problems handling file uploads with CGI.rb and after diving into the code, it looks like my woes can be narrowed down to...
    4. CGI uses file size to distinguish between regular values andfiles
      I'm using the CGI module for file upload - I think it works, it is just poorly documented. At least it works for me - I use it mainly for...
  3. #2

    Default Re: Distinguish between WebService and Windows App

    Only if the library is running in-process with the application. You could
    check for say an HTTP context being present, in which case the calling app
    would be a web application, but not necessarily a web service.

    --
    Manohar Kamath
    Editor, .netBooks
    [url]www.dotnetbooks.com[/url]


    "Stephen Ahn" <noaddress_at_noaddress.com> wrote in message
    news:uskkhRkcFHA.2984@TK2MSFTNGP15.phx.gbl...
    > From inside a dotnet class library, is it possible to tell whether
    > the dotnet application which called it is a web service, or a
    > windows application ?
    >
    > Thanks,
    > Stephen
    >
    >
    >

    Manohar Kamath 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