Gateway Server address and Certificate subject name do not match error on Vista client

RD Gateway server is 2012, RD Server is 2008 R2. Client is (currently) Vista Gold (surprised me too).
User was able to connect through the Gateway in the past, but seems to have broken around the time that we switched to a real wildcard SSL certificate. Prior to this, it was using a self issued cert.
I'm stalling for time (and hoping this fixes it) by having the user install the Vista Service Packs. Can anyone verify if this is what's causing the issue, or if I need to look at something else?

Hi,
Yes, updating should fix the issue--the old client versions didn't work properly with wildcard.  I recommend you have them install the latest version of the Remote Desktop Client for Vista which is RDP 7.0 capable:
Description of the Remote Desktop Connection 7.0 client update for Remote Desktop Services (RDS) for Windows XP SP3, Windows Vista SP1, and Windows Vista SP2
http://support.microsoft.com/kb/969084
-TP

Similar Messages

  • User account name and home directory name do not match

    A month ago I bought the latest iMac and used Migration assistant to migrate all of my data on over.
    Everything went well... Except that my new iMac would not let me use my old user name. I had to create somethign else.
    So my user (admin) account name is not the same as my Home directory name. (I only have 1 user account and 1 user Home directory... they both are named differently).
    This has not caused problems, but I want to iron this out. I tried using System Preferences/Users and groups to change my user account name to match the name of my home directory name (which has my old user name)... but when I did that it said "Name not available".
    Long time Mac user but I'm not comfortable doing anything deeper without some input & advice.
    Thanks in advance!

    I enable the Root user as outlined in the Apple Way instructions...logged out and loged in as the rooot user... but I really don't want to change the name of my user directory... That's the name I want to keep as a User.
    Even logged in as a Root User...
    I tried to change my current User Name to match by directory name, but it said Name is Not Available
    I also tried to create a new User name that matches my directory name...same results Name is Not Available
    Is there a sudo entry that will change the User to match my Directory name (which I want to keep and use)?
    Thank in advance!

  • Gethostbyaddr() and reverse DNS name do not match

    So we updated to 10.4.6 on our server... and now none of the clients can connect...
    Our DNS and reverse DNS (done by the university IT group) have caps in them... but all the home directories for users are lower case...
    How can I fix this - short of entering all home directory info in by hand? Oh - suggesting that the IT group change the DNS is not helpful as it will not happen.
      Mac OS X (10.4.6)   Server

    A summary - Here's the situation:
    1. I have a 10.4 server running on a G5 tower.
    2. The DNS is operated by the university IT group and our reverse DNS is mixed case... asked and they're not going to change it.
    3. 10.4.6 introduced some funky stuff with FQDN, DNS and case sensitivity issues.
    So... before I changed anything after the 10.4.6 update... users couldn't log in because it couldn't get their home directories...
    The automounter would be looking for:
    /Network/Servers/servername.Psychology.McMaster.CA/Users/username
    While if you looked in /Network/Servers/ you will see:
    /Network/Servers/servername.psychology.mcmaster.ca
    (note the case)
    Alright - moving on:
    4. Tried changing hostconfig HOSTNAME - only worked on local server (and you're not supposed to do this anymore).
    5. Used changeip same IP address, lower-case name to mixed case name... now users could log in.... glory!
    6. Argh... they can log in, but can only intermittently actually get their home directories... seriously. You log in, see your desktop and flash it's gone... clicking on your home directory or desktop in finder gets you 'The volume for "Desktop" cannot be found'... doing "cd ~" and then "ls" from a terminal window sometimes gets you your directory, a partial directory or an error... and even then the ownership maybe the user or root...
    7. Looking in the logs we see:
    May 25 14:48:26 client kernel[0]: AFP_VFS afpfs_unmount: /private/Network/Servers/servername.psychology.mcmaster.ca/Users, flags 524288, pid 490
    May 25 14:48:26 client kernel[0]: AFP_VFS afpfs_MountAFPVolume: GetVolParms failed 0x16
    May 25 14:48:26 client automount[490]: Can't mount servername.Psychology.McMaster.CA:/Users on /private/Network/Servers/servername.Psychology.McMaster.CA/Users: Invalid argument (22)
    May 25 14:48:26 client automount[490]: Attempt to mount /automount/Servers/servername.Psychology.McMaster.CA/Users returned 22 (Invalid argument)
    May 25 14:48:26 client automount[489]: Can't mount servername.Psychology.McMaster.CA:/Users on /private/Network/Servers/servername.Psychology.McMaster.CA/Users: Invalid argument (22)
    (server and client names changed to protect the guilty).
    I'm stumped... and it's to the point that the owner of said server (a staunch apple supporter) is asking if I can replace the server with a Linux box with LDAP/AFP/SMB...
    Any help here?

  • How to issue a self-signed certificate to match Remote Desktop Gateway server address requested

    I have an RDG server named gw.domain.local with port 3389/tcp forwarded from
    gw.example.com.
    Using RDGM snap-in I created a self-signed SSL certigicate with FQDN gw.example.com.
    But when I connect over RDP from outside the local network I'm getting an error:
    Your computer can't connect to the computer because the Remote Desktop Gateway server address requested and the certificate name do not match
    Because certificate subject name is gw.domain.local indeed.
    So there question is: how to issue a certificate properly, or how to assign an existing one the name to match?

    Hi,
    Thanks for your post in Windows Server Forum.
    The certificate error which you are facing seems like certificate mismatch error, something like the security certificate name presented by the TS Gateway server does not match the TS Gateway name. You can try reconnecting using the FQDN name of the TS Gateway
    server. You can refer below article for more troubleshooting.
    TS Gateway Certificates Part III: Connection Time Issues related to TS Gateway Certificates
    And for creating a SSL certificate for RD gateway, you can refer beneath articles.
    1.  Create a Self-Signed Certificate for the Remote Desktop Gateway Server
    2.  Obtain a Certificate for the Remote Desktop Gateway Server
    Hope it helps!
    Thanks,
    Dharmesh

  • How to pass KDC server address and REALM in Krb5LoginModule ??

    Hi All,
    I want to pass KDC server address and REALM in Krb5LoginModule() with using configuration file or command line options.
    I tried with initialize method of Krb5LoginModule() with passing KDC configuration parameters in sharedState.
    Map state = new HashMap();
    state.put("javax.security.auth.login.name", "user");
    state.put("javax.security.auth.login.password", "pass");
    state.put("java.security.krb5.realm", "TEST.COM");
    state.put("java.security.krb5.kdc", "kdc.test.com");
    Map options = new HashMap();
    options.put("debug", "true");
    options.put("tryFirstPass", "true");
    options.put("useTicketCache", "true");
    options.put("doNotPrompt", "true");
    options.put("storePass", "false");
    options.put("forwardable", "true");
    Krb5LoginModule login = null;
    try {
    login = new Krb5LoginModule();
    login.initialize(new Subject(), new TextCallbackHandler(), state, options);
    if(login.login()){
    login.commit();
    But i getting this exception:
    [root@localhost TEST]# java JaasAcn1
    Debug is true storeKey false useTicketCache true useKeyTab false doNotPrompt true ticketCache is null isInitiator true KeyTab is null refreshKrb5Config is false principal is null tryFirstPass is true useFirstPass is false storePass is false clearPass is false
    Acquire TGT from Cache
    Principal is null
    null credentials from Ticket Cache
    username from shared state is user
    username from shared state is user
    Exception in thread "main" java.lang.ClassCastException: java.lang.String
    at com.sun.security.auth.module.Krb5LoginModule.promptForPass(Krb5LoginModule.java:773)
    at com.sun.security.auth.module.Krb5LoginModule.attemptAuthentication(Krb5LoginModule.java:654)
    at com.sun.security.auth.module.Krb5LoginModule.login(Krb5LoginModule.java:503)
    at JaasAcn1.main(JaasAcn1.java:31)
    Please give some pointers to solve the problem.
    Thanks in advance.
    Regards,
    raj singh

    The exception
    Exception in thread "main" java.lang.ClassCastException: java.lang.String
    at com.sun.security.auth.module.Krb5LoginModule.promptForPass(Krb5LoginModule.java:773)
    at com.sun.security.auth.module.Krb5LoginModule.attemptAuthentication(Krb5LoginModule.java:654)
    at com.sun.security.auth.module.Krb5LoginModule.login(Krb5LoginModule.java:503)
    at JaasAcn1.main(JaasAcn1.java:31)clearly shows that your format for password is wrong in the shared state. String is evil, use char[] instead. Here it should be "pass".toCharArray().

  • How to find the Values of SAP Gateway Server Host  and Gateway Service Valu

    Hi All,
    I installed SAPR/3 4.7 EE on Windows. For configuring SLD and LDAP i am unable to give the SAP Gateway Server Host and Gateway Service values.
    Can any one plz suggest me how to find these values.
    Regds
    Phanikumar

    Hello, SAP Gateway Server Host and Gateway Service are used to set up rfc connectivity, that is the host name and the system number where your sld and ldap is responding, if you have no sld and no ldap , just simply uncheck that options while installing.
    Have a nice week end, Luciano.

  • "Back to my Mac isn't working properly because your DNS server isn't responding. Contact your ISP for an alternate DNS server address, and enter it in Network Preferences".

    Hi, i am trying to setup back to my mac at home but I get the error "Back to my Mac isn't working properly because your DNS server isn't responding. Contact your ISP for an alternate DNS server address, and enter it in Network Preferences".
    There is no documentation on how to solve this anywhere.
    I have an Arris router set to bridged mode which is connected to a 5th generation airport extreme. I have tried using the google dns servers instead of the one assigned by the cable company in the AE but I still get the same error.
    Any help would be much appreciated
    Kenneth

    New to BTMM, I got stung today with the silly DNS problem message. Solution:
    1) Flush DNS cache with:
    dscacheutil -flushcache;sudo killall -HUP mDNSResponder
    2)System preferences > iCloud > untick BTMM then tick it again. The warning should have disappeared.
    Edit #1
    Apologies for the noise. The warning has come back
    Edit #2
    Just found out that BTMM is not compatible with double NAT. That's not helpful.
    http://support.apple.com/kb/TS1208

  • The negotiation with the VPN server failed. Verify the server address and try reconnecting

    Hi folks,
    I am unable to connect VPN, While connecting error occurred. Can anyone advice how to solve this issue.
    "The negotiation with the VPN server failed. Verify the server address and try reconnecting"
    Thanks
    Vinoth

    This might help, at least from Harald's post onwards.

  • Error: Subject alternative name did not match site name (JavaME)

    When I try and connect to my RESTFul Web Service using SSL I get this exception:
    "Subject alternative name did not match site name".
    I did Google searches and as far as I can tell my 'Subject' matches my 'site name'. I know this because when I connect using my Browser (IE or Firefox) they say our SSL certificate is a-ok (no mismatches). Also, my Windows Mobile 5/6 REST application works fine under SSL. So, I am doubting it's a server side setting?
    Godaddy's root certificate is installed on the Java Emulator. If I disable the root cert I get a different error.
    I am using the QwertyDevice Emulator with 'identified_third_party' security. Wireless Toolkit 2.5.2 and NetBeans Mobility 6.0.1.
    My Web Server is IIS 6.0 that is hosting a WCF .NET 3.5 WebService using the webHttp binding (for those who don't know that's makes it a RESTFul Web Service).
    IIS 6.0 Settings:
    -Web Service is under Default Web Site and in Default Application Pool.
    -'Require secure channel (SSL)' is selected as well as 'Require 128-bit encryption'.
    Here is my client Code:
    InputStream is = null;
    HttpConnection conn = null;
    try
    conn = (HttpConnection)Connector.open("https://ourwebserver.ourdomain.com/RESTServer/Service.svc/REST/getmyopentasks/", Connector.READ_WRITE);
    conn.setRequestProperty("Authorization", "Basic " +
    BasicAuth.encode(userName, password));
    conn.setRequestMethod(HttpConnection.GET.toString());
    conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
    is = conn.openInputStream();
    catch (IOException ex)
    ex.printStackTrace();
    A few notes: We are using Basic HTTP Authentication, and "BasicAuth.encode" method is, a helper method, that I found code for out on the Internet. It works fine though.
    Because when I run this above code with SSL turned off, on the server, it works fine (authenticating and getting RESTFul XML back). I did try HttpsConnection as well. Did not work. Same SSL error.
    When this line is executed: "is = conn.openInputStream();" I get this exception: "Subject alternative name did not match site name". I have searched this forum and Google and can't figure this one out! Thanks!

    When I try and connect to my RESTFul Web Service using SSL I get this exception:
    "Subject alternative name did not match site name".
    I did Google searches and as far as I can tell my 'Subject' matches my 'site name'. I know this because when I connect using my Browser (IE or Firefox) they say our SSL certificate is a-ok (no mismatches). Also, my Windows Mobile 5/6 REST application works fine under SSL. So, I am doubting it's a server side setting?
    Godaddy's root certificate is installed on the Java Emulator. If I disable the root cert I get a different error.
    I am using the QwertyDevice Emulator with 'identified_third_party' security. Wireless Toolkit 2.5.2 and NetBeans Mobility 6.0.1.
    My Web Server is IIS 6.0 that is hosting a WCF .NET 3.5 WebService using the webHttp binding (for those who don't know that's makes it a RESTFul Web Service).
    IIS 6.0 Settings:
    -Web Service is under Default Web Site and in Default Application Pool.
    -'Require secure channel (SSL)' is selected as well as 'Require 128-bit encryption'.
    Here is my client Code:
    InputStream is = null;
    HttpConnection conn = null;
    try
    conn = (HttpConnection)Connector.open("https://ourwebserver.ourdomain.com/RESTServer/Service.svc/REST/getmyopentasks/", Connector.READ_WRITE);
    conn.setRequestProperty("Authorization", "Basic " +
    BasicAuth.encode(userName, password));
    conn.setRequestMethod(HttpConnection.GET.toString());
    conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
    is = conn.openInputStream();
    catch (IOException ex)
    ex.printStackTrace();
    A few notes: We are using Basic HTTP Authentication, and "BasicAuth.encode" method is, a helper method, that I found code for out on the Internet. It works fine though.
    Because when I run this above code with SSL turned off, on the server, it works fine (authenticating and getting RESTFul XML back). I did try HttpsConnection as well. Did not work. Same SSL error.
    When this line is executed: "is = conn.openInputStream();" I get this exception: "Subject alternative name did not match site name". I have searched this forum and Google and can't figure this one out! Thanks!

  • What's the reason for this message, "A server with the specified host name could not be found" ? I'm using iPhone 4s, 16gB, iOS 7.0.4

    I get a pop-up message saying "A server with the specified host name could not be found", whenever I try to access any streaming websites/apps or even WhatApp over Wi-Fi and I cannot access the specific THING for that moment, and I've tried switching Wi-Fi On and Off both in my Phone and also in the Router. I got an internet connection and a Wi-Fi router just before two days, and it's happening since. I got the internet speed around 80kbps and i can easily stream YouTube videos except sometimes, I receive that annoying message. I can't even browse the internet in Safari, which says "No Internet Connection"(Even though the Wi-Fi is connected), and I can access it after somewhile (say 10 minutes, it'll be perfectly alright). I use iPhone 4s. And everything about the internet connection is totally fine in my Computer, but not in my iPhone, as I've explained the issues, above. If there are any technical settings that I should change/modify, either on my computer(Windows 7 OS) or in my iPhone(iOS 7.0.4), PLEASE let me know
    I hope I've provided enough information for the reader to understand my point. (I apologize for my verbal mistakes, if there are )
    THANKS

    Hello Paneesh,
    Thank you for the details of the issue you are experiencing with Wi-Fi on your iPhone 4s.  I recommend the following steps:
    Be sure you're in range of your Wi-Fi router (access point).
    Tap Settings > Wi-Fi and turn Wi-Fi off and on. If your W-Fi setting is dimmed, follow these steps.
    Confirm that your Wi-Fi router and cable or DSL modem are connected to power, turned on, and connected to the Internet. If not, refer to your network administrator or Internet service provider (ISP) for assistance.
    Restart your iOS device.
    Tap Settings > Wi-Fi and locate the Wi-Fi network to which you're connected.
    Tap and Forget this Network.
    Try to connect to your desired Wi-Fi network.
    Note: You may need to enter your Wi-Fi password again if your network requires one.
    Turn your Wi-Fi router off and on2. If your ISP also provides cable or phone service, check with them before attempting this step to avoid interruption of service.
    Update your device to the latest version of software.
    Update your Wi-Fi router to the latest firmware2. For AirPort Base Stations, install updates using the AirPort Utility.
    If the issue is still unresolved Wi-Fi disconnects or signal strength is less than expected
    Move closer to the Wi-Fi router (access point).
    Check for sources of potential interference.
    Remove any case, stand, or other accessories from your iOS device and see if signal strength improves.
    Reset network settings by tapping Settings > General > Reset > Reset Network Settings. Note: This will reset all network settings including
    previously connected Wi-Fi networks and passwords
    recently used Bluetooth accessories
    VPN and APN settings
    You can find the full article here:
    iOS: Troubleshooting Wi-Fi networks and connections
    http://support.apple.com/kb/ts1398
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Server name is not displaying in Dropdown After client installation

    Server name is not displaying in Dropdown After client installation . what might be a issue

    Hi
    Depending upon the installation issue may be differ, so which SAP version and database version you have installed ?
    you can check
    1. Windows installer
    2  Sql Native client
    is installed or not.
    Thanks
    Kamlesh

  • I changed my email address and my user id will not update for icloud!

    Yes, I went into the Appleid and updated the email address there.  The problem?? Icloud on my Iphone 4! It does not allow you to change the User ID in settings! I've tried going to store and sign out and sign back in. Did not work! Has anyone else had this issue??

    If the old ID is an earlier version of your current ID, temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iDevice, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • I am trying to reset my apple id unmation onder icloud account infor the original pc that I signed in with...my phone is connected to the pc and I have made the change in email address and password but it will not register on my phone.

    I am trying to reset my apple id under icloud account information on the original pc that I set the account up.  I have changed email addresses now and would like to change to new address.  I have gone through the steps on changing apple id and password and have my phone hooked up to pc but it will not change over to the new address and password thus I can not order any apps or use icloud.  Help!

    Go to Settings, and then turn iMessage and FaceTime on if they are off.  If they are on, then turn them both off, restart the phone, then turn them back on.
    Go back to Settings > iCloud.  Whether the current or old email address is displayed there, try your current password.

  • Hi my sister has a ipod touch and she is tring to sign in to facetime and she has a email address and a password but its not working

    Hi my sister has a ipod touch and she is trying to sign in to FaceTime and she has a email address and a password but its not letting her sign.

    Try:
    iOS: Troubleshooting FaceTime and iMessage activation

  • I recently changed my email address and the app store will not let me use my new email.  I have my apple id under my new email address

    I recently changed my email address and the app store will not let me use my new email.  I have my apple id under my new email address.  Any Suggestions?

    1. Sign out of Apple ID (Settings>iTunes and App Store>Apple ID)
    2. Reboot
    3. Sign in with new email address

