HTTP proxy server connection error

My iPhone4S can't connect well to 3G, only works properly with WIFI connection. When i try to navegate with safari or other apps, HTTP proxy error is shown. I only receive notifications, but when i try to open the specify app: server error. Its weird, because for instance, whatsapp and mail clients like sparrow works properly with 3G. I can update my mail and send whatsapp, but i cant receive or send any attachments.
I've tried to reset my iphone, and reset my network configuration, but the problem is still there.
Thanks everyone!

I had this problem. It started when I took my unlocked iPhone from Australia on a Telstra SIM to the U.S. and put in a Straight Talk SIM. I used unlockit.co.nz to generate a new APN for my phone while on Straight Talk, which worked fine.
However, upon coming back to Australia and reinserting my Telstra SIM, I couldn't access HTTP. My VPN would start over 3G and I could get push notifications and data in some apps, but anything that used HTTP, including Safari, would give me the proxy error or a network timeout error. Wifi worked perfectly.
I called Telstra and they said it wasn't them. I was sitting on hold with Apple Care when I thought to try inserting my colleague's Telstra SIM into my phone and, voila, it worked perfectly. I hung up and called Telstra back to complain but while on hold I put my own old Telstra SIM back in only to find that I had fixed my problem.
So try inserting a known, working SIM from the same carrier and see if that fixes your problem. Stopping into one of their stores may be the answer if you don't have any other SIMs handy.
I suspect that somewhere in the iPhone an HTTP proxy for 3G setting was set and stuck, and trying a new SIM erased that setting.

