Email error "Server Response: '451 Invalid Smtp l...

I am repeatedly getting this message when sending mail from smpt mail.btintenet.com :
Your server has unexpectedly terminated the connection. Possible causes for this include server problems, network problems, or a long period of inactivity. Subject 'Re: Case AVG#0000334806: [ ref:00D4000000086fU.5004000000ADEMJ:ref ] RE: AVG technical support - e-mail scanner gmail issues', Account: 'mail.btinternet.com', Server: 'mail.btinternet.com', Protocol: SMTP, Server Response: '451 Invalid Smtp line - Should end with CRLF', Port: 25, Secure(SSL): No, Server Error: 451, Error Number: 0x800CCC0F
I am also getting "password rejected" message.  I have twice re-set my original password on the Servers page of my OE bt account, also in the smtp settigns.  i have visited my BT-Yahoo inbox and find I am still logged in  there, and can receive from there in OE.
Solved!
Go to Solution.

NOT SOLVED YET sorry, it is much more complicated:
All mails I send out of OE from either bt or gmail accounts, are sent with bt smtp server: mail.btinternet.com .  Outgoing mail is not scanned by AVG n any case, and the problem occurs whether AVG email scanner is enabled or not.
All the HTML mails that I have created and sent to myself at least for the past month, whether from bt account to gmail or vice versa, or just bt to bt, cause error 451 etc when forwarded as attachments after I have received them.
BUT the problem does not occur when the original, forwarded email was written in Plain text, even if the mail in which it is forwarded is HTML.
Also, those same HTML mails that later cause the error when forwarded after they have been received, can be forwarded as attachments OK from the Sent box, but not from the Inbox after receipt.
But both HTML and plain text mails other people have sent me CAN be forwarded OK as attachments from either account.
Mails sent to myself from the BY Yahoo and gmail webmail can both be forwarded again in OE to bt without any error (but those from bt to bt  end up in BT Yahoo spam folder, until manually checked as "Not Spam").
Is something in the bt smtp server causing the problem, since all mails I send from OE go through that server ...?

