Sharepoint Authentication with OWIN

Hello,
I am working on Publishing site on SP 2013 with Object Model. I tried to use OWIN Middleware to authenticate the customer.
The steps I follow are:
-> deployement of OWIN assemblies in the web application: OK
-> Startup Class: OK
public void Configuration(IAppBuilder app)
System.Diagnostics.Trace.TraceInformation("OWIN Startup configuration is running");
app.UseCookieAuthentication(new CookieAuthenticationOptions
AuthenticationType = "Application",
AuthenticationMode = Microsoft.Owin.Security.AuthenticationMode.Passive,
LoginPath = new PathString("/3wc/en-gb/Pages/login.aspx")
-> Login.aspx with a postback:
protected void btnLogin_Click(object sender, EventArgs e)
try
var ctx = this.Context.Request.GetOwinContext();
var authenticationManager = ctx.Authentication;
var user = authenticationManager.User;
if (user != null)
var identity = user.Identities.SingleOrDefault(id => id.AuthenticationType == "Application");
if (identity != null && identity.IsAuthenticated)
System.Diagnostics.Trace.TraceInformation("NEVER EXECUTED!!");
var claims = new List<System.Security.Claims.Claim>();
claims.Add(new System.Security.Claims.Claim(ClaimTypes.Name, "Chris"));
identity = new System.Security.Claims.ClaimsIdentity(claims, "Application");
authenticationManager.SignIn(new AuthenticationProperties() { IsPersistent = true }, identity);
catch (Exception ex)
this.lbStatus.Text = "Something went wrong: " + ex.ToString();
I was expecting that if I click twice on the button, the debugger will step on System.Diagnostics.Trace.TraceInformation("NEVER EXECUTED!!"); . But is is never executed.
Thanks a lot for your help
Chris

Any pointers ?

Similar Messages

  • Error while Authenticating sharepoint site with Azure AD users using Azure Access Control Namespace

    I have a Sharepoint site running on Azure virtual Machine. Now i want to authenticate my sharepoint site with Azure AD users.
    For this i have followed below link, but getting error after login.
    Using Microsoft Azure Active Directory for SharePoint 2013 authentication
    I have implemented as given on reference link, but still facing error. When i access my url from browser, it will ask me through which you want to logon.
    Then on selection of ACS Provider, it will redirect me to office365 login. After i submit my credentials, it will redirect me to
    https://testvm.cloudapp.net/_trust/
    and got error. So i checked in sharepoint log and found below error.
    Cannot find site lookup info for request Uri urn:sharepoint:spvms.
    SPAudienceValidator: Audience uri 'urn:sharepoint:spvms is not valid for the context.
    Getting Error Message for Exception Microsoft.IdentityModel.Tokens.FailedAuthenticationException: The Audience URI could not be validated.
    SPSaml11SecurityTokenHandler: Audience validation failed for request 'https://testvm.cloudapp.net/_trust/' with
    the following audience URIs: 'urn:sharepoint:spvms', .
    Application error when access /_trust/, Error=The Audience URI could not be validated.
    at Microsoft.SharePoint.IdentityModel.SPSaml11SecurityTokenHandler.ValidateConditions(SamlConditions conditions, Boolean enforceAudienceRestriction)
    at Microsoft.IdentityModel.Tokens.Saml11.Saml11SecurityTokenHandler.ValidateToken(SecurityToken token)
    at Microsoft.IdentityModel.Tokens.SecurityTokenHandlerCollection.ValidateToken(SecurityToken token)
    at Microsoft.IdentityModel.Web.TokenReceiver.AuthenticateToken(SecurityToken token, Boolean ensureBearerToken, String endpointUri)
    at Microsoft.IdentityModel.Web.WSFederationAuthenticationModule.SignInWithResponseMessage(HttpRequest request)
    at Microsoft.IdentityModel.Web.WSFederationAuthenticationModule.OnAuthenticateRequest(Object sender, EventArgs args)
    at Microsoft.SharePoint.IdentityModel.SPFederationAuthenticationModule.OnAuthenticateRequest(Object sender, EventArgs eventArgs)
    at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)

    I want 100,000 external users to have access to my SharePoint online Site collection.
    I was thinking of going the Azure AD route, where external users will have there ID's created in Azure AD cloud.
    Trying to figure how I can integrate Azure AD cloud with my SharePoint Online Site collection.
    Currently my site collection is tied to On-premise AD.
    Is there a way to integrate the SharePoint online to use both Azure AD and On-premise AD?
    Thanks
    Nate
    Any Answer here?

  • Sharepoint Client Context Retrieval From a Web app authenticated with Ping Federate

    Hi All,
    We are developing a WCF which would read value from a SharePoint list where web application only has Ping Federate authentication in all Zones. We have to use client object model since WCF would be hosted in a different server.We are not able to get data as
    when clientContext.ExecuteQuery(); is called it throws forbidden error. We have followed the below blog http://travisspencer.com/blog/2010/03/getting-a-token-from-pingfeder.html how ever  we are getting reply <faultstring>Unable to determine partner
    SP connection by AppliesTo: url</faultstring>. While we are calling the using the below blog were getting forbidden error at _layouts/authenticate.aspx itself. 
     http://fredericloud.com/2011/01/11/connecting-to-sharepoint-with-claims-authentication/
    Please let le me know if you have any working examples or documents regarding the same. 
    Thanks & Regards, Balu

    Hi,
    Does the account in use has the permission to access the SharePoint list? By default, we will come across the “Access Denied” if the current account has no access to a SharePoint
    object.
    For the authentication issue with SharePoint Client Object Model, you can try to set the credential to ClientContext object with the help of
    NetworkCredential Class.
    More information about authentication with SharePoint Client Object Model:
    http://bramdejager.wordpress.com/2013/08/02/using-csom-and-powershell-to-query-sharepoint-online-or-on-premise/
    http://sharepointdragons.com/2012/04/20/authentication-when-using-the-sharepoint-client-object-model/
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Patrick Liang
    TechNet Community Support

  • SharePoint 2010 with OAM 11g

    We are currently trying to integrate SharePoint 2010 server with OAM 11g with 10g webgate. In our environment SharePoint site is configured with Claims based authentication with LDAP provider for membership. We have performed all the configurations based on the Oracle documentation with validation mode as OAMHttp.
    We are seeing the following behavior after this integration.
    1)     The user requests access to an SharePoint Site
    2)     Webgate protecting the site intercepts the request, determines if the resource is protected, and challenges the user.
    3)     The user enters their OAM credentials; Webgate contacts the OAM Server, which verifies the credentials from user store and authenticates the user. Webgate generates the OAM native SSO cookie (ObSSOCookie), which enables single sign-on and sets the User ID (to username) header variable in the HTTP request and redirects the user to SharePoint site.
    Here, instead of taking user to the home page of the site, the SharePoint login page is displayed again.
    =================================================================================================
    Looking into the debug logs i found the following error.
    Date ProcessId ThreadID ManagesThreadId ClassName MethodName Message
    =================================================================================================
    5/4/2012 4:16:19 AM 7648 3604 7 Oracle.CustomMembershipProvider Initialize validationMode^OAMHttp
    5/4/2012 4:16:19 AM 7648 3604 7 Oracle.OAMHttpValidator .ctor Method Entered
    5/4/2012 4:16:19 AM 7648 3604 7 Oracle.OAMHttpValidator .ctor ValidationURL configured validationUrl^http://wtv-sea-spapp01.chemd.net:8086/ValidateCookie.html
    5/4/2012 4:16:19 AM 7648 3604 7 Oracle.OAMHttpValidator .ctor validationHost^wtv-sea-spapp01.chemd.net
    5/4/2012 4:16:19 AM 7648 3604 7 Oracle.OAMHttpValidator .ctor OAMAuthUserCookieName^OAMAuthCookie
    5/4/2012 4:16:19 AM 7648 3604 7 Oracle.OAMHttpValidator .ctor Method Exited
    5/4/2012 4:16:19 AM 7648 3604 7 Oracle.CustomMembershipProvider Initialize Setting Validation Type OAMHttp
    5/4/2012 4:16:19 AM 7648 3604 7 Oracle.CustomMembershipProvider ValidateUser Entering ValidateUser : username^IDG2M
    5/4/2012 4:16:19 AM 7648 3604 7 Oracle.OAMHttpValidator ValidateUser Method Entered
    Exception Caught InValidateUser
    The remote server returned an error: (403) Forbidden. at System.Net.HttpWebRequest.GetResponse()
    at Oracle.OAMHttpValidator.ValidateUser(Dictionary`2 creds)5/4/2012 4:16:19 AM 7648 3604 7 Oracle.OAMHttpValidator ValidateUser Exiting AuthStatus^AuthZFail
    5/4/2012 4:16:19 AM 7648 3604 7 Oracle.CustomMembershipProvider ValidateUser OAMauthStatus^AuthZFail
    5/4/2012 4:16:19 AM 7648 3604 7 Oracle.CustomMembershipProvider ValidateUser Method Exited returnCode^False
    If anyone have integrated OAM 11g with SharePoint 2010 earlier, appreciate your inputs in this regard.

    Each license is platform specific, you can't backwards apply or forwards apply licenses from one version of SharePoint to another.
    If you do have MSDN access, you'll have access to all current versions of SharePoint, across the current and retired server products.
    Steven Andrews
    SharePoint Business Analyst: LiveNation Entertainment
    Blog: baron72.wordpress.com
    Twitter: Follow @backpackerd00d
    My Wiki Articles:
    CodePlex Corner Series
    Please remember to mark your question as "answered" if this solves (or helps) your problem.

  • Does ADFS work with SharePoint 2013 with WFEs SSL-offloaded to a F5 load balancer?

    Currently we are implementing a SharePoint 2013 Production environment with 2 WFEs load-balanced by F5.  SSL is offloaded to F5 and is currently working fine with Integrated Windows Authentication with NTLM.  We would like to implement ADFS 3.0
    later for Single Sign-on, and we are wondering if ADFS supports SSL offload.  
    Do we need to bind the certificate to the WFEs as well to use ADFS?  
    Thank you!

    Just got it confirmed that ADFS supports SSL offload.  There is no direct communication between SharePoint and ADFS server during the authentication process.  It is always the browser that's talking to ADFS server. We just need to do the following:
    Configure SharePoint URLs in ADFS as replying parties with https.
    Configure AAM in SharePoint to make sure internal URL is http and public URL is https.

  • HTTPS SharePoint site with HTTPS Provider hosted app - The remote certificate is invalid according to the validation procedure

    We have SharePoint 2013 site configured with SSL and we have developed a provider hosted app which interacts with SharePoint list.
    If we try accessing the Provider hosted app from the SharePoint site with HTTP [http://mysharepointsite.com/] there are no any errors thrown.
    But whenever the same Provider hosted app is tried accessing from the same SharePoint site using https address
    [https://mysharepointsite.com/] we are getting below error:
    The remote certificate is invalid according to the validation procedure.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Security.Authentication.AuthenticationException: The remote certificate is invalid according to the validation procedure.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [AuthenticationException: The remote certificate is invalid according to the validation procedure.]
    System.Net.Security.SslState.StartSendAuthResetSignal(ProtocolToken message, AsyncProtocolRequest asyncRequest, Exception exception) +2983172
    System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest) +473
    System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest) +86
    System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest) +262
    System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest) +473
    System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest) +86
    System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest) +262
    System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest) +473
    System.Net.Security.SslState.ProcessReceivedBlob(Byte[] buffer, Int32 count, AsyncProtocolRequest asyncRequest) +86
    System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest) +262
    System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest) +473
    System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest) +8530566
    System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult) +230
    System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) +645
    System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx) +9
    System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state) +87
    System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result) +1467
    System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size) +84
    System.Net.PooledStream.Write(Byte[] buffer, Int32 offset, Int32 size) +22
    System.Net.ConnectStream.WriteHeaders(Boolean async) +761
    [WebException: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS secure channel.]
    System.Net.HttpWebRequest.GetResponse() +8534156
    Microsoft.SharePoint.Client.SPWebRequestExecutor.Execute() +58
    Microsoft.SharePoint.Client.ClientRequest.ExecuteQueryToServer(ChunkStringBuilder sb) +975
    ProviderHostedHTTPSWeb.Default.Page_Load(Object sender, EventArgs e) +348
    System.Web.UI.Control.LoadRecursive() +71
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3178
    We have already added the certificate used for the SharePoint site and the provider hosted app in the SharePoint central admin trusts.
    Any idea's how can I resolve this issue?

    Hi,
    According to your post, my understanding is that you failed to access provider host app using https.
    The reason for this is that SharePoint implements its own certificate validation policy to override .NET certificate validation.
    Fix is to setup a trust between SharePoint and the server requiring certificate validation.
    For more information, you can refer to:
    http://blogs.technet.com/b/sharepointdevelopersupport/archive/2013/06/13/could-not-establish-trust-relationship-for-ssl-tls-secure-channel.aspx
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • NTLM Authentication with a domain controller/active directory

    Hi,
    I have a requirement to do an NTLM authentication with the MS active directory.
    I am aware that JNDI doesn't support this protocol to communicate with the AD.
    I have looked into couple of online solutions available but that doesn't seem to meet my requirement. Most of the solutions like (Apache commons NTLMScheme/NTCredentials and java.net.Authenticator etc...) are used for only NTLM proxy authentication (where both username, password is sent to the proxy server which does the actual NTLM authentication with the Active Directory.)
    What I need is a solution in Java where I can directly contact Active directory for negotiation of challenge/response mechanism.
    Can any of you guys suggest any alternative to achieve this ?

    it really depends to be honest. I'd probably go something like this though:
    One Small physical server to act as a domain controller - you could put DHCP on this too
    One or Two physical, quite powerful servers to act as Hyper-V hosts - these can be domain joined. 
    Then for your VM's create the following:
    1 x additional domain controller
    For remote desktop services:
    1 x Remote Desktop Session Host
    1 x Connection Broker
    1 x Gateway and web server
    For additional services
    1 or 2 x Exchange
    1 x sharepoint
    1 x IIS
    but it really depends what you want to achieve. 
    The benefit from Virtual machines is that you can keep separate virtual servers for separate applications. 
    If you have two hosts you could then replicate the virtual machines between them if you wanted some layer of fault tolerance. 
    Hope this helps you a bit more. And thanks for positive blog feedback - its appreciated. 
    Regards,
    Denis Cooper
    MCITP EA - MCT
    Help keep the forums tidy, if this has helped please mark it as an answer
    My Blog
    LinkedIn:

  • How to configure SharePoint HNSC with a reverse proxy server so that HNSC Share Point URLs are not exposed to end users.

    Could you please let me know how SharePoint HNSC can be configured with a reverse proxy server so that HNSC Share Point URLs are not exposed to end users.
    In normal path based site collections/web applications, reverse proxy configuration can be done using alternate access mappings with  Public URL = "proxy URL", internal = "HNSC Share Point URL" so that share point sends response back
    to Public URL = "proxy URL".
    In Host Named Site Collections,  alternate access mappings  are not supported. Each HNSC is designed to have only one URL in each zone. Zone is one of the five zones(Default,Intranet,Internet,Custom,Extranet) with each of which only one alternate
    URL is associated.  This is what we are able to get using power shell command "Set-SPSiteUrl", but this will not help us to get the response back to proxy URL after a request sent to share point because we could not find any mechanism in share
    point HNSC to respond  to a different URL(proxy URL). Consequently, Share Point URLs are exposed to  external users.
    Below share point article in MSDN blog is symmetrical to what we are observing with Share Point 2013 and Proxy Server. It mentions that internal HNSC URLs can’t be hidden using any proxy server. If  hiding the internal Share Point URLS is a requirement,
    it suggests to use a web application instead of host named site collections.
    Though I’m also observing the same behavior with Share Point 2013 HNSC, Could you please confirm my understanding is correct.
    http://blogs.msdn.com/b/kaevans/archive/2012/03/27/what-every-sharepoint-admin-needs-to-know-about-host-named-site-collections.aspx
    Excerpt from above article-
    "Host Named Site Collections Only Use One Host Name
    Continuing on the discussion on AAMs and host named site collections, you cannot use multiple host names to address a site collection in SharePoint 2010. Because host-named site collections have a single URL, they do not support alternate access mappings and
    are always considered to be in the Default zone.  This is important if you are using a reverse proxy to provide access to external users. Products like Unified Access Gateway 2010 allow external users to authenticate to your gateway and access a site
    as http://uag.sharepoint.com and forward the call to http://portal.sharepoint.com. Remember that URL rewriting is not permitted. Further, a site collection can only respond to one host name. This means if you are using a reverse proxy, it must forward the
    calls to the same URL.  If your networking team has a policy against exposing internal URLs externally, you must instead use web applications and extend the web application using an alternate access mapping."<u5:p></u5:p>

    Hi Satish,
    You are right that only one URL is allowed for each zone of the host-name site collections in both SharePoint 2010 and SharePoint 2013.
    It is by design that each host-name site collection only support one URL for each zone.
    The article below is about RTM version of SharePoint, and it is the same for SharePoint 2013 with the latest CU.
    https://support.microsoft.com/en-us/kb/2826457
    So to make the URL of HNSC not exposed to external users is not supported, you need to use path-based sites instead.
    Best regards.
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Cannot install SharePoint 2013 with SP1 on server 2012 R2. IIS configuration error

    Hey Guys,
    I'm experiencing a problem which seems to be common considering the number of posts I've found about it, but none of the provided solutions worked for me.
    I'm simply trying to install SharePoint 2013 with SP1 on a Windows Server Standard 2012 R2.
    I've downloaded from the MS Volume Licensing website the "SharePoint Server 2013 with SP1" ISO file :  SW_DVD5_SharePoint_Server_2013w_SP1_64Bit_English_MLF_X19-36118. So
    this is the slipstreamed version which is supposed to bring compatibility with 2012 R2.
    As I do not have direct access to the Internet I need to perform an offline installation. I also downloaded all prerequisities. When I run prerequisiteinstaller.exe with the necessary arguments, I get the following :
    (Full log file is below)
    I've tried the following :
    - Restarted the server multiple times
    - Manually removing/adding IIS role + restart
    - Running the prerequisiteinstaller.exe from the DVD or from an extracted version
    - Manually installing the prerequisities
    - Installed .Net 3.5 as recommended here (http://social.technet.microsoft.com/Forums/office/en-US/0b597d35-b02d-4236-894d-38efc0c7c6f6/sharepoint-2013-with-sp1-install-on-windows-server-2012-r2?forum=sharepointgeneral)
    None of the worked. So I'm stuck and I must completed the installation of this before the end of the week for an important project !
    Your help would be greatly appreciated.
    this is the complete log file :
    2014-09-09 14:30:26 - Processor architecture is (9)
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Common Startup
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup
    2014-09-09 14:30:26 - Trying to remove the startup task if there is any.
    2014-09-09 14:30:26 - C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup\SharePointServerPreparationToolStartup_0FF1CE14-0000-0000-0000-000000000000.cmd
    2014-09-09 14:30:26 - Successfully deleted the startup task
    2014-09-09 14:30:26 - Analyzing the following command line argument:
    2014-09-09 14:30:26 - /continue
    2014-09-09 14:30:26 - Continuing after restart
    2014-09-09 14:30:26 - Details of the current operating system:
    2014-09-09 14:30:26 - Major version number of the operating system: (6)
    2014-09-09 14:30:26 - Minor version number of the operating system: (2)
    2014-09-09 14:30:26 - Build number of the operating system: (0X23F0=9200)
    2014-09-09 14:30:26 - Major version number of the latest Service Pack: (0)
    2014-09-09 14:30:26 - Minor version number of the latest Service Pack: (0)
    2014-09-09 14:30:26 - Platform ID of the operating system: (2)
    2014-09-09 14:30:26 - Product suites available on the operating system: (0X110=272)
    2014-09-09 14:30:26 - Product type of the operating system: VER_NT_SERVER
    2014-09-09 14:30:26 - Product type: (0)
    2014-09-09 14:30:26 - OS type: (2)
    2014-09-09 14:30:26 - Configuring the application's property sheet...
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Windows Management Framework 3.0
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - PowerShellVersion
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 4.0
    2014-09-09 14:30:26 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft .NET Framework 4.5
    2014-09-09 14:30:26 - Reading the following DWORD value/name...
    2014-09-09 14:30:26 - Install
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-09-09 14:30:26 - The value is (1)
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Version
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 4.5.51641
    2014-09-09 14:30:26 - A post release .NET 4.5 is installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Windows Identity Foundation (KB974405)
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 -
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 6.1.7600.0
    2014-09-09 14:30:26 - The prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-09-09 14:30:26 - Reading version of the following file...
    2014-09-09 14:30:26 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-09-09 14:30:26 - GetFileVersionInfoSize failed (-2147024894)
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Version
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 10.51.2500.0
    2014-09-09 14:30:26 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Windows Server AppFabric
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - ProductVersion
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Windows Identity Foundation (KB974405)
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 -
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft Information Protection and Control Client
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 -
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft WCF Data Services 5.0
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Version
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 5.0.51212.0
    2014-09-09 14:30:26 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Microsoft WCF Data Services 5.6
    2014-09-09 14:30:26 - Reading the following string value/name...
    2014-09-09 14:30:26 - Version
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.6
    2014-09-09 14:30:26 - The value is...
    2014-09-09 14:30:26 - 5.6.61587.0
    2014-09-09 14:30:26 - The prerequisite above is already installed
    2014-09-09 14:30:26 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:26 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-09-09 14:30:26 - Reading the following DWORD value/name...
    2014-09-09 14:30:26 - IsInstalled
    2014-09-09 14:30:26 - from the following registry location...
    2014-09-09 14:30:26 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-09-09 14:30:26 - Beginning download/installation
    2014-09-09 14:30:26 - Created thread for installer
    2014-09-09 14:30:26 - "C:\Windows\system32\dism.exe" /online /enable-feature /featurename:NetFX3 /All /norestart
    2014-09-09 14:30:27 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:28 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:29 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:30 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:31 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:32 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:33 - Install process returned (0)
    2014-09-09 14:30:33 - [In HRESULT format] (0)
    2014-09-09 14:30:33 - "C:\Windows\system32\WindowsPowerShell\v1.0\powershell.exe" -ExecutionPolicy Bypass "C:\Users\DADM_T~1\AppData\Local\Temp\PreFB24.tmp.PS1"
    2014-09-09 14:30:33 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:34 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:35 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:36 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:37 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:38 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:39 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:40 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:41 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:42 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:43 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:44 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:45 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:46 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:47 - Install process returned (0)
    2014-09-09 14:30:47 - [In HRESULT format] (0)
    2014-09-09 14:30:47 - "C:\Windows\system32\dism.exe" /online /enable-feature /all /featurename:IIS-ASPNET45 /norestart
    2014-09-09 14:30:47 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:48 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:49 - Install process returned (0)
    2014-09-09 14:30:49 - [In HRESULT format] (0)
    2014-09-09 14:30:49 - "C:\Windows\system32\iisreset.exe" /noforce
    2014-09-09 14:30:49 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:51 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:52 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:53 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:54 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:55 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:56 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:57 - Request for install time of Application Server Role, Web Server (IIS) Role
    2014-09-09 14:30:57 - Install process returned (0X426=1062)
    2014-09-09 14:30:57 - [In HRESULT format] (0X80070426=-2147023834)
    2014-09-09 14:30:57 - Last return code (0X426=1062)
    2014-09-09 14:30:57 - Reading the following DWORD value/name...
    2014-09-09 14:30:57 - Flags
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Updates\UpdateExeVolatile
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - PendingFileRenameOperations
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SYSTEM\CurrentControlSet\Control\Session Manager
    2014-09-09 14:30:57 - Reading the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update\RebootRequired
    2014-09-09 14:30:57 - Error: The tool was unable to install Application Server Role, Web Server (IIS) Role.
    2014-09-09 14:30:57 - Last return code (0X426=1062)
    2014-09-09 14:30:57 - Options for further diagnostics: 1. Look up the return code value 2. Download the prerequisite manually and verify size downloaded by the prerequisite installer. 3. Install the prerequisite manually from the given location without any command line options.
    2014-09-09 14:30:57 - Cannot retry
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Windows Management Framework 3.0
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - PowerShellVersion
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\PowerShell\3\PowerShellEngine
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 4.0
    2014-09-09 14:30:57 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft .NET Framework 4.5
    2014-09-09 14:30:57 - Reading the following DWORD value/name...
    2014-09-09 14:30:57 - Install
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-09-09 14:30:57 - The value is (1)
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - Version
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Net Framework Setup\NDP\V4\full
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 4.5.51641
    2014-09-09 14:30:57 - A post release .NET 4.5 is installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Windows Identity Foundation (KB974405)
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 -
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Windows Identity Foundation\Setup\v3.5
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 6.1.7600.0
    2014-09-09 14:30:57 - The prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft Sync Framework Runtime v1.0 SP1 (x64)
    2014-09-09 14:30:57 - Reading version of the following file...
    2014-09-09 14:30:57 - C:\Windows\assembly\GAC_MSIL\Microsoft.Synchronization\1.0.0.0__89845dcd8080cc91\Microsoft.Synchronization.dll
    2014-09-09 14:30:57 - GetFileVersionInfoSize failed (-2147024894)
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft SQL Server 2008 R2 SP1 Native Client
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - Version
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Microsoft SQL Server\SQLNCLI10\CurrentVersion
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 10.51.2500.0
    2014-09-09 14:30:57 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Windows Server AppFabric
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - ProductVersion
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\AppFabric\V1.0
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Windows Identity Foundation (KB974405)
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 -
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft Information Protection and Control Client
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 -
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Microsoft\MSIPC\CurrentVersion
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft WCF Data Services 5.0
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - Version
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.0
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 5.0.51212.0
    2014-09-09 14:30:57 - A higher version of the prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Microsoft WCF Data Services 5.6
    2014-09-09 14:30:57 - Reading the following string value/name...
    2014-09-09 14:30:57 - Version
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Wow6432Node\Microsoft\Microsoft WCF Data Services\5.6
    2014-09-09 14:30:57 - The value is...
    2014-09-09 14:30:57 - 5.6.61587.0
    2014-09-09 14:30:57 - The prerequisite above is already installed
    2014-09-09 14:30:57 - Check whether the following prerequisite is installed:
    2014-09-09 14:30:57 - Cumulative Update Package 1 for Microsoft AppFabric 1.1 for Windows Server (KB2671763)
    2014-09-09 14:30:57 - Reading the following DWORD value/name...
    2014-09-09 14:30:57 - IsInstalled
    2014-09-09 14:30:57 - from the following registry location...
    2014-09-09 14:30:57 - SOFTWARE\Wow6432Node\Microsoft\Updates\AppFabric 1.1 for Windows Server\KB2671763
    2014-09-09 14:32:19 - Opening log file
    2014-09-09 14:32:19 - Opened action for user
    2014-09-09 14:32:19 - C:\Users\DADM_T~1\AppData\Local\Temp\prerequisiteinstaller.2014.09.09-14.30.26.log

    Thank you guys for the quick answer! Muche appreciated
    I've tried all suggested solutions, but no luck :-(
    - tried http://support.microsoft.com/kb/2765260 > no help and by the way the hotfix provided is not applicable for 2012 R2.
    also tried "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regii -enable -i" and got this :
    Microsoft (R) ASP.NET RegIIS version 4.0.30319.33440Administration utility to install and uninstall ASP.NET on the local machine.Copyright (C) Microsoft Corporation.  All rights reserved.Start installing ASP.NET (4.0.30319.33440).This option is not supported on this version of the operating system.  Administrators should instead install/uninstall ASP.NET 4.5 with IIS8 using the "Turn Windows Features On/Off" dialog,  the Server Manager management tool, or the dism.exe command line tool.  For more details please see http://go.microsoft.com/fwlink/?LinkID=216771.Finished installing ASP.NET (4.0.30319.33440).
    http://social.technet.microsoft.com/wiki/contents/articles/14582.sharepoint-2013-install-prerequisites-offline-or-manually-on-windows-server-2012-a-comprehensive-guide.aspx
    > is not for 2012 R2.
    For the automated install script (http://gallery.technet.microsoft.com/office/DownloadInstall-SharePoint-e6df9eb8) Craig mentions that the script are not yet compatible
    "SharePoint 2013 SP1 and Windows Server 2012 R2 support coming soon
     I will be updating this script with support for SharePoint 2013 Service Pack 1 installations along with support for Windows Server 2012 R2 in the near future. Thank you to everyone for the interest in my scripts - it is much appreciated! "

  • Prepare sharepoint 2010 with sp2 environment on windows server 2012 R2

    HOw  prepare sharepoint 2010 with sp2 environment how i  install sharepoint 2010 with sp2 in a windows server 2012 
    i mean
    from scratch  i just prepared a windows server 2012 R2 vm
    and i set all required  roels (Appserver,webserver etc) according to this link
    http://social.technet.microsoft.com/wiki/contents/articles/12502.how-to-install-and-configure-windows-server-2012-for-sharepoint-2010.aspx
    and i have sharepoint 2010 set up, and i downloaded sharepoint 2010 sp2
    from this link
    http://www.microsoft.com/en-us/download/details.aspx?id=39672
    now should i install sp2 and install sharepoint 2010 binaries?
    adil

    SharePoint 2010 has no supportability statement for Server 2012 R2.  I would not use it until Microsoft releases a supportability statement.
    Even it  has no supportability for server 2012, but sharepoint 2010 running fine in my server 2012 test environment
    adil
    You indicated you were using 2012 R2.  SharePoint 2010 supports Server 2012 (non-R2) with SP2 media, but has no supportability statement for Server 2012 R2.
    Trevor Seward, MCC
    Follow or contact me at...
    &nbsp&nbsp
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • SharePoint 2013 with sp1 install on windows server 2012 R2

    Hi All:
    excuse me I have a question about sharepoint installation. I install sharepoint 2013 with sp1 on windows server 2012 R2,but i always got "Configuring Application Server Role, Web Server (IIS) Role"
    message. I refer to this article <http://support.microsoft.com/kb/2765260>. I still got this message ... Which I did wrong step ?? I have been troubled for a long time, thanks to the help ...

    Hi  TiM,
    According to your description, my understanding is that you got an error when you installed the prerequisites for SharePoint 2013 SP1 on Windows 2012 R2.
    Please make sure that you have installed .NET Framework 3.5 on Windows Server 2012 R2, and enable .NET Framework 3.5 by using the Add Roles and Features Wizard.
    Here is a blog you can refer to:
    http://blog.migrationking.com/2013/11/how-to-install-net-framework-35-on.html
    Reference:http://social.technet.microsoft.com/Forums/en-US/55589deb-cddf-445f-be41-b4c97f06ff4d/sharepoint-2013-sp1-on-windows-2012-r2?forum=sharepointgeneral
    Thanks,
    Eric
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support,
    contact [email protected]
    Eric Tao
    TechNet Community Support

  • Need to update the list item in the same sharepoint list with particular condition with Sharepoint Designer 2013.

    Hi All
    I have one sharepoint list with huge data i.e with 20columns and more than 200 records with the fields .
    Suppose lets consider there are A,B,C,D,E,F,G,H columns.
    Now i want to create one form with the fields A,C,E.
    When the user enter the existing data of list for columns A,C..based on C value the E column value should change and update that particular item in the list.
    Please guide me without visual web part can we acheive this by Sharepoint designer 2013 or what would be the preferable solution.
    Please help me on this as it is very urgent from me..
    Thanks in Advance
    Sowjanya G

    Hi,
    According to your post, my understanding is that you wanted to update the list item in the same sharepoint list with particular condition with Sharepoint Designer 2013.
    I recommend to create workflow associated to the list and then start the workflow automatically when an item is changed.
    In the workflow, you can add condition and actions as below:
    If current item: C equal to Test1
         Set E to Test2
    Then the value of the filed E will be changed based on the value of the filed C.
    In addition, if you create the form using InfoPath, you can add rule to the filed C as below:
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • I get error message: "An error occurred with the  publication of album...Authentication with server failed...whenever I open a facebook file in my iPhoto. In each file, most of my photos have disappeared. What do I need to do?

    I get error message: "An error occurred with the  publication of album...Authentication with server failed. Please check your login and password information" whenever I open a facebook file in my iPhoto. In each file, most of my photos have disappeared. I am hoping I can retrieve these "lost" files. What do I need to do?

    Message was edited by: leroydouglas
    better yet, try this solution:
    https://discussions.apple.com/message/12351186#12351186

  • Error in authentication with ldap server with certificate

    Hi,
    i have a problem in authentication with ldap server with certificate.
    here i am using java API to authenticate.
    Caused by: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: timestamp check failed.
    I issued the new certificate which is having the up to 5 years valid time.
    is java will authenticate up to one year only?
    Can any body help on this issue...
    Regards
    Ranga

    sorry i am gettting ythe same error
    javax.naming.CommunicationException: simple bind failed: servername:636 exception is javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: timestamp check failed]
    here when i am using the old certificate and changing the system date means i can get the authentication.
    can you tell where we can concentrate and solve the issue..
    where is the issue
    1. need to check with the ldap server only
    2. problem in java code only.
    thanks in advance

  • Ricoh Aficio MP C2051 Scan to Folder - Windows 7 64 bit Error: Authentication with the destination has failed check settings

    I got an issue with OS of widows 7.
    unable to scan  documents to user's PC.am getting error message "Authentication with the destination has failed. Check settings. To check the current status, press [Scanned Files Status
    Other Windows xp  PC can do this.
    How can I fix this problem?
    Printer Model :C2051 /mp2001sp

    Hi,
    I searched for the error and it is mentioned in Ricoh's website:
    Messages Displayed on the Control Panel When Using the Scanner Function
    http://support.ricoh.com/bb_v1oi/pub_e/oi_view/0001045/0001045718/view/trouble/int/0036.htm
    Please Note: Since the web site is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Message
    Cause
    Solution
    “Authentication with the destination has failed. Check settings. To check the current status, press [Comm. Status/Print].”
    The entered login user name or login password is not correct.
    Check that the user name and password are correct.
    Check that the ID and password for the destination folder are correct.
    A password of 128 or more characters may not be recognized.
    From the solution, it mentioned that the issue could relate to user account or its password.
    Please let me know if it is in domain environment. If so, please test to log the same user account currently on Windows 7 to Windows XP and see if issue persists.
    Also please test to directly access the scanning folder on printer server to see if there is any issue in accessing the destination folder. 

Maybe you are looking for

  • Why am i getting error 150;30 when i click on edit

    Why am i getting error code 150:30 when I click on edit in Photoshop Elements 8. Says my licencing has stopped working.

  • Using java jni

    Hello, I'm trying to figure out a way to start small Java-Programs from within Labview 6.0.1. Does anybody know how to do this? Every time I use the call dll-function to invoke the java-jni api Labview crashes. Invoking Java via the active-x plugin d

  • Website says store clearance item available. Store has two but no one can find them. How's that?

    There's a home theater receiver on clearance at a local store according to the website.  I called the store since we can't purchase these items online anymore for pickup.  The first person I spoke with said they had two.  I asked him to check so I di

  • HELP!! trouble with backing up

    I have all my music in my phone on my itunes playlist but not in my library? Im trying to update my phone and it wont allow me to because it says i might lose my songs, cuz they arent in my library.. How do i get them from my iphone 4 to my library?

  • Deactivate but no connection to Adobe servers

    I want to upgrade my OS on my desktop and need to deactivate PS CS4 before I format the disk but when I try to deactivate PS answers "Unable to connect to Adobe servers" which is strange since I have internet connection and can surf here and write th