Similar Messages

  • Http proxy server connetion error

    please help me
    i have built a proxy server between iis and client
    client gets successfully connected to proxy but he is not abale to
    retrive the pages stored on iis
    error produeced is : Server not found - UnknowException java.net
    client get error message as : 404 required page not found
    my email address is : [email protected]
    thanks in advance

    Here is a java HTTP server you can use instead of IIS (comes from the burrowing through firewalls article). This class allways sends the same response to any request on port 80 but it should be a good tool to test your proxy server (as to what requests the proxy sends and if the proxy pickes up the response).
    Stop IIS on the IIS pc and run the following class:
    * Copyright (c) 1996 Sun Microsystems, Inc. All Rights Reserved.
    * Permission to use, copy, modify, and distribute this software
    * and its documentation for NON-COMMERCIAL purposes and without
    * fee is hereby granted provided that this copyright notice
    * appears in all copies. Please refer to the file "copyright.html"
    * for further important copyright and licensing information.
    * The Java source code is the confidential and proprietary information
    * of Sun Microsystems, Inc. ("Confidential Information").  You shall
    * not disclose such Confidential Information and shall use it only in
    * accordance with the terms of the license agreement you entered into
    * with Sun.
    * SUN MAKES NO REPRESENTATIONS OR WARRANTIES ABOUT THE SUITABILITY OF
    * THE SOFTWARE, EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
    * TO THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
    * PARTICULAR PURPOSE, OR NON-INFRINGEMENT. SUN SHALL NOT BE LIABLE FOR
    * ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF USING, MODIFYING OR
    * DISTRIBUTING THIS SOFTWARE OR ITS DERIVATIVES.
    /* Originally written by Arthur Van Hoff, modified by Venkat Rao */
    import java.util.*;
    import java.io.*;
    import java.net.*;
    class SimpleChatServer extends Thread {
                public SimpleChatServer(){
                    new Thread(this).run();
             public static void main(String argv1[]) {
                    new SimpleChatServer();
                public void run(){
                 int port = 80;
              ServerSocket ss = null;
              StringBuffer sbHTMFile = new StringBuffer();
              byte[] bteHTM = null;
              try {
                   ss = new ServerSocket(port);
                   String strContent = "<h1>Response from Java HTTP server to any request on port 80</h1>";
                   sbHTMFile.append("HTTP/1.1 200 Java HTTP server\r\nContent-Type:text/html\r\nContent-Length:" + strContent.length() + "\r\n\r\n");
                   sbHTMFile.append(strContent);
                   bteHTM = sbHTMFile.toString().getBytes();
              } catch (IOException e) {
                  ////System.out.println("Could not listen on port: " + port + ", " + e);
                  e.printStackTrace();
                  System.exit(1);
                 } catch (Exception e){
                   e.printStackTrace();
                   System.exit(1);
              System.out.println("HTTP server started...");
              // Loop forever, accepting connections from clients
                    listen:
              while (true) {
                  // Accept a new connection
                  Socket s = null;
                  try {
                   s = ss.accept();
                   System.out.println("accepted");
                  } catch (IOException e) {
                   System.out.println("Accept failed: " + port + ", " + e);
                   e.printStackTrace();
                   System.exit(1);
                  } catch (Exception e){
                   e.printStackTrace();
                   System.exit(1);
                  try {
                   // Got a connection, read the HTTP command
                   DataInputStream in =
                       new DataInputStream(new BufferedInputStream
                                  (s.getInputStream()));
                   String str = in.readLine();
                   System.out.println("     got a request value: " + str);
                   // Create a new OutputStream and send HTTP reply.
                   if(str==null){in.close();continue listen;}
                   BufferedOutputStream outHTM = new BufferedOutputStream(s.getOutputStream());
                   outHTM.write(bteHTM);
                   outHTM.flush();
                   in.close();
                            outHTM.close();
                   s.close();
                   continue;
                  } catch (IOException e) {
                   // Something went wrong
                   e.printStackTrace();
                  } catch (Exception e){
                   e.printStackTrace();
    }

  • Outlook is unable to connect to the proxy server.(Error Code 10)

    Hi,
    I had problems with RPC proxy, I was trying to setup cutover migration.
    So I read somewhere that i need to change the certprincipalname with Set-Outlookprovider.
    But after this change my outlook was not working anymore
    The settings before the change were:
    Name                          Server                        CertPrincipalName             TTL
    EXCH                                                                        
                 1
    EXPR                                                                        
                 1
    WEB                                                                          
                1
    So I set this back to the original (above) but this didn't helped...
    Outlook 2013 and Exchange 2013
    There is a problem with the proxy server's security certificate. The name on the security certificate is invalid or does not match the name of the target site mail.abc-company.com.
    Outlook is unable to connect to the proxy server.(Error Code 10)

    Hi,
    Please make sure the mail.abc-company.com is included in your Exchange certificate which has been assigned with IIS service.
    If possible, please run the following command for double check:
    Get-ExchangeCertificate | FL
    For Autodiscover service, please run
    Test E-mail AutoConfiguration to check if the connection is successful in Log tab and confirm the other services URL can use proper namespace in Results tab for request access.
    If the Autodiscover service fails, please create a SRV record with mail.abc-company.com for Autodiscover service to have a try:
    http://support2.microsoft.com/kb/940881/en-us
    Regards,
    Winnie Liang
    TechNet Community Support

  • Outlook is unable to connect to the proxy server. (Error code 0)

    Hello,
    I have just commenced a Exchange 2007 SP3 to Exchange 2013 SP1 migration following the following guide: http://blogs.technet.com/b/meamcs/archive/2013/07/25/part-1-step-by-step-exchange-2007-to-2013-migration.aspx
    As per the above guide, my 2007 environment is now known as legacy.company.com and my 2013, webmail.company.com.
    I'm using the same certificate on both boxes and it has the names autodiscover.company.com, webmail.company.com and legacy.company.com. All that seems to be working fine.
    OWA is functioning perfectly, hitting https://webmail.company.com will pass the user off to https://legacy.company.com if the mailbox is on 2007. Alongside this, Outlook also has no issues connecting to 2007 mailboxes with the client proxy settings
    being reconfigured to https://legacy.company.com automatically.
    My problem comes when a mailbox is migrated to 2013. OWA functions fine and presents the mailbox but Outlook is unable to connect, presenting the error:
    There is a problem with the proxy server's security certificate.
    The name on the security certificate is invalid or does not match the name of the target site webmail.company.com.
    Outlook is unable to connect to the proxy server. (Error Code 0)
    If I modify the Outlook client's settings and disable "Only connect to proxy servers that have this principal name in their certificate: msstd:webmail.company.com", Outlook connects and functions fine.
    I'm at a loss and have tried everything I can think and find on google. Any suggestions would be greatly appreciated.

    Hi,
    Please refer to the following article :
    http://support.microsoft.com/kb/923575
    Cause:
    This issue may occur if one or more of the following conditions are true:
    The connection to the  server requires a certification authority (CA).
    You have not trusted the certification authority at the root.
    The certificate may be invalid or revoked.
    The certificate does not match the name of the site.
    A third-party add-in is preventing access. 
    Solution:
    To examine the certificate, follow these steps:
    In Microsoft Internet Explorer, connect to the RPC server or to the secure server. For example, type
    https://www.<var>server_name</var>.com/rpc in the Address bar of the Web browser, and then press ENTER.
    Note The <var>server_name</var> placeholder references the RPC server name or the secure server name.
    Double-click the padlock icon that is located in the lower-right corner of the Web browser.
    Click the Details tab.
    Note the information in the following fields:
    Valid to
    The Valid to field indicates the date until which  the certificate is valid.
    Subject
    The data in the  Subject field should match the site name.
    Hope this helps!
    Thanks.
    Niko Cheng
    TechNet Community Support

  • Outlook is unable to connect to the proxy server.(Error Code 10) when users opened Outlook 2010

    Hi All
    Exchange Server - 2013 CU2 (Windows 2012 Standard)
    AD Server - 2003 R2 SP2
    exchange-svr01.domain.com - internal name
    mail.company.net - external name
    When users opened Outlook 2010, they will encountered
    "There is a problem with the proxy server's security certificate. The name on the security certificate is invalid or does not match the name of the target site exchange-svr01.domain.com.
    Outlook is unable to connect to the proxy server.(Error Code 10)"
    I also used the Microsoft Remote Connectivity Analyzer to test RPC/HTTP connectivity.
    The RPC/HTTP test completed successfully.
        Validating the certificate name.
         Certificate name validation failed.
         Host name company.net doesn't match any name found on the server certificate CN=AMAZONA-U59HG9G.
    Testing SSL mutual authentication with the RPC proxy server.
         The test passed with some warnings encountered.
    The certificate common name company.net doesn't match the mutual authentication string provided mail.company.net; however, a match was found in the subject alternative name extension.
     please help.

    Hi PS CL
    [PS] C:\Windows\system32>Get-OutlookAnywhere
    RunspaceId                         : c457e8aa-a0f3-4a0f-aa02-9eff24d02821
    ServerName                         : exchange-svr01
    SSLOffloading                      : True
    ExternalHostname                   : mail.company.net
    InternalHostname                   : exchange-svr01.domain.com
    ExternalClientAuthenticationMethod : Negotiate
    InternalClientAuthenticationMethod : Ntlm
    IISAuthenticationMethods           : {Basic, Ntlm, Negotiate}
    XropUrl                            :
    ExternalClientsRequireSsl          : True
    InternalClientsRequireSsl          : True
    MetabasePath                       : IIS://exchange-svr01.domain.COM/W3SVC/1/ROOT/Rpc
    Path                               : C:\Program Files\Microsoft\Exchange Server\V15\FrontEnd\HttpProxy\rpc
    ExtendedProtectionTokenChecking    : None
    ExtendedProtectionFlags            : {}
    ExtendedProtectionSPNList          : {}
    AdminDisplayVersion                : Version 15.0 (Build 712.22)
    Server                             : exchange-svr01
    AdminDisplayName                   :
    ExchangeVersion                    : 0.20 (15.0.0.0)
    Name                               : Rpc (Default Web Site)
    DistinguishedName                  : CN=Rpc (Default Web
                                         Site),CN=HTTP,CN=Protocols,CN=exchange-svr01,CN=Servers,CN=Exchange
    Administrative
                                         Group (FYDIBOHF23SPDLT),CN=Administrative
    Groups,CN=domain,CN=Microsoft
                                         Exchange,CN=Services,CN=Configuration,DC=domain,DC=COM
    Identity                           : exchange-svr01\Rpc (Default Web Site)
    Guid                               : 33c3cb74-e490-487d-844c-4072334089a1
    ObjectCategory                     : domain.COM/Configuration/Schema/ms-Exch-Rpc-Http-Virtual-Directory
    ObjectClass                        : {top, msExchVirtualDirectory, msExchRpcHttpVirtualDirectory}
    WhenChanged                        : 8/17/2013 10:14:55 AM
    WhenCreated                        : 6/25/2013 1:47:50 PM
    WhenChangedUTC                     : 8/17/2013 2:14:55 AM
    WhenCreatedUTC                     : 6/25/2013 5:47:50 AM
    OrganizationId                     :
    OriginatingServer                  : ADserver.domain.COM
    IsValid                            : True
    ObjectState                        : Changed

  • How do I create a Https Proxy server

    hi,
    I am writing a Proxy server in java. But my pogram do not support https protocol.Could you please tell me how can I implement a https proxy server.some sample code is more helpful.
    This is very URGENT for me.
    Thanks
    Sujith Varghese

    Hi Varghese,
    Reading the thread I am able to make out u r facing the same problem as I do.
    current scenario#1:
    Machine#1 client (using URLConnection("https://...") ----> Machine#2 (Server https port)
    what I want scenario#2
    Machine#3 client (using URLConnection("https://...") ---> Machine#1 (Proxy for https)----> Machine#2 (Server https port)
    In scenario#1
    - I have a Client machine at Location#1 which can connect to on Location#2
    - I only have SSH connection to machine at Location#1
    now this scenario#2 is what I would like to run so that
    - I am able to connect to mc#2 at loc#2 from a machine at loc#3 with mc#3
    - effectively starting a https proxy at location number mc#1 at loc#1.
    Hope that clears the problem domain.
    any help will be greatly appreciated.
    regards-
    _Jagsir                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Will someone please help me set-up Acrobat to send a PDF via webmail?  Acrobat returns a message "Server Connection Error .... Port 143 unavailable"

    Will someone please help me set-up Acrobat to send a PDF via webmail?  Acrobat returns a message "Server Connection Error .... Port 143 unavailable"

    Are you using a Microsoft or Apache web server? If so, you can submit to a server-side script, which will bypass web mail and client-side email software such as OUTLOOK.
    For examples:
    http://www.nk-inc.com/software/pdfemail.net/examples/

  • Server Connection Error

    Hello, I'm trying to scan a document to send to my email and I get the Server Connection Error message.  I've tried several possible solutions that I saw online but nothing has worked.  I've also added the Scan to Email app and it gives me the same message.  Tried unplugging everything also, to no avail.   Thanks

    Hey @Riverside57, 
    Welcome to the HP Support Forum.  
    I understand you're encountering a 'server connection' error message when using your HP ENVY 5530 e-All-in-One Printer. I would like to help.  
    As I take it you're an HP Instant Ink subscriber, with respect to this message I recommend you call our Cloud Services at 855-785-2777. If you live outside the US/Canada Region, please click the link below to get the support number for your region.
    http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Thank you for posting in the HP Support Forum and have a great day!  
    Regards, 
    E-roq
    I work on behalf of HP.
    Please click Accept as Solution if you feel my post solved your issue, it will help others find the solution.
    Click Kudos Thumbs Up on the right to say “Thanks” for helping!

  • Server Connection Error 403 - HP Photosmart 6520

    My scanner all of a sudden stopped working and I got "Server Connection Error 403" 
    How do I fix this?

    Hello @SeanTK ,
    Welcome to the HP forums.
    I understand that you are getting a Server Connection Error 403.
    I would like to help.
    You would only receive the 403 error if you are using scan to email.
    There are a few things you can try to resolve this issue.
    Hard reset the printer.
    While the printer is turned on, unplug the power cord.
    Wait at least 30 seconds.
    Plug the power back into the printer.
    Test the scan to email.
    If you still get the error, try setting a manual DNS.
    The following post by happytohelp01 has instructions for setting the manual DNS.
    It is for a Photosmart 7510, but the steps should be very similar.
    Re: Efax 7510 still won't work after turning off/on ePrint
    If the Error is still present after setting the manual DNS, you should cycle your network.
    Turn off your network devices, including the printer.
    Unplug the power to your router for about a minute.
    Plug the power back into the router.
    Turn on your printer, and the other network devices.
    When the blue wireless light on the printer stops blinking, try the scan to email.
    Another option is to remove then re-enable the printers Web Services. 
    This will act like an uninstall and reinstall.
    Caution: removing the printers Web Services will cause it to permanently loose its ePrint address.
    If the ePrint address has been customised then that address will be lost forever.
    Once you enable the Web Services again you will have to setup the scan to email. 
    This will provide you with a new pin.
    If you need further deatail on any of the steps, please let me know.
    You can also call our Cloud Services at 855-785-2777.
    If you live outside the US/Canada Region, please click the link below to get the support number for your region. http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html
    Hours:
    Mon-Fri. 8am - 11pm, Sat. 9am-8pm - EST
    Mon-Fri. 7am - 10pm, Sat. 8am-7pm - CST
    Mon-Fri. 6am - 9pm, Sat. 7am-6pm - MST
    Mon-Fri. 5am - 8pm, Sat. 6am-5pm - PST
    Aardvark1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!

  • Download Server Connection Error

    I tried updating my desktop skype because it was being cruddy, but the updates wouldn't go through because of a "download server connection error." My friend suggested that I delete my old skype and reinstall it, but when I tried to do so, the same message popped up and offered a link to a supposed "solution." But when I clicked on it, it simply sent me back to the original page in a never ending loop of downloading failures. I looked up what to do, and it seems I'm not the only one with this problem. Others seemed to been having success when sent this link http://download.skype.com/msi/SkypeSetup_7.4.0.102.msi however, went to check it out, the page was deleted so I had no options. So now I'm stuck, and unable to download any program due to this error, which I have no idea what it is or how it's caused. If I could have some assistance ASAP, that would be great! I want my desktop skype back so I can share screens and see my friend while using my desktop. Thank you for your time, Chrissy. 

    On my computer and Internet connection it says it will download the file in 18 seconds but it downloads it in about 8 seconds.   I downloaded 3 copies in less than 30 seconds all over wireless.   If you are having issues downloading it you probably have a slow or intermittent Internet connection.  If you are going wireless try to move closer to your wireless router or go wired.

  • How do i get printer connected to internet "server connection error"??

    NEW PHOTOSMART 5520 wifi all fine, prints fine on wifi, but it just keeps saying SERVER CONNECTION ERROR check internet connection- but i know the internet connection to the house is fine

    Hi there, take a look at this support document for a list of suggestions for the problem of establishing connectivity between the printer and the ePrint service (internet) http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mob​ile-Printing-and-ePrintCenter/ePrint-Apps-Connecti​...
    Work down through them in the order presented to isolate and resolve the problem. Post back with how you go on.
    Best
    If my reply helped you, feel free to click on the Kudos button (hover over the "thumbs up").
    If my reply solved your problem please click on the Accepted Solution button so other Forum users may benefit from viewing the post.
    I am an HP employee.

  • Every time i try and get on the apps it comes up with server connection error

    every time i try and get on to the apps it keeps comeing up with server  connection error -1

    Hi,
    Please refer the link below to troubleshoot the issue
    http://h30434.www3.hp.com/t5/Printer-Networking-an​d-Wireless/Web-Services-problem-Server-connection-​...
    Although I am an HP employee, I am speaking for myself and not for HP.
    --Say "Thanks" by clicking the Kudos Star in the post that helped you.
    --Please mark the post that solves your problem as "Accepted Solution"

  • Server Connect Error HP Photosmart

    I just bought an HP Photosmart 5512
    Im trying to set up the eprint and I keep getting a server connection error that says to check the connection or enter my proxy address. 
    I've tried several solutions and nothing seems to work. Help

    hi jessyb03,  welcome to the forum and sorry to learn that you are having this issue.
    Hope you are doing great otherwise thought  
    Without having an understanding of the configuration that you are using is virtually impossible you me or anybody else in the forum to properly assist you, I will suggest for you to read this Post  and then please include as much information as possible to make it possible for others to actually have a change to formulate a theory and provide you with suggestions.
    There are some general steps that I can recommend to you in the mean time for you to try;
    Make sure that all this is in done.
    - Set an static IP Address for your printer, You will have to do your research to see what is the procedure to accomplish this is your OS, Router and other peripheral in this case most probably your printer.
    - Use Google public DNS Servers 8.8.8.8 and alternate 8.8.4.4 (the reason that I recommend this is because I have use them all the time and have not seem conflict of any kind)
    - Make sure that your printer have the most current firmware and software available for them (remember most of the updates in firmware and software are to FIX ISSUES and sometimes are to add functionality)
    - Make sure that your Operating system is updated (To a lesser extend this are also updated to FIX ISSUES although some times can create them as well, mostly they are update to patch security issues) it may be important.
    - Check if you can accomplish what you are trying to do with all security applications disable sometimes this applications will see and legit process as a thread and treat it as, if you find that this is the case you most to the research that to be able to allow the process being block to work with the current security applications you use.
    - If you are uninstalling some application try to do it in safe mode, In safe mode you OS will load basic and mostly critical drivers the same with applications that start with your operating system this way it may be easier to uninstall any software, application, utility or driver that you are trying to remove. This step is only needed if you are uninstalling something.
    The steps aforementioned will help establish that is not any of this circumstances creating the issue you are experiencing and is a more isolated issue. And if this is the case please post again with all relevant information please I reiterate this will give all visitor of the forum a good chance of the to understand and provide suggestions to you.
    Hope this helps;
    RobertoR
    You can say THANKS by clicking the KUDOS STAR. If my suggestion resolves your issue Mark as a "SOLUTION" this way others can benefit Thanks in Advance!

  • When trying to initiate Web Services getting server connection error

    HP PhotoSmart 5510, 6510 and 7510 all get Server Connection Error when trying to do the initial Web Services setup.  I connected with no problem to my wireless router and have received an ip address but all three printer give me the same error when trying to set up web services.  Any insight would be appreciated.

    Hello cdecicco,
    I answered a post with similar issues where someone was unable to connect to Web Services on their printer. Here is the link:
    http://h30434.www3.hp.com/t5/ePrint-Print-Apps-Mobile/ePrint-3070A/m-p/1250295#M15308
    Let me know if this helps or you need more assistance.
    If I have solved your issue, please feel free to provide kudos and make sure you mark this thread as solution provided!
    Although I work for HP, my posts and replies are my own opinion and not those of HP.

  • API for Proxy Server Connection

    Hi,
    can anybody tell me any API for Proxy Server Connection in java EXCLUDING
    httpclient(apache) and setting system setting and making a urlconnection.

    hey thanx for replying
    Firstly i clear my requirement
    I want some other way of connecting to Proxy Server Irrespective of Httpclient and setting system properties and then making url Connection ,these ways are clear to me .
    I found one API HTTPClient (not belonging to apache Httpclient) its different
    u check this at
    http://www.innovation.ch/java/HTTPClient/api/index-all.html#_S_
    But the problem is this API Does't support NTLM
    i tried to found higher version of this API but i did't get .
    API should support :
    1. NTML
    2.JDK 1.4
    3.SOCKS (not necessary)
    4.HTTP protocol (other like FTP ... not necessary)

Maybe you are looking for

  • Purchase orders and sales documents

    hi what r the transaction codes for purchase orders and sales documents.

  • How much phases power supply does the 875P Neo FIS2R got ??

    How much phases power supply does the 875P Neo FIS2R got  ?( And will it be enough for the Prescott  ?(

  • Dynamic forms struts

    I need to display a page with dynamic form elements. i.e I will not be aware of the form content...how many text boxes, drop downs while writing the concrete form bean. Can anyone let me know how to achieve this using struts.

  • Error in executing command

    Hello, I am trying to execute nqcmd command in unix envt throgh putty to purge cache but it giving me following error....I went through blog, but its not much helpful. I new to unix: below is the error exec(): 0509-036 Cannot load program nqcmd becau

  • Crystal Reports 10 Compatibility with Windows Server 2008 R2

    Hello I'm a developer and I'm in the process of migrating my ASP.NET application that uses crystal reports 10 from a win2k3 server to a win2k8 R2 server. First of all, is CR 10 compatible with windows server 2008 R2? The application is up and running