Similar Messages

  • HTTP error (server response) during segmentation

    Hi
    I was testing segmentation on our CRM IDES 2007 and unfortunately I have technical issue which I do not know how to investigate (to find a reason).
    Graphical modeler in segmentation seems to work fine, but when do following step I get a popup with error:
    1. Right click on the group
    2. Press 'Count' ....
    OR
    1. Right click on the group
    2. Choose 'Build Target Group' and then 'In dialog' or 'in background'
    For the first time error says its HTTP error 500, but afterwards it is always HTTP error with code 400
    (the whole message is something like this:
    Server returned HTTP response code: 400 for URL :.....and then very long string, though the beginning is ok since it contains valid domain).
    Could anybody give me a hint how can I find a root cause for this error?
    The string with error contains at th end /bc/bsp/sap/crm_mkttg_segap/communication.do ...so maybe its something about not running service?
    When I start SICF and go in the tree to sap --> crm ..t.hen I do not see anything like crm_mkttg_segap. maybe I am looking at the wrong place ?
    regards
    Rafal

    Hi,
       Take a look at SAP note number  1363871.
    Regards,
    Arun Prakash

  • Understanding smtp server response

    Hi,
    I like to check with anyone who might be able to advise me on the problem below.
    I have a servlet which uses JavaMail to send out emails to a smtp server. During our peak access hours, we have many requests to send out emails, after a while my application went into CLOSE WAIT accumulation and finally my application server stops processing.
    When i did a thread dump, i found quite a number of threads still occupied with the process below. Does it mean that this is a symptom of network bottleneck where the smtp server is not responding as fast to the client and hence holding up the rest of the threads ? Is JavaMail send() method a synchronous call that has to wait for a server response before the thread is released ? Or is this a case of my network problem ?
    "ExecuteThread: '11' for queue: 'default'" daemon prio=5 tid=0x39fb28 nid=0x18 runnable [0xbf980000..0xbf981a38]
    at java.net.SocketInputStream.socketRead(Native Method)
    at java.net.SocketInputStream.read(SocketInputStream.java:85)
    at java.io.BufferedInputStream.fill(BufferedInputStream.java:181)
    at java.io.BufferedInputStream.read(BufferedInputStream.java:199)
    at com.sun.mail.util.LineInputStream.readLine(LineInputStream.java:56)
    at com.sun.mail.smtp.SMTPTransport.readServerResponse(SMTPTransport.java:929)
    at com.sun.mail.smtp.SMTPTransport.issueCommand(SMTPTransport.java:878)
    at com.sun.mail.smtp.SMTPTransport.finishData(SMTPTransport.java:820)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:322)
    at javax.mail.Transport.send0(Transport.java:164)
    at javax.mail.Transport.send(Transport.java:81)

    Thank you very much for the advise. It has helped me a lot.
    Do you mind if i ask a few more questions on smtp ?
    I do not know why i keep getting the error below when trying to send email to external email addresses like yahoo.com ?
    nested exception is:
         javax.mail.SendFailedException: Invalid Addresses;
    nested exception is:
         javax.mail.SendFailedException: 550 Relaying is prohibited
    I checked the firewall setting and it has already been granted for my server to reach the smtp server via port 25 when i check using telnet command. Do you have any idea what else i need to do ?
    Thanks

  • The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
                    SmtpServer.UseDefaultCredentials = true;
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    When i m run this part of code it throw an Ecxeption                                                          
            Given Below is the Error.. 
        The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Bikky Kumar

     try
                    MailMessage mail = new MailMessage();
                    SmtpClient SmtpServer = new SmtpClient("smtp.gmail.com");
                    mail.From = new MailAddress("[email protected]");
                    mail.To.Add("[email protected]");
                    mail.Subject = "Test Mail..!!!!";
                    mail.Body = "mail with attachment";
                    System.Net.Mail.Attachment attachment;
                    attachment = new System.Net.Mail.Attachment(@"C:\Attachment.txt");
                    mail.Attachments.Add(attachment);
                    SmtpServer.Port = 587;
    SmtpServer.UseDefaultCredentials = true;    ///Set it to false, or remove this line
                    SmtpServer.Credentials = new System.Net.NetworkCredential("userid", "Password");
                    SmtpServer.EnableSsl = true;
                    SmtpServer.Send(mail);
    Catch(Exception exception)
    Given Below is the Error..      The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.5.1 Authentication Required.
    Solution:
    The error might occur due to following cases.
    case 1: when the password is wrong
    case 2: when you try to login from some App
    case 3: when you try to login from the domain other than your time zone/domain/computer (This
    is the case in most of scenarios when sending mail from code)
    There is a solution for each
    solution for case 1: Enter the correct password.
    Recomended: solution for case 2: go to
    security settings at the following link https://www.google.com/settings/security/lesssecureapps and
    enable less secure apps . So that you will be able to login from all apps.
    solution 1 for case 3: (This might be helpful) you need to review the activity. but reviewing the activity will not be helpful due to latest security
    standards the link will not be useful. So try the below case.
    solution 2 for case 3: If you have hosted your code somewhere on production server and if you have access to the production server, than take remote
    desktop connection to the production server and try to login once from the browser of the production server. This will add exception for login to google and you will be allowed to login from code.
    But what if you don't have access to the production server. try
    the solution 3
    solution 3 for case 3: You have to enable
    login from other timezone / ip for your google account.
    to do this follow the link https://g.co/allowaccess and
    allow access by clicking the continue button.
    And that's it. Here you go. Now you will be able to login from any of the computer and by any means of app to your google account.
    Regards,
    Nabeel Arif

  • Delivery fails: "The server response was: 4.7.0 Temporary server error. Please try again later. PRX3"

    Trying to setup an Exchange 2013 server, with the DC and Exchange on same machine. WHen I try to deliver for either of the 2 mailboxes I have setup, I get this error.
    The server returned status code 451 - Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    It doesn't seem to be a resource issue (I'm running an XL instance on Azure), and all other connectivity works fine (and fast). I just can't receive email there. 
    Looking in the event logs, I saw one issue related to the Front End HTTP proxy, but I wouldn't assume that's relevant here. (And connectivity via Outlook & OWA seem to be fine, with the exception
    of some redirect issues on the latter).
    I did end up installing Exchange on a secondary drive for space considerations, so the location is different... not sure if that would factor in either.
    Any ideas? I don't even really know where to start debugging this. I'm trying to set this up to work on some event sync/forwarding code.

    Ok, I think I solved my problem but figured I would update here for others who may be running into the same issue.
    In my \Exchange\TransportRoles\Logs\FrontEnd\ProtocolLog\SmtpReceive\*.LOG, I found more detailed information on the issue.
    "Message or connection acked with status Retry and response 
    451 4.4.0 Error encountered while communicating with primary target IP address: ""421 4.2.1 Unable to connect."" 
    Attempted failover to alternate host, but that did not succeed. Either there are no alternate hosts, or delivery failed to all alternate hosts. The last endpoint attempted was 10.10.10.1:2525"
    I thought creating an endpoint for 25 would be sufficient, but once I created another endpoint for 2525 then my tests started working.

  • The server response was: 4.7.0 Temporary server error. Please try again later. PRX3

    Hello, 
    I just setup an exchange 2013 server  with hosted with the same machine of Active Domain Controller.
    I tested the connectivity of the server , i found that the mailbox can only send email to external mailbox however it cant receive any mail neither  from external mail nor internal mail.
    I ran a test from exchange connectivity analyzer for inbound mail and it failed with the following message. 
    The server returned status code 451 - Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3
    I did a search on this forum and found the following thread
    social.technet.microsoft.com/Forums/exchange/en-US/288e1619-ce56-4c3a-8bb1-4886835520fe/delivery-fails-the-server-response-was-470-temporary-server-error-please-try-again-later?forum=exchangesvrdeploy
    but no luck , i dont know how to set an alternative host, would somebody please help.
    error details:
    Message: Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Type: System.Net.Mail.SmtpException
    Stack trace:
    at System.Net.Mail.DataStopCommand.CheckResponse(SmtpStatusCode statusCode, String serverResponse)
    at System.Net.Mail.DataStopCommand.Send(SmtpConnection conn)
    at System.Net.Mail.SmtpClient.Send(MailMessage message)
    at Microsoft.Exchange.Tools.ExRca.Tests.SmtpMessageTest.PerformTestReally() 
    The server returned status code 451 - Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Exception details:
    Message: Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Type: System.Net.Mail.SmtpException
    Stack trace:
    at System.Net.Mail.DataStopCommand.CheckResponse(SmtpStatusCode statusCode, String serverResponse)
    at System.Net.Mail.DataStopCommand.Send(SmtpConnection conn)
    at System.Net.Mail.SmtpClient.Send(MailMessage message)
    at Microsoft.Exchange.Tools.ExRca.Tests.SmtpMessageTest.PerformTestReally()
    Elapsed Time: 3107 ms.
    The server returned status code 451 - Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Exception details:
    Message: Error in processing. The server response was: 4.7.0 Temporary server error. Please try again later. PRX3 
    Type: System.Net.Mail.SmtpException
    Stack trace:
    at System.Net.Mail.DataStopCommand.CheckResponse(SmtpStatusCode statusCode, String serverResponse)
    at System.Net.Mail.DataStopCommand.Send(SmtpConnection conn)
    at System.Net.Mail.SmtpClient.Send(MailMessage message)
    at Microsoft.Exchange.Tools.ExRca.Tests.SmtpMessageTest.PerformTestReally()
    Elapsed Time: 3107 ms.

    Thanks god, finally i found the solution :) , i can go to sleep
    i added my ad domain name to the host table then all the problems are solved!!!
    source
    http://www.techieshelp.com/exchange-2013-451-4-7-0-temporary-server-error-please-try-again-later-prx5/

  • Can't send emails. The server response was: 1060208403.

    Nobody in my office can send emails today. All eight of us can access the Internet and send emails normally on our computers.
    When attempting to send a message I get the following error message:
    Cannot send message using the server mail.ourserver.org
    The server response was: 1060208403
    We are using Port 26 to send email.
    Our web/email host did not find any issue with the mail server or with our account. They suggested it's a problem with our mail client.
    Any ideas?

    It would appear somebody needs to connect into your network and/or your client system(s), and to dig around.
    So there are presently eight separate systems have eight separate cases of the same problem, and your email vendor says it is a client issue?
    Ok; that would not be my first guess here.
    An initial suspicion would involve hardware common to all of the client systems. At your network, wireless, router(s) or switch(es) and/or at your firewall. At the connection with your network and the rest of the Internet.
    And a look at the email vendor and the vendor's server(s), since the vendor is also common to all eight clients here.
    Has anyone been working with your DNS, firewall or other such? (I'm going to assume not, but it is worth a mention.)
    Use of port 26 is odd. I'd expect port 25 or port 587. Can you confirm that port? Port 25 is comparatively unusual for sending email of late; many entities now use 587.
    Are you running a local email server? If so, that could be having an issue. I'd expect to see a local SMTP email server connect to the next SMTP server via port 25 or potentially via 587.
    Can the clients make connections to other networks and servers; are other web servers and sites accessible? If so, that tends to rule out the common pieces of hardware; hunks such as the firewall and the Internet connection.
    There's no obvious translation of that specified error code; that's not an SMTP error, nor is it visible anywhere on the 'net. It may well be something from the client, or something from the network somewhere.
    Here is Thunderbird troubleshooting information, which might give you some ideas of where to look here (even though you're probably using Mail.app):
    http://kb.mozillazine.org/Cannotsendmail
    If you have an email server running locally, the spectrum of potential problems becomes rather larger.

  • Questions Tags Users Badges Unanswered Ask Question 502 - Web server received an invalid response while acting as a gateway or proxy server while accessing wcf hosted in azure

    I have just a simple WCF service and which is protected by azure ACS .I am getting this error while trying to invoke the service from a client.The WCF is hosted as a simple azure website.
          502 - Web server received an invalid response while acting as a gateway or proxy server
          There is a problem with the page you are looking for, and it cannot be displayed. When the Web server (while acting as a gateway or proxy) contacted the upstream content server, it received an invalid response from the content server.
    This is my web.config for the service and I am guessing there is something wrong with it .It is working just fine on local IIS so I am not sure what exactly is causing the issue.Can someone please have a look and see if they can find something or point me to
    a direction.
        <?xml version="1.0"?>
        <configuration>
          <configSections>
            <!--WIF 4.5 sections -->
            <section name="system.identityModel" type="System.IdentityModel.Configuration.SystemIdentityModelSection, System.IdentityModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
            <section name="system.identityModel.services" type="System.IdentityModel.Services.Configuration.SystemIdentityModelServicesSection, System.IdentityModel.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
          </configSections>
          <system.diagnostics>
            <trace>
              <listeners>
                <add type="Microsoft.WindowsAzure.Diagnostics.DiagnosticMonitorTraceListener, Microsoft.WindowsAzure.Diagnostics, Version=2.3.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
                  name="AzureDiagnostics">       
                </add>
              </listeners>
            </trace>
          </system.diagnostics>
          <appSettings>
            <add key="aspnet:UseTaskFriendlySynchronizationContext" value="true" />
          </appSettings>
          <system.web>
            <authentication mode="None"/>
            <customErrors mode="Off"></customErrors>
            <compilation debug="true" targetFramework="4.5" />
            <httpRuntime targetFramework="4.5"/>
          </system.web>
          <system.serviceModel>
            <services>
              <service name="SidService.Service1">
                <endpoint address="https://sidwcfservice.azurewebsites.net/sidservice.svc"
                          binding="ws2007FederationHttpBinding"
                          contract="SidService.IService1" />
              </service>
            </services>
            <bindings>
              <ws2007FederationHttpBinding>
                <binding closeTimeout="10:10:10" openTimeout="10:30:00" sendTimeout="10:30:00" receiveTimeout="10:30:00"  
                        bypassProxyOnLocal="false" transactionFlow="false" maxBufferPoolSize="20000000" maxReceivedMessageSize="20000000"   >
                  <security mode="TransportWithMessageCredential">
                    <message establishSecurityContext="true"   negotiateServiceCredential="true"  issuedKeyType="BearerKey">
                      <issuer address="https://sidaccess.accesscontrol.windows.net/v2/wstrust/13/certificate"></issuer>
                      <issuerMetadata address="https://sidaccess.accesscontrol.windows.net/v2/wstrust/mex" />
                    </message>
                  </security>
                </binding>
              </ws2007FederationHttpBinding>
            </bindings>
            <behaviors>
              <serviceBehaviors>
                <behavior>
                  <serviceAuthorization principalPermissionMode="Always"></serviceAuthorization>
                  <!-- To avoid disclosing metadata information, set the values below to false before deployment -->
                  <serviceCredentials useIdentityConfiguration="true"></serviceCredentials>
                  <serviceMetadata httpGetEnabled="true" httpsGetEnabled="true"/>
                  <!-- To receive exception details in faults for debugging purposes, set the value below to true.  Set to false before deployment to avoid disclosing exception information -->
                  <serviceDebug includeExceptionDetailInFaults="true"/>
                  <serviceSecurityAudit  auditLogLocation="Application"   serviceAuthorizationAuditLevel="Failure" messageAuthenticationAuditLevel="Failure" suppressAuditFailure="true"/>
                </behavior>
              </serviceBehaviors>
            </behaviors>
            <protocolMapping>
              <add binding="basicHttpsBinding" scheme="https" />
              <add binding="ws2007FederationHttpBinding" scheme="https" />
              <add binding="basicHttpBinding" scheme="http" />      
            </protocolMapping>    
            <serviceHostingEnvironment aspNetCompatibilityEnabled="true" multipleSiteBindingsEnabled="false" />
          </system.serviceModel>
          <system.webServer>
            <modules runAllManagedModulesForAllRequests="true">
              <add name="WSFederationAuthenticationModule" type="System.IdentityModel.Services.WSFederationAuthenticationModule, System.IdentityModel.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
    preCondition="managedHandler" />
              <add name="SessionAuthenticationModule" type="System.IdentityModel.Services.SessionAuthenticationModule, System.IdentityModel.Services, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"
    preCondition="managedHandler" />
            </modules>
            <directoryBrowse enabled="true"/>
          </system.webServer>
          <system.identityModel>
            <identityConfiguration saveBootstrapContext="true">     
              <certificateValidation certificateValidationMode="None" revocationMode="NoCheck"/>
              <issuerNameRegistry type="System.IdentityModel.Tokens.ConfigurationBasedIssuerNameRegistry, System.IdentityModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
                <trustedIssuers>         
                  <add name="ACS2SigningCertificate"
                   thumbprint="DAE85FDA621FC090A8B0583we4380C52E484AE36" />
                </trustedIssuers>
              </issuerNameRegistry>  
              <audienceUris>
                <add value="https://sidwcfservice.azurewebsites.net/sidservice.svc" />
              </audienceUris>
              <securityTokenHandlers>
                <add type="System.IdentityModel.Tokens.Saml2SecurityTokenHandler, System.IdentityModel, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
                  </securityTokenHandlers>   
            </identityConfiguration>
          </system.identityModel>
         <system.identityModel.services>
            <federationConfiguration>
              <cookieHandler mode="Default" requireSsl="true" />
              <!--<wsFederation passiveRedirectEnabled="true" issuer="https://localhost:123/issue/wsfed" realm="https://localhost:44300" reply="https://localhost:44300" requireHttps="false"
    />-->
              <wsFederation passiveRedirectEnabled="true" issuer="https://sidaccess.accesscontrol.windows.net" realm="https://sidwcfservice.azurewebsites.net/"  requireHttps="true" />
            </federationConfiguration>
          </system.identityModel.services>
        </configuration>
    This is the IIS log
        #Software: Microsoft Internet Information Services 8.0
        #Fields: date time s-sitename cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) cs(Cookie) cs(Referer) cs-host sc-status sc-substatus sc-win32-status sc-bytes cs-bytes time-taken
        2014-06-11 05:19:51 SIDWCFSERVICE GET / X-ARR-LOG-ID=f7e6da2f-78f0-4c27-9cae-bb1623d150d6 80 - 98.192.67.81 Mozilla/5.0+(Windows+NT+6.3;+WOW64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/35.0.1916.114+Safari/537.36
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 210675 863 694
        2014-06-11 05:21:07 SIDWCFSERVICE GET /sidservice.svc X-ARR-LOG-ID=dd15d3bc-3307-4b26-8787-1399a5e890ed 80 - 98.192.67.81 Mozilla/5.0+(Windows+NT+6.3;+WOW64;+Trident/7.0;+rv:11.0)+like+Gecko - - sidwcfservice.azurewebsites.net
    200 0 0 1800 718 1044
        2014-06-11 05:21:08 SIDWCFSERVICE GET /SidService.svc wsdl&X-ARR-LOG-ID=bb415471-866f-48a1-8b7a-e01d4410779e 80 - 98.192.67.81 Mozilla/5.0+(Windows+NT+6.3;+WOW64;+Trident/7.0;+rv:11.0)+like+Gecko ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445
    http://sidwcfservice.azurewebsites.net/sidservice.svc sidwcfservice.azurewebsites.net 200 0 0 2417 878 0
        2014-06-11 05:21:16 SIDWCFSERVICE GET /Sidservice.svc wsdl/$metadata&X-ARR-LOG-ID=f5c6415d-9c18-4305-aad5-9cbe4fe16d43 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    - - sidwcfservice.azurewebsites.net 200 0 0 3458 813 15
        2014-06-11 05:21:16 SIDWCFSERVICE POST /Sidservice.svc wsdl/mex&X-ARR-LOG-ID=c2e3eeee-f5d9-49bf-b988-c524679409f3 443 - 98.192.67.81 - - - sidwcfservice.azurewebsites.net 500 0 0 1548 1336 62
        2014-06-11 05:21:16 SIDWCFSERVICE GET /Sidservice.svc wsdl&X-ARR-LOG-ID=66bac0fb-476d-4104-bf4b-22d3cd55e906 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    - - sidwcfservice.azurewebsites.net 200 0 0 8138 793 0
        2014-06-11 05:21:16 SIDWCFSERVICE OPTIONS /Sidservice.svc wsdl/_vti_bin/ListData.svc/$metadata&X-ARR-LOG-ID=82bf4ff4-4842-44a6-815e-adb8fdf01d13 443 - 98.192.67.81 - - - sidwcfservice.azurewebsites.net 400 0 0 398 764 31
        2014-06-11 05:21:16 SIDWCFSERVICE POST /Sidservice.svc wsdl&X-ARR-LOG-ID=6d7ba68e-67cd-4596-9bf9-861cab3140c2 443 - 98.192.67.81 - - - sidwcfservice.azurewebsites.net 500 0 0 1548 1324 31
        2014-06-11 05:21:16 SIDWCFSERVICE GET /SidService.svc xsd=xsd0&X-ARR-LOG-ID=d5890f1b-793e-4b13-9c75-ccd133be1cab 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 1688 887 250
        2014-06-11 05:21:16 SIDWCFSERVICE GET /Sidservice.svc wsdl/_vti_bin/ListData.svc/$metadata&X-ARR-LOG-ID=e15347e4-a7c0-4512-b3b7-a0ddf8d4ba6b 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    - - sidwcfservice.azurewebsites.net 200 0 0 3458 857 250
        2014-06-11 05:21:16 SIDWCFSERVICE GET /SidService.svc xsd=xsd2&X-ARR-LOG-ID=377aaf45-1c59-4254-a320-6f4028bf8928 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 992 887 31
        2014-06-11 05:21:16 SIDWCFSERVICE GET /SidService.svc xsd=xsd1&X-ARR-LOG-ID=29fddc12-c18f-42b5-b232-53c9cef6d982 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 2701 887 15
        2014-06-11 05:27:16 ~1SIDWCFSERVICE POST /diagnostics/settings X-ARR-LOG-ID=984746fe-583c-46f0-a241-2817286262f5 443 - 70.37.162.148 Azure-Portal/4.5.00298.11 - - sidwcfservice.scm.azurewebsites.net 204 0 0 462 1286 234
        2014-06-11 05:33:23 SIDWCFSERVICE GET /sidservice.svc X-ARR-LOG-ID=5e5047a3-839b-467d-9d7e-8e79cfe931b7 80 - 98.192.67.81 Mozilla/5.0+(Windows+NT+6.3;+WOW64;+Trident/7.0;+rv:11.0)+like+Gecko ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445
    - sidwcfservice.azurewebsites.net 200 0 0 1800 804 499
        2014-06-11 05:33:27 SIDWCFSERVICE GET /Sidservice.svc wsdl/$metadata&X-ARR-LOG-ID=af5d2b66-366f-465b-9b38-b5fa6c49d103 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    - - sidwcfservice.azurewebsites.net 200 0 0 3458 813 0
        2014-06-11 05:33:27 SIDWCFSERVICE POST /Sidservice.svc wsdl&X-ARR-LOG-ID=a93f30b4-289c-4752-9e32-ba4b23cd5590 443 - 98.192.67.81 - - - sidwcfservice.azurewebsites.net 500 0 0 1548 1324 31
        2014-06-11 05:33:27 SIDWCFSERVICE POST /Sidservice.svc wsdl/mex&X-ARR-LOG-ID=68505196-ed63-4d65-adf2-af6413f450b6 443 - 98.192.67.81 - - - sidwcfservice.azurewebsites.net 500 0 0 1548 1336 31
        2014-06-11 05:33:27 SIDWCFSERVICE GET /Sidservice.svc wsdl/_vti_bin/ListData.svc/$metadata&X-ARR-LOG-ID=8afaa4f2-643e-4534-b8e3-59d2c3755dee 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    - - sidwcfservice.azurewebsites.net 200 0 0 3458 857 0
        2014-06-11 05:33:27 SIDWCFSERVICE GET /Sidservice.svc wsdl&X-ARR-LOG-ID=abb68806-eb59-493f-a727-016115e60357 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    - - sidwcfservice.azurewebsites.net 200 0 0 8138 793 15
        2014-06-11 05:33:27 SIDWCFSERVICE OPTIONS /Sidservice.svc wsdl/_vti_bin/ListData.svc/$metadata&X-ARR-LOG-ID=5e9ebc9a-e0e0-431a-bbb8-02204af9f10e 443 - 98.192.67.81 - - - sidwcfservice.azurewebsites.net 400 0 0 398 764 31
        2014-06-11 05:33:27 SIDWCFSERVICE GET /SidService.svc xsd=xsd0&X-ARR-LOG-ID=2c7a504a-3c31-4875-add8-c17fd018ff01 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 1688 887 234
        2014-06-11 05:33:28 SIDWCFSERVICE GET /SidService.svc xsd=xsd2&X-ARR-LOG-ID=1727b880-7148-4d15-9e9b-0f866def7c2f 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 992 887 31
        2014-06-11 05:33:28 SIDWCFSERVICE GET /SidService.svc xsd=xsd1&X-ARR-LOG-ID=40fc3543-d6a4-46ce-af1b-5aea83fb86df 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 2701 887 110
        2014-06-11 05:42:21 SIDWCFSERVICE GET /SidService.svc X-ARR-LOG-ID=70ce2aaa-a11b-4862-878b-2a67bbeb1bc5 80 - 98.192.67.81 Mozilla/5.0+(Windows+NT+6.3;+WOW64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/35.0.1916.114+Safari/537.36
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 1800 904 46
        2014-06-11 05:42:25 SIDWCFSERVICE GET / X-ARR-LOG-ID=4d51ab01-d247-404f-8d78-3bfda8635a3b 80 - 98.192.67.81 Mozilla/5.0+(Windows+NT+6.3;+WOW64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/35.0.1916.114+Safari/537.36
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 304 0 0 364 961 47
        2014-06-11 05:42:34 SIDWCFSERVICE GET / X-ARR-LOG-ID=31d335ef-604f-4653-930f-6f6cf05664b6 443 - 98.192.67.81 Mozilla/5.0+(Windows+NT+6.3;+WOW64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/35.0.1916.114+Safari/537.36
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 150476 1020 46
        2014-06-11 05:42:35 SIDWCFSERVICE GET /favicon.ico X-ARR-LOG-ID=2fe77edb-dcd9-4fc6-b418-8bdcf2313473 443 - 98.192.67.81 Mozilla/5.0+(Windows+NT+6.3;+WOW64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/35.0.1916.114+Safari/537.36
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 404 0 2 468 971 31
        2014-06-11 05:42:39 SIDWCFSERVICE GET / X-ARR-LOG-ID=bf6e0cfb-7e5b-408f-9881-37e236b98a49 443 - 98.192.67.81 Mozilla/5.0+(Windows+NT+6.3;+WOW64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/35.0.1916.114+Safari/537.36
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 150476 1046 15
        2014-06-11 05:42:44 SIDWCFSERVICE GET /SidService.svc X-ARR-LOG-ID=263108d8-4e68-4b52-94bd-5b87186ba45e 443 - 98.192.67.81 Mozilla/5.0+(Windows+NT+6.3;+WOW64)+AppleWebKit/537.36+(KHTML,+like+Gecko)+Chrome/35.0.1916.114+Safari/537.36
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 1801 1048 0
        2014-06-11 05:57:41 SIDWCFSERVICE GET /sidservice.svc X-ARR-LOG-ID=d2ada703-123a-4842-b480-a150aec1080e 80 - 98.192.67.81 Mozilla/5.0+(Windows+NT+6.3;+WOW64;+Trident/7.0;+rv:11.0)+like+Gecko ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445
    - sidwcfservice.azurewebsites.net 200 0 0 1800 804 967
        2014-06-11 05:57:44 SIDWCFSERVICE GET /Sidservice.svc wsdl/_vti_bin/ListData.svc/$metadata&X-ARR-LOG-ID=d53f52a5-8a77-439c-9ae7-cc58842d456f 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    - - sidwcfservice.azurewebsites.net 200 0 0 3458 857 0
        2014-06-11 05:57:44 SIDWCFSERVICE GET /Sidservice.svc wsdl&X-ARR-LOG-ID=31b4a024-c05d-47a6-91dd-1149f28c73bd 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    - - sidwcfservice.azurewebsites.net 200 0 0 8138 793 15
        2014-06-11 05:57:44 SIDWCFSERVICE GET /Sidservice.svc wsdl/$metadata&X-ARR-LOG-ID=68e0c1da-8eb2-4b0d-ad2b-33a88cde8225 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    - - sidwcfservice.azurewebsites.net 200 0 0 3458 813 0
        2014-06-11 05:57:44 SIDWCFSERVICE OPTIONS /Sidservice.svc wsdl/_vti_bin/ListData.svc/$metadata&X-ARR-LOG-ID=9ca1a5ac-d8d3-4a41-bf7a-e118ef3a0e34 443 - 98.192.67.81 - - - sidwcfservice.azurewebsites.net 400 0 0 398 764 31
        2014-06-11 05:57:44 SIDWCFSERVICE POST /Sidservice.svc wsdl&X-ARR-LOG-ID=d9142d70-b052-4355-85cf-54a14e96209a 443 - 98.192.67.81 - - - sidwcfservice.azurewebsites.net 500 0 0 1548 1324 15
        2014-06-11 05:57:44 SIDWCFSERVICE POST /Sidservice.svc wsdl/mex&X-ARR-LOG-ID=19e8da83-aaaf-4ff8-b5ea-73508c494ac1 443 - 98.192.67.81 - - - sidwcfservice.azurewebsites.net 500 0 0 1548 1336 64
        2014-06-11 05:57:44 SIDWCFSERVICE GET /SidService.svc xsd=xsd0&X-ARR-LOG-ID=252dd0dd-1b84-4675-b855-750f69a49d07 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 1688 887 234
        2014-06-11 05:57:44 SIDWCFSERVICE GET /SidService.svc xsd=xsd2&X-ARR-LOG-ID=cc247b32-9145-4823-9927-d417f12cb360 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 992 887 0
        2014-06-11 05:57:44 SIDWCFSERVICE GET /SidService.svc xsd=xsd1&X-ARR-LOG-ID=ae402fb1-5caf-4e76-997a-6b2551cb3d49 443 - 98.192.67.81 Mozilla/4.0+(compatible;+MSIE+6.0;+MS+Web+Services+Client+Protocol+4.0.30319.34014)
    ARRAffinity=bd0ad669a44c5d1cd8901d2d8014718c9386a2f2ad52bb066cf1cfd489ed6445 - sidwcfservice.azurewebsites.net 200 0 0 2701 887 15

    hi,
    Firstly, I suggest you could see the same error threads (http://social.msdn.microsoft.com/Forums/windowsazure/en-US/5cf817b3-1295-41d7-b156-ce7aa5e4d11e/502-web-server-received-an-invalid-response-while-acting-as-a-gateway-or-proxy-server?forum=windowsazurewebsitespreview
    ). And then, I recommend you could refer to this basic code sample(
    http://social.technet.microsoft.com/wiki/contents/articles/4027.wcf-soap-service-with-federated-authentication.aspx ). And I recommend you could download this code sample and try to use it(http://code.msdn.microsoft.com/Windows-Azure-AD-Access-0dcde385/sourcecode?fileId=71587&pathId=477793108
    Please try it.
    hope this helps.
    Will
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • An error occured while sending mail: SMTP server error.  The server responded: (null)

    I'm getting this set of error messages intermittantly:
    <P>
    An error occured while sending mail: smtp server error
    the server responded: (null) contact email admin
    for assistance
    other message
    an error occured while sending mail: smtp server error
    the server responded: intermail,
    end with quote.quote contact email admin
    for assistance
    <P>
    This problem may occur at low-use times when Messaging is installed with the
    Trend virus protection software on the same system.
    <P>
    Change the version of the Trend software from 3.0 to the older 2.62 version.

    It's possible that your provider has made a change.
    I think STARTTLS usually is used with port 587, instead of the standard SSL port 465.
    Could you look up your provider's current SMTP settings to see whether your "Outgoing Server" settings need to be updated? If it's difficult to translate between your provider's help page and Thunderbird's dialog controls, you could provide a link to your provider's help page.

  • Anyone else seeing "Invalid server response" when logging into VCMA through a web browser?

    I am getting "Invalid server response" when I log into VCMA from Safari on my iPhone. I have the app on my iPad and it will connect and manage my ESXi hosts normally (so I am fairly certain the setup and config of the Virtual Appliance went ok).
    I Googled the error and got some returns about different Virtual Appliances doing the same thing. Seems to be an issue with running VCenter on a Windows 2008 server (which we are). Users reported switching VCenter to Windows Server 2003 boxes and it worked fine.
    Anyone else ran into this and figured it out?
    My environment:
    vCenter Server 4.1.0 - Build:258902
         - running as a VM on ESXi 4.1.0 - Build: 348481
         - running on top of Windows Server 2008 R2 Standard SP1
         - vSphere Client 4.1.0 - Build: 258902
    vCenter Server and VCMA Appliance are on the same subnet.

    I had not done that yet, but thanks to your suggestion I have made that change.
    I am not sure if the above fixed the issue, but I am now able to get the website to load. I was trying to load the page https://vcmaServerIP:5480 which will load a login page. When you try to log into it, I was and am still getting the error I first posted about. By some weird chance I tried to load the page https://vmcaServerIP and got a completely different looking page and was able to log in and work like I should be able to.
    So, lesson learned: do not put the :5480 at the end of the URL and you will get the correct login page.
    Thank you dschubot for your help.

  • Error Parsing Server Response??

    Does anyone know what "error parsing server response, please re-sync" means?
    I have had the worst trouble with using my email on the phone. It works half the time. I finally got it set up to send using my mobile carrier as the outgoing, but now it fails on syncing email.
    Thanks!
    Post relates to: Centro (Sprint)

    ANY LUCK??  I've been havign the same problem for about 8 days or so after the phone and email worked perfectly for several weeks.  When in Account Setup the Communciation Check comes back successful but when I try to Get email it fails and I get the following error message, "Error Parsing Server Response.  Please re-sync."
    Any help or suggestions are appreciated.
    Post relates to: Centro (Verizon)

  • I'm getting "invalid server response" when I try to spider a site

    I want to spider a partial website (to get documentation) but I am getting the error "invalid server response" when I start.
    The site is perfectly viewable with Firefox, Safari and on my iPad.
    Here is the section of the site I wanted to convert to PDF
    http://quartzcomposer.com/patches
    I'm using Acrobat Pro 11.0.03
    Any ideas?
    (By the way, there's no appropriate section for this aspect of Acrobat so that's why I just put it in this "creating, Editing...." section.)

    OK, I interpret spiders as the feelers sent out by search engines -- a different use of the term. Anyway, I got the same error as you on both AA9 and AA XI. The other version was AA5 that simply said General Error. I was able to get the page into Acrobat around the back door. I downloaded the page to my harddrive and then opened the htm file in Acrobat. There are a whole lot of JS files called by the htm file. It did load that page, but I could not get to the next page. So the result is the same as printing to a PDF or using PDF maker in IE (I don't use IE). I tried the URL link with the htm file name and did not get the desired result. I suspect it is something that is non-standard but the browsers allow that is causing the problem. Acrobat sticks pretty close to the HTML standard as I understand it and it is where there are encryptions or other items that it messes up. I am not exactly sure what you are trying to get out of the PDF, but this gives you some idea of what to look at. I had looked at both the HTML source of the site and the site info to try to see if I saw anything strange. What I saw were a lot of calls to JS.
    Bill

  • 502 - Web server received an invalid response while acting as a gateway or proxy server. There is a problem with the page you are looking for, and it cannot be displayed. When the Web server (while acting as a gateway or proxy) contacted the upstream cont

    I am getting error while accessing url of lyncweb.domain.com, dialin.domain.com and meet.domain.com pointing to RP server.
    502 - Web server received an invalid response while acting as a gateway or proxy server.
    There is a problem with the page you are looking for, and it cannot be displayed. When the Web server (while acting as a gateway or proxy) contacted the upstream content server, it received an invalid response from the content server.
    Regards, Ganesh, MCTS, MCP, ITILV2 This posting is provided with no warranties and confers no rights. Please remember to click Mark as Answer and Vote as Helpful on posts that help you. This can be beneficial to other community members reading the thread.

    When i try with https://lyncfrontend.domain.local:4443 and https://lyncfrontend.domain.com:4443 both opens but when i open the external domain name i get certificate .
    ARR version installed is 3.0
    To throw more light on the configuration:
    Lync 2013 implemented, internal domain name is : domain.local and external domain name is : domain.com
    All servers in VMs are with 4 core processor, 24gb ram, 1TB drive.
    Frontend : Windows 2012r2 with Lync 2012 Standard Edition - 1 No (192.168.10.100)
    Edge : Windows 2012 with Lync 2012 Std - 1 No 
    (192.168.11.101 DMZ) in workgroup
    ISS ARR Reverse Proxy 3.0 : Windows 2012 with ARR and IIS configured. (192.168.11.102)
    Certificate : Internal Domain root CA for internal and External (Digicert).
    Internal Network : 192.168.10.x /24
    External Network (DMZ) : 192.168.11.x /24
    Public Firewall NAT to DMZ ip for firewall and RP server. So having two public IP facing external network.
    Edge has : sip.domain.com, webconf.domain.com, av.domain.com
    IIS ARR RP server has : lyncdiscover.domain.com, lyncweb.domain.com, meet.domain.com, dialin.domain.com
    Have created SRV record in public : _sip.tls.domain.com >5061>sip.domain.com, _sipfederationtls._tcp.domain.com>5061>sip.domain.com, _xmpp-server._tcp.domain.com>5269>sip.domain.com
    Installed frontend server using MS Lync server 2013 step by step for anyone by Matt Landis, Lync MVP.
    Internal AD Integrated DNS pointing Front-end
    Type of Record FQDN
    IP Description 
    A sip.domain.com
    192.168.10.100 Address internal Front End  or Director for internal network clients 
    A admin.domain.com
    192.168.10.100 URL Administration pool
    A DialIn.domain.com
    192.168.10.100 URL Access to Dial In 
    A meet.domain.com
    192.168.10.100 URL of Web services meeting
    A lyncdiscoverinternal.domain.com
    192.168.10.100 Register for Lync AutoDiscover service to internal users
    A lyncdiscover.domain.com
    192.168.10.100 Register for Lync AutoDiscover service to external users  
    SRV Service: _sipinternaltls Protocol: _tcp Port: 5061
    sip.domain.com Record pointer services to internal customer connections using TLS 
    External DNS pointing Edge & Proxy
    Type of Record FQDN
    IP Endpoint
    A sip.domain.com
    x.x.x.100 Edge
    A webconf.domain.com
    x.x.x.100 Edge
    A av.domain.com
    x.x.x.100 Edge
    SRV _sip._tls.domain.com
    sip.domain.com: 443 Edge
    SRV _sipfederationtls._tcp.domain.com
    sip.domain.com:5061 Edge
    A Meet.domain.com
    x.x.x.110 Reverse Proxy
    A Dialin.domain.com
    x.x.x.110 Reverse Proxy
    A lyncdiscover.domain.com
    x.x.x.110 Reverse Proxy
    A lyncweb.domain.com
    x.x.x.110 Reverse Proxy
    In IIS ARR proxy server following server farms are added and configured as per link ttp://y0av.me/2013/07/22/lync2013_iisarr/
    In proxy server had setup only following server farm : While running remote connectivity web service test : meet, dialin, lyncdiscover and lyncweb.
    The client inside works fine internally and through vpn. Login with external client also working fine. But we are getting error in MRCA as follows.
    a) While testing remote connectivity for lync getting error : The certificate couldn't be validated because SSL negotiation wasn't successful. This could have occurred as a result of a network error or because of a problem with the certificate installation.
    Certificate was installed properly.
    b) For remote web test under Lync throws error : A Web exception occurred because an HTTP 502 - BadGateway response was received from IIS7.
    HTTP Response Headers:
    Content-Length: 1477
    Content-Type: text/html
    Date: Wed, 14 May 2014 10:03:40 GMT
    Server: Microsoft-IIS/8.0
    Elapsed Time: 1300 ms.
    Regards, Ganesh, MCTS, MCP, ITILV2 This posting is provided with no warranties and confers no rights. Please remember to click Mark as Answer and Vote as Helpful on posts that help you. This can be beneficial to other community members reading the thread.

  • ISE BYOD Microsoft SCEP NDES 802.1x The SCEP server returned an invalid response

    Hello, 
    Using ISE 1.2 with WLC and on-boarding with single SSID.  On occasion the error 'The SCEP server returned an invalid response' is received on the IPHONE being on-boarded - this is intermittent.   The issue resolves itself in time.  Any ideas on troubleshooting?  tnks

    On the NDES server regedit EnforcePassword = 0 and still having issues.  
    This has been done as well;
    It is possible for ISE to generate URLs that are too long for the IIS web server. In order to avoid this problem, the default IIS configuration can be modified to allow for longer URLs. Enter this command from the NDES server CLI:
    %systemroot%\system32\inetsrv\appcmd.exe set config /section:system.webServer/
     security/requestFiltering /requestLimits.maxQueryString:"8192" /commit:apphost

  • Adobe Forms - 'Invalid Server Response' when we click "Submit"

    We created a simple PDF form and built the process flow using Guided Procedures in Portal.  When we click the "Submit" button on the form, we receive a message stating: Invalid Server Response.
    The URL being access is http://<servername:port>/gpcore/iformprocessor/adapter.adobe

    Hi ,
    Please make sure you have given correct SMTP server name in GP configuration tool and configure adpater in "Conffigure Adapters" under GP->Administrator role .
    Regards,
    kishore.

Maybe you are looking for

  • CD's burned on G4 will not open in Windows 98 or Vista.

    Running a G-4 Quicksiler, OS 10.3.9, using Toast Lite 5.2.1. In the past I have been able to burn CD's with Toast Lite in the Mac OS and PC (Hybrid) format and was able to open them in Windows 98 and send them to Vista users that could view them. Wit

  • Convert PO to PDF in 4.0B

    Hi All, I need to convert Purchase Order Sapscript to PDF and either send it by email or download it to the PC. I know this is can be done, at least in SAP version 6, but we are actually under 4.0B. When saving the PO, it prints in background and I c

  • How to avoid user creation popup window in Employee Master Data Creation in SAP B1 9.0

    Hi Experts, I have to create employee master data.When I am creating Employee Master Data it is asking crete new user,If I was not provied user code. Is there any standerd setting to avoid this? Please suggest Thnaks and Regards DEV

  • Scheduling scp through crontab in Solaris

    Hi All, I am trying to schedule the scp command in crontab in solaris production environment. It asks me to type the password seperately. Is there a way to schedule the scp without any interrupts like providing passwords. If there is any script can y

  • Partitions I don't use being automounted - Udisks ?

    Several partitions on my disks are formatted but are (were) not in /etc/fstab since for the moment I an not using them (they used to have a 32 bit ARCH version, I am using 64 bit now). But I started noticing that some programs started showing them (t