Maybe you are looking for

  • New X1 Carbon DRIVER_POWER_STATE_FAILURE Blue screen error

    Just got my new X1 Carbon (20A7-CTO1WW) for less than a week, experienced a blue sceen error of death today. System is running the pre-loaded Windows 7 Professional. System has been updated with all latest drivers and BIOS. Using BlueScrrenView, the

  • W530 WIN 8.1 upgrade Optimus NVidia driver failure

    Just upgraded to Win 8.1 and upgraded to the latest Optimus NVidia drivers.  Major failure.  On reboot, the screen remains blank, occasionally shows a small flashing image on a few pixels,lower left side of screen, occasionally shows the mouse pointe

  • Convert from VB to C

    I am trying to find the current users of an accesss db. I have found the following article but it is in VB. I need to use it in C#. The snipped convert site does not convert this so - I wonder if anyone can help.  It is lines 18 to 30 that are giving

  • Help with Network UI Element

    My application has a need for the Network UI Element. We've been able to get the element initialized however I don't know how to access the element. For example, I assigned an action to the NodeSelected, but when I select a node, the method is not ca

  • How can I reset my favoriets in icloud using pc?

    I have duplicate favoriets and I want to reset them. i didn't find a way to do it on a PC. tried to close iCloud on my pc icloud panel (uncheck favoriets)  and on my idevices, clean explorer favorites and check favoriets on the pc icloud panel aprrov