Calling web service over HTTPS

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

  1. #1

    Default Calling web service over HTTPS

    I'm trying to call a web service method over HTTPS. However the
    certificate installed on the web server has the load-balanced dns name
    of the whole web farm. I need to call the web service on a specific
    machine. If I manually use a browser with the url that I
    programmatically use, I get a warn about mismatching name but I can
    continue and everything is fine. However programmatically I receive an
    error, how can I tell system to continue?

    Ryan Stevens Guest

  2. Similar Questions and Discussions

    1. How to access a HTTPS service from a SWF?
      The Flash Player 9 Security Whitepaper says "By default, content loaded with a protocol other than HTTPS cannot access content that was loaded with...
    2. Calling web service over https with CFMX 7
      We are running CFMX 7 on a Solaris server. We are trying to call a web service using cfinvoke. The developer of the web service has provided us...
    3. Using HTTPS with LWP::UserAgent = Bad Service
      Hi all, I'm trying to access https://www.nodeworks.com/ through a proxy which requires a proxy username and password. The code I have is as...
    4. WebException while calling Web Service over HTTPS...
      I'm having an issue calling a Web Service (This is an 3rd party Web Service and I have no control/access to it) via HTTPS. We have talked to the...
    5. Calling a web service over HTTPS?
      Hi Does anyone have any advice/information with regards to calling a web service that will be hosted on a server running HTTPS. Are there any...
  3. #2

    Default Re: Calling web service over HTTPS

    Although I have not done this it doesn't surprise me.
    Presumably the web service is installed on all web servers in the web farm.
    And presumably you are accessing the site with a through DNS.
    And presumably you are accessing the site over HTTPS because you want the
    data encrypted and also you want to know that you are genuinely talking to
    the correct server and someone has not spoofed them. All the normal reasons.

    It's like saying I want a web farm but I don't. I'd figure out why you want
    to go to one particular server. Perhaps there is an approach that is wrong
    having your web service in a secure web farm has many benefits.

    Just out of interest, if you are browsing the web service how do you know
    you are at a specific machine and why do you get the errors? Is it because
    you are using the IP address rather that the DNS for the site?

    If you tell me more as to why you want to go to a specific machine I may be
    able to help further.

    Ben

    "Ryan Stevens" <ryan.stevens@solidstore.co.uk> wrote in message
    news:u5tngvcb6iubahbjcjm8s9re9mcumq9ord@4ax.com...
    > I'm trying to call a web service method over HTTPS. However the
    > certificate installed on the web server has the load-balanced dns name
    > of the whole web farm. I need to call the web service on a specific
    > machine. If I manually use a browser with the url that I
    > programmatically use, I get a warn about mismatching name but I can
    > continue and everything is fine. However programmatically I receive an
    > error, how can I tell system to continue?
    >

    Ben 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