VNC not working in All Authenticated mode of User

Hello,
I have TMG installed in my environment through which user access filtered internet. A rule in which i have enabled URL filtration is in Authenticated mode of user and proxy address is also added in all internet explorer of user. when ever user try to VNC
a computer it says "connection timed out" and when i add " all user" instead of Authenticated mode in TMG rule. its is able to connect.

Hi,
if your force user / group authentication in Firewall Policy rules, the clients must be TMG clients for protocols other than HTTP and HTTPS:
http://technet.microsoft.com/en-us/library/bb794762.aspxThis guide is also valid for TMG and the ISA Firewall client is now called the TMG client
regards Marc Grote aka Jens Baier - www.it-training-grote.de - www.forefront-tmg.de - www.galileocomputing.de/3570

Similar Messages

  • InfoPath 2010 does not work in claims authentication mode on SharePoint 2010

    Hi everyone,
    I created an Infopath 2010 Forms published on a Claims-based authentication site collection. This form has an external datasource plugged on the
    _vti_bin/UserProfileService.asmx webservice (within the same site collection). This datasource is queried when the form opens. When I check this form with Infopath designer preview, everything works fine.
    But once this forms is published, an error "Error while trying to contact Web Service" occured when opening a new form.
    Here ere an extract of the logs:
    The following query failed: GetUserProfileByName (User: DOMAIN\username, Form Name: library, IP: , Connection Target: , Request: http://server/_layouts/FormServer.aspx?xsnLocation=http://server/library/forms/template.xsn?DefaultItemOpen=1&Source=http://server/page.aspx, Form ID: urn:schemas-microsoft-com:office:infopath:library:-myXSD-2010-01-12T23-08-28 Type: DataAdapterException, Exception Message: The remote server returned an error: (500) Internal Server Error.
    Server was unable to process request. ---> Attempted to perform an unauthorized operation.
    The remote server returned an error: (500) Internal Server Error.)
    Here is an extract of my IIS log:
    2010-11-25 13:45:30 fe80::b9ab:23d9:ff9e:bb23%11 POST /_vti_bin/userprofileservice.asmx - 50000 - fe80::b9ab:23d9:ff9e:bb23%11 InfoPathDA 500 0 0 41
    Additionnaly, you have to know :
    If we set the web application authentication mode in "Classic mode", everything work fine
    As soon as we set "Claim mode authentication", we reproduce the issue and this even if we are using a Windows integrated  account or an external account (SQL Memberships, Claims/AD)
    We reproduce this issue in different SharePoint FARM.
    It seems that this issue is generic with "Claims mode authentication" and i'm not shure that other forum can help us.
    How can I make this WebService works for my form?
    Thanks in advance.
    Seb Nicot

    I am not sure but a Code Solution might work ... I assume InfoPath 2010 is not Claims-Based aware.
    I am on SP1 and June 2011 CU but still had no luck
    If you only need the current user’s login name, then in the “FormEvents_Loading” event, you can retrieve the current user name with a call to the “Application.User.LoginName” property.  Here is an example:
            public void FormEvents_Loading(object sender, LoadingEventArgs e)
                XPathNavigator codeUserNameXPN = this.CreateNavigator().SelectSingleNode(
                    "/my:myFields/my:CodeRetrievedUserName", this.NamespaceManager);
                codeUserNameXPN.SetValue(this.Application.User.LoginName);
    OR ----------------
            public void FormEvents_Loading(object sender, LoadingEventArgs e)
                //A place to write the results
                XPathNavigator codeUserNameXPN = this.CreateNavigator().SelectSingleNode(
                    "/my:myFields/my:CodeRetrievedUserName", this.NamespaceManager);
                //codeUserNameXPN.SetValue(this.Application.User.LoginName);
                try
                    //ThresholdAuthentication is the web service reference to the
                    //https://test:24575/_vti_bin/authentication.asmx web service
                    GetUserName.ThresholdAuthentication.Authentication authenticationWS =
                        new GetUserName.ThresholdAuthentication.Authentication();
                    //Call the web service's Login method and pass the username and password of a site
                    //administrator so we have rights to read all user profiles
                    authenticationWS.Url = "https://test:24575/_vti_bin/authentication.asmx";
                    authenticationWS.CookieContainer = new System.Net.CookieContainer();
                    GetUserName.ThresholdAuthentication.LoginResult result = authenticationWS.Login(
                        "Admin", "Pa$$w0rd");
                    if (result.ErrorCode == GetUserName.ThresholdAuthentication.LoginErrorCode.NoError)
                        //If we authenticated correctly, then set up a call to the user profile service
                        //ThresholdUserProfileService is the web service reference to the
                        //https://test:24575/_vti_bin/userprofileservice.asmx web service
                        GetUserName.ThresholdUserProfileService.UserProfileService userProfileWS =
                            new GetUserName.ThresholdUserProfileService.UserProfileService();
                        //Pass the authentication cookies we got back from the authentication web service
                        userProfileWS.Url = "https://test:24575/_vti_bin/userprofileservice.asmx";
                        userProfileWS.CookieContainer = authenticationWS.CookieContainer;
                        //Try to find the user profile information of the current
                        GetUserName.ThresholdUserProfileService.PropertyData[] resultData =
                            userProfileWS.GetUserProfileByName(this.Application.User.LoginName);
                        //Enumerate through the properties
                        foreach (GetUserName.ThresholdUserProfileService.PropertyData property in resultData)
                            //Pick out the "AccountName" property and display it
                            if (property.Name == "AccountName")
                                codeUserNameXPN.SetValue(property.Values[0].Value.ToString());
                    else
                        //If we failed to authenticate properly, display the reason why
                        codeUserNameXPN.SetValue(result.ErrorCode.ToString());
                catch (System.Exception ex)
                    //If an exception occurred, report it.
                    codeUserNameXPN.SetValue(ex.Message);
    Note that in order for this code to work, you will need to make your form template fully-trusted in the “Security” section of the “Form Options” dialog, and then publish your form template to SharePoint as an Administrator-Approved form
    template

  • [svn] 1720: Bugs: LCDS-304 - Authentication not working in all cases when using security constraint with NIO endpoints .

    Revision: 1720
    Author: [email protected]
    Date: 2008-05-14 14:50:06 -0700 (Wed, 14 May 2008)
    Log Message:
    Bugs: LCDS-304 - Authentication not working in all cases when using security constraint with NIO endpoints.
    QA: Yes
    Doc: No
    Details:
    Update to the TomcatLoginCommand to work correctly with NIO endpoints.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/LCDS-304
    Modified Paths:
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

    Revision: 1720
    Author: [email protected]
    Date: 2008-05-14 14:50:06 -0700 (Wed, 14 May 2008)
    Log Message:
    Bugs: LCDS-304 - Authentication not working in all cases when using security constraint with NIO endpoints.
    QA: Yes
    Doc: No
    Details:
    Update to the TomcatLoginCommand to work correctly with NIO endpoints.
    Ticket Links:
    http://bugs.adobe.com/jira/browse/LCDS-304
    Modified Paths:
    blazeds/branches/3.0.x/modules/opt/src/tomcat/flex/messaging/security/TomcatLoginCommand. java

  • IGNORE this since I can not DELETE IT - Your browser does not support cookies, which are required for this web server to work in session authentication mode

    Error - No cookies
    Your browser does not support cookies, which are required for this web server to work in session authentication mode
    This is a NOSCRIPT PROBLEM and NOT a Firefox problem.......
    when disabled it works JUST FINE

    Error - No cookies
    Your browser does not support cookies, which are required for this web server to work in session authentication mode
    This is a NOSCRIPT PROBLEM and NOT a Firefox problem.......
    when disabled it works JUST FINE

  • After trying to update my iphone 5 to ios 7 via itunes my phone will not work at all, all i have is an itunes logo and cable logo on the screen HELP!!!!

    after trying to update my iphone 5 to ios 7 via itunes my phone will not work at all, all i have is an itunes logo and cable logo on the screen HELP!!!!

    you'll want to restore it using itunes and recovery mode
    http://support.apple.com/kb/ht1808

  • Since I have upgraded to Firefox 4.0.1, it has been constantly freezing up. Now it does not work at all and I am unable to remove my profile. How can I remove my profile if Firefox does not work?

    I finally got so tired of Firefox freezing my computer that I tried to uninstall and reinstall. Upon reinstall, it will not work at all and I am unable to delete my old user profile. Is there any way to get rid of this profile so I can give one last attempt to get Firefox to work before switching permanently to Google Chrome? I really liked Firefox for years until they screwed it up with the recent changes.

    Try running Firefox in [[Safe Mode]]. If it functions properly in that configuration, then one of your add-ons is the culprit.

  • TS3694 I tried updating my iPod, and ever since it has not worked at all. If I hold in the lock & home button, it will tell me to plug it into iTunes. Once I do that, it says it will restore but every time, restoring it fails. My iPod is not working at al

    I tried updating my iPod, and ever since it has not worked at all. If I hold in the lock & home button, it will tell me to plug it into iTunes. Once I do that, it says it will restore but every time, restoring it fails. My iPod is not working at all, and I really have no idea what to do. It is just a black screen, and occasionally the white apple will appear as if it were turning on, but it won't turn on. I just need some suggestions on what to do!

    Try:
    - iOS: Not responding or does not turn on
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iPod fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar

  • I have just recently installed ios6 to my iPad 3 an iPhone 4 my iPhone works fine but my iPad is not working at all I can not get a response from it, it seemed to download an then install but did not reset and turn on and will not turn on HELP!! Withdrawa

    I have just recently installed ios6 to my iPad 3 an iPhone 4 my iPhone works fine but my iPad is not working at all I can not get a response from it, it seemed to download an then install but did not reset and turn on and will not turn on HELP!! Withdrawal or what!! Lol

    Hi there,
    Firstly, try a hard reset. Hold the sleep/wake and home buttons together until the Apple logo appears.
    If this doesn't work, try restoring your device. Put it in recovery mode if iTunes doesn't recognise it, and restore it from there. I have linked to instructions below.
    Recovery Mode and Restore - Apple
    Let me know if this helps,
    Nathan

  • TS2771 what to do my ipod touch 4g is updated to ios6 now it has a white scren and wont turn off and to top it off the homebutton does not work at all

    what to do my ipod touch 4g is updated to ios6 now it has a white scren and wont turn off and to top it off the homebutton does not work at all please help me

    Try:
    - iOS: Not responding or does not turn on
    -When it says place the iPod in recovery mode use this program instead of the buttons.
    RecBoot: Easy Way to Put iPhone into Recovery Mode
    - If not successful and you can't fully turn the iPod fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - If still not successful that indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar

  • Workflows Do Not Start - "Not Supported in Windows Authentication Mode"

    I have a publishing site that is using Kerbos authentication.  Everything on the site works fine.
    I created a simple workflow in SPD 2013 and published this to the site without any problems.  However when I try to start the workflow with the account of a user who is a member of the site it will not run.  In the browser an alert pop's up
    saying "Something went wrong.  To try again, reload the page and then start the workflow again".
    In the SharePoint log's I find the following:
    SharePoint Server              Workflow Services              aj5oh Exception  System.NotSupportedException: Not supported
    in Windows authentication mode.     at Microsoft.SharePoint.IdentityModel.SPIdentityContext.Create(SPUserToken token, Boolean isShareByLinkGuestUser)     at Microsoft.SharePoint.WorkflowServices.WorkflowServiceContextExtensions.GetApplicationUserCredentials(WorkflowServicesContext
    context) StackTrace:  at Microsoft.Office.Server.Native.dll: (sig=1f86b0bf-2440-4b16-9099-860a571153c2|2|microsoft.office.server.native.pdb, offset=131CE) at Microsoft.Office.Server.Native.dll: (offset=21C85) 799af29b-db87-0034-c938-8a35e4082ffc
    This is a dev environment where everthing is setup on a single box, and I registered the workflow service in HTTP mode (which I allowed during the installation of workflow manager).
    Any ideas on what the problem might be?
    Thanks,
    Richard

    You haven't changed it to Claims there, you have changed NTLM to Kerberos. I guess your web app was already claims based because in SP 2013 we have to use Powershell to convert classic to claims and not from GUI.
    When I click the workflow on a item to start in manually I get the error:
    "Something went wrong. To try again, reload the page and then start the workflow"
    In ULS I get the not supported exception.
    It seems 2013 platform workflows aren't supported in classic mode web applications:
    http://sharepointconnoisseur.blogspot.co.uk/2012/11/sharepoint-2013-upgrade-preparation-to.html
    But I am not able to publish 2010 mode workflows in the classic web application, SPD 2013 throws error while publishing:
    "Unexpected error on server, wf cannot be associated"
    So does Infopath while publishing on to a list in that web application:
    -- The opinions expressed here represent my own and not those of anybody else -- http://manojvnair.blogspot.com

  • It seems I am installing add-ons ie, ebay sidebar, tweetbeat firsthand, they look installed in the add-on box but are not working at all?

    I can go to tools, add ons and choose the add on I want and install it, then restart firefox but although the new add ons show up in the add on list nothing is there, they are not working at all, I am able to click on and change the options but apart from the new add ons do not appear to be there?

    Hi,
    I actually have the same exact problem with southwest.com. I think they use AJAX to load the airport cities when you're choosing a flight, perhaps. Normally, when you click the box (or start to type a city) in the "From" box, it pops up a list of airports in a floating box (not a separate browser window). Since upgrading to Firefox 3.6.15, this just doesn't work, and it also keeps me from using southwest.com in general. The calendar links for the departure and return dates are similarly busted.
    I tried restarting in Safe Mode, and it is still broken in Safe Mode.
    I downloaded the FF4 RC, and that version had no problem. If I switch back to 3.6.15 though, it is still broken. I tried it in Chrome and IE7, and southwest.com works fine. It appears to only be broken in FF 3.6.15.
    Thanks!

  • Mouse drag, hand tool not working at all!

    So I've installed Photoshop CC 2014 and Illustrator CC 2014 on my computer, started a new file but only found that any action that includes mouse dragging - creating shapes, hand tool, pen tool - do not work at all, everything just do not respond, when creating a shape it will treat it as if I have clicked once (which pops out the create rectangle window for size input..), the same situation happens to Photoshop as well (perhaps all Adobe CC software). I've been trying everything that have been suggested on the forum (some from the links below): removing all other software at the background (spotify, 1password, etc). Also I've tried with using different sets of keyboard and mouse, either wired and wireless, still no luck. One situation that finally works is that all software work perfectly fine in safe mode, then I rebooted back to normal mode, try killing any background process that was not running in safe mode, still...not working at all...
    References:
    (Illustrator CS6) Spacebar stops working seemingly randomly
    Spacebar Shortcut: Hand Tool Not Showing and Not Working
    Illustrator gets stuck on hand tool
    My computer specs:
    Windows 7 Pro 64-bit
    Intel Core i3-4130 3.4Ghz
    4GB RAM

    wecon,
    You could try to reinstall using the full three step way:
    Uninstall, run the Cleaner Tool, and reinstall.
    http://www.adobe.com/support/contact/cscleanertool.html

  • Shockwave flash plugin not working at all!! HELP

    So, here is my problem, I have windows 8.1 64bit and running the latest mozilla firefox.
    I've had a lot of problems with flash player (32bit), videos not working properly, loading very slow.. (i have fast internet, working good) then i updated flash and it totally stoped working.
    Resetting Firefox does not work for me. Flash player is not working at all, so i had to uninstall it. i uninstalled both flash player and shockwave player. i tried having only flash player - still not working.
    I've already tried these too:
    -Uninstalling and re-installing flash player
    -Uninstalling and re-installing in Safe Mode
    -Turning off hardware acceleration in both Firefox and flash player
    -i have updated all drivers on my computer
    Still not working at all! WHY?

    This add-on will prevent Flash from running on the web page until you want.
    '''[https://addons.mozilla.org/en-US/firefox/addon/flashblock/ Flash block]''' {web link}
    Never be annoyed by a Flash animation again! Blocks Flash so it
    won't get in your way, but if you want to see it, just click on it
    If you have problems with current Shockwave Flash plugin versions then check this:
    * see if there are updates for your graphics drive drivers
    '''https://support.mozilla.org/kb/upgrade-graphics-drivers-use-hardware-acceleration'''
    * disable protected mode in the Flash plugin (Flash 11.3+ on Windows Vista and later)
    '''https://forums.adobe.com/message/4468493#TemporaryWorkaround'''
    * disable hardware acceleration in the Flash plugin
    '''https://forums.adobe.com/thread/891337'''
    See also:
    * '''http://kb.mozillazine.org/Flash#Troubleshooting'''
    Notice, Adobe just updated the Flash Player '''v16.0.0.257 https://www.adobe.com/products/flashplayer/distribution3.html'''

  • Ipod touch not working at all nor recognized,, any help!

    ipod touch 4generation ios 5.0.1 not working at all nor charging.. not recognized in the computer (windows),, please help me what to do!!
    I have tried using the way of pressing the power and home button but nothing happen at all just black screen with no lights or anything
    Just to know what happened: i was trying to downgrade the ios and i have used TinyUmbrella for that and put my ipod in the recovery mode from TinyUmbrella but i couldn't exit from the recovery mode
    waiting ur suggestions
    Thanks

    Try here:
    iPhone, iPad, or iPod touch: Device not recognized in iTunes for Windows
    or
    iPhone, iPad, iPod touch: Device not recognized in iTunes for Mac OS X
    Also try placing it in DFU mode to see if iTunes can see it so you can restore it.
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • I tried to upload my daughters videos she made on her iPod to my mac iPhoto and it seemed to have "Stuck" and now will not work at all.  It had to a complete fix of the existing library.

    I tried to upload my daughters videos she made on her iPod to my mac iPhoto and it seemed to have "Stuck" and now will not work at all.  It had to a complete fix of the existing library.  It will now not let me move pictures from the "Stream" to "photos", it looks like it is trying to but gets stuck and I have to force a shut down of the programe.
    Thanks!

    -> Tap ALT key or press F10 to show the Menu Bar
    -> go to Help Menu -> select "Restart with Add-ons Disabled"
    Firefox will close then it will open up with just basic Firefox. Now do this:
    -> Update ALL your Firefox Plug-ins https://www.mozilla.com/en-US/plugincheck/
    -> go to View Menu -> Toolbars -> unselect All Unwanted toolbars
    -> go Tools Menu -> Clear Recent History -> '''Time range to clear: select EVERYTHING''' -> click Details (small arrow) button -> place Checkmarks on '''Cookies, Cache''' -> click "Clear Now"
    -> go to Tools Menu -> Options -> Content -> place Checkmarks on:
    1) Block Pop-up windows 2) Load images automatically 3) Enable JavaScript
    -> go to Tools Menu -> Options -> Privacy -> History section -> '''Firefox will: select "Use Custom Settings for History"''' -> REMOVE Checkmark from '''"Permanent Private Browsing mode"''' -> place CHECKMARKS on:
    1) Remember my Browsing History 2) Remember Download History 3) Remember Search History 4) Accept Cookies from sites -> select "Exceptions..." button -> Click "Remove All Sites" at the bottom of "Exception - Cookies" window
    4a) Accept Third-party Cookies -> under "Keep Until" select "They Expire"
    -> REMOVE CHECKMARK from CLEAR HISTORY WHEN FIREFOX CLOSES
    -> When using the Location Bar, suggest: select "History and Bookmarks"
    -> go to Tools Menu -> Options -> Security -> place Checkmarks on:
    1) Warn me when sites try to install add-ons 2) Block reported attack sites 3) Block reported web forgeries 4) Remember Passwords for sites
    -> Click OK on Options window
    -> click the Favicon (small drop down menu icon) on Firefox SearchBar (its position is on the Right side of the Address Bar) -> click "Manage Search Engines" -> select all Unwanted Search Engines and click Remove -> click OK
    -> go to Tools Menu -> Add-ons -> Extensions section -> REMOVE All Unwanted/Suspicious Extensions (Add-ons) -> Restart Firefox
    You can enable your Known & Trustworthy Add-ons later. Check and tell if its working.

Maybe you are looking for