Acrobat Standard Proxy Authentication

Hi,
When we sign our PDF's we want to use an external timestamping server
So we have configured both a Verisign and Globalsign timestamping server and made one of them as default
Most of the time we got a response from Acrobat saying
"Timestamp signature property generation error:
Transport authorization failure"
When it fails the doc is signed, but using the computers clock and we want to avoid that
But sometime it did work which confused us but I think we have identified the problem with the Proxy authentication
Our proxy requires full authetication against our Active Directory
So when it worked was just because we just before signing had been surfing on the internet and the proxy had cached the credential approvals
So when Adobe tried to get out to the timestamp server the ID was already authorized in the proxy
But without a previous "IE-surfing" it fails, the proxy has nothing in its cache
A network trace confirms this,  we see a "Authentication required" request from the proxy that Acrobat never responds to
The proxy does not accept annonymous requests
IE is configured to use a configration script for its proxy settings
I cant find any relevant Acrobat settings that handles this and googling indicates that Acrobat has problems in this area
But I haven't found anything for our version/release
Now for the question, is Adobe Acrobat Standard 9.3.0 supposed to handle proxys that requires AD authentication?
To bypass the proxy is not an option
Setting a proxy exception for these servers is maybe an option
Prefered is that Acrobat handles this

To update my own question since it might help others
I received assistance through the Adobe support channels
Not what I was hoping for but it clarifies the problem
The reason I asked the question is that we don’t support Shared Review with an Authenticating Proxy server. So this customer workflow isn’t too far off the mark with having a proxy server authentication expectation in the standalone client and wanting a timestamp server time.   The only workaround to this behavior is to do exactly what they have found.  Launch an instance of Internet Explorer, authenticate against the proxy server and then sign the PDF file.

Similar Messages

  • Help with Proxy Authentication

    Hi,
    Can proxy authentication be used in Oracle Standard Edition? I am connecting as a client to the database through the middle tier java application. I have a line of code that tries to get a proxy connection on behalf of the user. I get the following error:
    java.sql.SQLException: ORA-00439: feature not enabled: Enterprise User Security
    Any idea why this occurs?
    thanks

    Hi,
    Can proxy authentication be used in Oracle Standard Edition? I am connecting as a client to the database through the middle tier java application. I have a line of code that tries to get a proxy connection on behalf of the user. I get the following error:
    java.sql.SQLException: ORA-00439: feature not enabled: Enterprise User Security
    Any idea why this occurs?
    thanks

  • Unable to play Content in Content Player: Proxy Authentication req

    Hi All,
    I have my repository manager
    (LSOContent) created in portal.
    I am able to upload content through
    portal and also through Authoring
    Environment.But when I try to play the
    content in portal.
    It shows the error.
    Caused by com.sap.hcm.is.shared.repository.access.RepIOException: Error with Object: /LNetname/v1/IooMapping.txt, Http Error 407:Proxy Authentication Required
    Also when I try to check the content
    player configurations thru the url
    http://sapepdev.intra.sasref.com.sa:500
    00/lms/mediator/config
    The check shows succesful to R3 but
    says not ok to repository.
    This is strange to me.
    I even checked in Component
    Monitoring,my repository manager does
    not show any error and shows green.
    I even tried with the sap standard
    repository documents with the url
    http://sapepdev.intra.sasref.com.sa:500
    00/irj/go/km/docs/documents
    Even for the standard one the check
    shows NOT OK.
    Could anyone please give an idea as what might be wrong here?
    Thanks for the help
    Regards,
    Santhosh

    I managed to solve this issue
    I replaced FQDN of hostname to localhost as my Master Repository and content player are running on the same machine.
    Regards,
    Santhosh

  • Proxy authentication doesn't work with JSSE

    Hello,
    Seems like there is no common way to authenticate with proxy for HTTP and HTTPS.
    Connecting to http://... - works fine, but https://... returns error message:
    Unable to tunnel through 111.111.111.111:8080. Proxy returns "HTTP/1.0 407 Proxy Authentication Required"
    (IP address is intentionally changed in the message above)
    I'm using JSSE with VAJ JDK 1.2 and here is a Java code snippet that works well with HTTP connections:
    Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
    System.setProperty("java.protocol.handler.pkgs",
    "com.sun.net.ssl.internal.www.protocol");
    System.setProperty("https.proxyHost", proxyHost);
    System.setProperty("https.proxyPort", proxyPort);
    System.setProperty("http.proxyHost", proxyHost);
    System.setProperty("http.proxyPort", proxyPort);
    try {
    URL url = new URL("https://www.sun.com");
    URLConnection connection = url.openConnection();
    String authString = proxyUserID + ":" + proxyPasswd;
    String encodedAuthString =
    "Basic " + new sun.misc.BASE64Encoder().encode(authString.getBytes());
    connection.setUseCaches(false);
    connection.setRequestProperty("Proxy-authorization", encodedAuthString);
    Listening to the network traffic helped me to understand that there is a difference between the way HTTP and HTTPS is handled. For some reason HTTPS ignores all the headers that I specify using setRequestProperty().
    Here is example of request and responses sent by HTTPS handler:
    Request:
    CONNECT 198.175.98.32:443 HTTP/1.0
    User-Agent: JSSE
    Proxy response:
    HTTP/1.0 407 Proxy Authentication Required
    Date: Wed, 07 Nov 2001 22:04:11 GMT
    Content-Length: 233
    Content-Type: text/html
    Server: NetCache (NetApp/5.1R2D4)
    Proxy-Authenticate: basic realm="NETCACHE2"
    Please note that there is no Proxy-authorization header in the request above.
    Compare it with HTTPS request sent by Netscape browser:
    Request to proxy:
    CONNECT www.sun.com:443 HTTP/1.0
    Proxy-authorization: Basic am0vbDphrGxHa22lLg==
    User-Agent: Mozilla/4.76 [en] (Windows NT 5.0; U)
    Response:
    HTTP/1.0 200 Connection established
    Proxy-Agent: NetCache NetApp/5.1R2D4
    So, the question is:
    What is the best way to pass "Proxy-authorization" header to proxy server??
    Thanks in advance for your time.

    Hi Guys,
    Just like, i assume, all of you, i've had my battles with javas' handling of https comms from behind a firewall. I'm actually amazed at how something that is a simple combination of protocol and security should become so messy.
    Luckily , i managed to get all my requirements met, but the sad thing is after all that hard work, i'm not much closer to understanding why the standard java sdk (im using 1.4) forces us to endure such painful tasks.
    Really, Java is quite a mature language now, and one of its touted benefits is its applicability to web and internet technologies... so why the messy proxy code when dealing with ssl?
    Anyway, i didn't really come here to b**tch, but rather to point you all to a handy library from apache - httpClient - http://jakarta.apache.org/commons/httpclient.
    After implementing ssl proxy tunnelling and all the fun that goes with it, i found this tool, and subsequently deleted all that ugly code, and let http client deal with all that for me.
    Its seriously simple, heres a snippet:
    httpClient = new HttpClient();
    httpClient.setTimeout(responseTimeoutMillies);
    Protocol myHttps = new Protocol("https", new SSLContextBasedSocketFactory(sslContext), targetServerPort);
    httpClient.getHostConfiguration().setHost(targetServerHost, targetServerPort, myHttps);
    if (useProxy)
         httpClient.getHostConfiguration().setProxy(proxyHost, proxyPort);
            httpClient.getState().setProxyCredentials("my-proxy-realm", proxyHost, new UsernamePasswordCredentials(proxyUser, proxyPassword));
    }This initialises the client, and after this, making http requests is simple:
    String response = null;
    PostMethod postMethod = new PostMethod("/secure/blah.jsp"); // A HTTP Post
    postMethod.setRequestBody("Hello there"); // this is the data in the http post body
    int responseCode = httpClient.executeMethod(postMethod);
    if(responseCode == 200)
        response = postMethod.getResponseBody();...
    As you can see, its alot less painful. It certainly makes me feel better, knowing i don't have to support/maintain the ugly proxy tunnelling code. Give it a shot on your next project.
    Hope it helps.
    Regards
    Marcus Eaton

  • Oracle Proxy Authentication

    Oracle9i 9.2.0.1.0
    WebLogic Server 7.0 SP3
    We want to use Oracle's Proxy Authentication and don't have a clue about
    configuring WebLogic.
    Can anyone assist?
    Brian Dick

    Shailesh Ligade wrote:
    Hello Joe,
    I want to do, what oracle is suggesting me to do, namely,
    InitialContext initial =
    new InitialContext();
    OracleOCIConnectionPool ds =
    (OracleOCIConnectionPool)
    initial.lookup("jdbc/OracleOciDS");
    oracle.jdbc.OracleConnection conn = null;
    Properties p = new Properties();
    p.setProperty(PROXY_USER_NAME, username);
    p.setProperty(PROXY_PASSWORD, pwd);
    conn = ds.getProxyConnection(PROXYTYPE_USER_NAME, p);
    This from the oracle website, I want to add password to the properties. I understandI will have to change jndi lookup i have to modify to match mine. The thing is that,
    what I heard is, weblogic drivers don't support this type of authetication, is that
    true? If they don't then how can I get 'OracleOCIConnectionPool' for a pool configured,
    for oracle oci (or thick) driver, from the bea console?
    Hi. You can do exactly that with a direct Oracle DataSource, but no middleware product
    will be able to interact with them. We could wrap Oracle-specific objects, and make
    methods like getProxyConnection(), but Oracle makes the contiinuing mistake of
    providing these non-standard JDBC methods with no Interface to define them. This
    means that you have to cast to a concrete Oracle class to use the methods, and
    WebLogic classes cannot be Oracle classes. We can both be javax.sql.DataSource,
    because that's an Interface...
    You could contact support at BEA and ask for a feature to provide getProxyConnection
    functionality, but your code would still have to look a little different, at least
    in the cast.
    Joe

  • TL 11g: JPA and DB proxy authentication?

    Hi!
    I posted similar question of JDev 11g forum, but I hope I can get more profound expertise here :)))
    OK. I want to make a proof-of-concept for end-to-end security using a novel 11g technology: I want to use EJB 3.0 / JPA (TopLink) and to enable subject identity propagation to database using Proxy Authentication mechanism. I stress that I want to use JPA (annotated entities) and not TopLink mappings, and to have as simplest as possible code (yes, I know...).
    Now, my idea is to use Session Event Listener (registered in persistance.xml) to set a proxy connection inside a standard unit of work connection defined in persistance.xml (in the proxy connection I would not set username/password in event listener as I want to do that inside EJB Session Facade).
    Then, in EJB Session Fascade I would like to set a username/password for database login in session that will be used to execute a JPA transaction. I discovered that I can get a ServerSession and Active Session from Entity Manager, with:
    EntityManager em = emf.createEntityManager();
    ServerSession serverSession = ((oracle.toplink.jpa.JpaEntityManager)em).getServerSession();
    Session activeJPASession  = ((oracle.toplink.jpa.JpaEntityManager)em).getActiveSession();What I don't know is how to proceed. Do I have to use Server Session to create/open a new Client Session (but, I'm not sure if then I also have to use a manual transactions inside EBJ Session Bean method, or I can rely on container managed transaction?)? Or I can just set username/password on Active Session. Or I can change a DatabaseLogin (ActiveSession.getLogin().setUsername().setPassword())?
    Please, any advice is appreciated. I'm not an expert on JPA/TopLink so I may spend days figuring this out...
    Thanks in advance!
    PaKo

    PaKo,
    We need to make proxy authentication easier through the JPA interface. At present you can configure the event listener using the toplink.session-event-listener to implement the proxy events as described in the documentation. The piece that is missing is the ability to pass in the proxy authentication credentials when acquiring an EntityManager.
    You are correct that you would need to acquire a client session directly (Note: the JpaHelper can help). When acquired you can use this client session to access the database but it will function only as TopLink's native API and not completely as JPA.
    I filed bug 219434 against EclipseLink to address passing the credentials into:
    EntityManagerFactory.createEntityManager(Map properties)I will continue to investigate to get you a better solution.
    Doug

  • Proxy Authentication Support

    All,
    Just figured I'd share this workaround.
    We've been trying to use 10.1.0.4's proxy authentication functionality with our ISA Proxy servers and it just doesn't work with ISA servers due to well...Microsoft's inability to conform to industry standards... :-/
    Anyway, Came up with create and stable workaround. We stood up a copy of this:
    http://ntlmaps.sourceforge.net/
    Which is basically a NTLM Authentication - Proxy Forwarder. Extremely simple Python based daemon.
    Figured this might save you some trouble if you're company forces NTLM Proxy based auth to get to the net and you're wondering how to hook OEM up to Metalink.

    Actually, there's quite a bit more to it than that.
    proxyHost= IP address of the proxy server
    proxyPort= port number of the proxy server
    proxyUser= User name for proxy server authorization
    proxyPwd= password for proxy server authorization
    proxyRealm= proxy server realm
    proxyPropsEncrypted= flag indicating whether proxyUser and proxyPwd are encrypted values.
    However, when configuring for proxy auth by specifying the realm user and pwd for the authentication user, it doesn't work with an Microsoft ISA Proxy despite the fact that both the ISA Proxy is configured for basic auth support and httpclient.jar supports basic auth as well.
    It has "issues" in the negotiation phase. The issue's being worked with Oracle Development. Hence, the reason for my original post. Those who run into the problem will appreciate finding a solution in the search engine. :)

  • Acrobat Standard help pdf

    Hey all,
    After getting terrible support trying to find out why adobe acrobat help function was not working behind our work proxy and finally getting a response "we do not support the use of our apps behind proxies"
    I have made the decision to make the help file offline by downloading the help docs and creating a new shortcut in the Help menu to point to it...I have done this in reader with no problems but with Acrobat I am having two issue....
    1. Where can I get a local copy of Acrobat Standard help pdf? I see plenty of support sites pointing to the professional document but none for Acrobat standard.
    2. How do I disable the Acrobat X Help meny item? I have done this in reader with teh following js command -
              app.hideMenuItem("HelpReader");
         But in Acrobat it must be different and "HelpAcrobat" doesn't work either...
    Hope someone can help!
    cheers
    Davooo

    See: http://help.adobe.com/en_US/acrobat/standard/using/index.html
    There's a link in the upper right corner for the PDF.
    To find out the menu item names, see: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.151.html
    Run the example 2 code in the interactive JavaScript console and inspect the results. The Help menu item names will be near the end.
    Edit: corrected link

  • Proxy Authentication with JDBC Datasource instead of JDBC URL?

    Hello,
    A requirement for my current project (ADF 10g) is that a user should be able to log in with his regular database account. For the moment, this is implemented using Proxy Authentication, as described in the following article:
    http://blogs.oracle.com/jheadstart/2008/01/using_proxy_authentication.html
    For now, we are using a JDBC URL defined in the application module config for the BC. In short: a ProxyAuthConnectionPoolManager class was created that overrides the default ConnectionPoolManagerImpl. The getConnection method has been overridden to create a standard connection (with the username/pw defined on the AM), and additionally, create a proxy connection within this connection with the specific user credentials. The (simplified) code:
        public Connection getConnection(String key, String url, Properties props, String username, String pwd) {
            // first fetch a default connection from the pool through the superclass
            Connection connection = super.getConnection(key, url, props, username, pwd);
            // cast into an OracleConnection
            OracleConnection oraConnection = (OracleConnection) connection;
                // close any proxy sessions that would still exist on the connection
                if (oraConnection.isProxySession()) oraConnection.close(OracleConnection.PROXY_SESSION);
                // get a handle on the session scope
                Map sessionScope = ADFContext.getCurrent().getSessionScope();
                if (sessionScope != null) {
                    // find the user object in the session (the account the user logs in with)
                    ProxyAuthUser user = (ProxyAuthUser) sessionScope.get(ProxyAuthUser.JHS_USER_KEY);
                    if (user != null) {
                        // create a property map with the end user credentials
                        Properties proxyProps = new Properties();
                        proxyProps.put(OracleConnection.PROXY_USER_NAME, user.getDbUsername() + "/" + user.getDbPassword());
                        proxyProps.put(OracleConnection.PROXY_USER_PASSWORD, user.getDbPassword());
                        // open the proxy session
                        oraConnection.openProxySession(OracleConnection.PROXYTYPE_USER_NAME, proxyProps);
                return oraConnection; 
        }Now, this works perfectly when using a JDBC URL. But when I switch the JDBC Datasource the ProxyAuthConnectionPoolManager class is not called anymore. This is all done in code in the Application Server. While using a JDBC Datasource is actually necessary: otherwise for each environment (dev, test, production,...) a different WAR file is needed.
    What class can I override with code similar to the piece above, to open a proxy connection inside the existing connection, when using a JDBC Datasource?
    Your help would be greatly appreciated!
    Chris

    Hello Krasimir,
    Frank Nimphius gave me the solution to this problem. The prepareSession is indeed the best place to put the code:
       private OracleConnection oconn = null;
       public void prepareSession(SessionData SessionData) {
          super.prepareSession(SessionData);
          oconn = ((PrxyTransactionImpl)this.getDBTransaction()).getPrxyConnection();
          // Specify the user that connects through the proxy user and its roles
          Properties prop = new Properties();
          prop.put(OracleConnection.PROXY_USER_NAME,"hr");
          prop.put(OracleConnection.PROXY_USER_PASSWORD,"hr");
          //prop.put(OracleConnection.PROXY_ROLES, roles);
          // Open the proxy session (DB-authenticated users)
          try {
             oconn.openProxySession(OracleConnection.PROXYTYPE_USER_NAME, prop);
          catch (SQLException e) {
             // Close the connection, to avoid connection to remain open after exception
             oconn.abort();
             e.printStackTrace();
       }But Frank also created the following helper classes to extend the ADF BC behavior:
       package oracle.sample.dbprxy.adfbc;
       import oracle.jbo.server.DBTransactionImpl2;
       import oracle.jbo.server.DatabaseTransactionFactory;
        * TransactionFactory that returns PrxTransactionImpl, which is a subclass of
        * DBTransactionImpl2
        * @author Frank Nimphius
       public class PrxyDatabaseTransactionFactory extends DatabaseTransactionFactory {
          public PrxyDatabaseTransactionFactory() {
             super();
           * Override the create method to return an instance of PrxyTransactionImpl instead
           * of DBTransactionImpl2
           * @return PrxyTransactionImpl
          public DBTransactionImpl2 create() {
             return new PrxyTransactionImpl();
       package oracle.sample.dbprxy.adfbc;
       import oracle.jbo.server.DBTransactionImpl2;
       import oracle.jdbc.internal.OracleConnection;
       public class PrxyTransactionImpl extends DBTransactionImpl2 {
          public PrxyTransactionImpl() {
             super();
           * The DBTransactionImpl2 does not expose the connection in a public
           * method. This class is a wrapper to expose the connection to the
           * BC app, so it can be accessed in the ApplicationModuleImpl class
           * @return OracleConnection - SQL Connection
          public OracleConnection getPrxyConnection() {
             return (OracleConnection) this.getJdbcConnection();
       }In the configuration of your Application Module, you have to set the property "TransactionFactory" (normally the last one in the list) to oracle.sample.dbprxy.adfbc.PrxyDatabaseTransactionFactory. This way, the DBTransaction() of your AM will have a getPrxyConnection() method and you will have the connection at your disposal. You won't need the createPreparedStatement in your code anymore.
    To close the connection, this is the code behind my "logout button" on the backing bean. Application Module Pooling and Connection Pooling will take care of the rest for you!
       ExternalContext ectx = FacesContext.getCurrentInstance().getExternalContext();
       HttpSession session = (HttpSession)ectx.getSession(false);
       session.invalidate();Another thing: be sure to set the internalconnection property to a different JDBC Datasource (or file based) than the one you are using to connect to the database (the default value). Otherwise connection pooling will be confused and there will be too much pending database connections.
    This works for me, all sessions are closed in time and logging out seems secure. I do not have my complete, adjusted code here at my disposal, but next week, when I'm back at work, I'll have a look to see if there is anything I forgot to mention. So this should get you started, but I'll keep you posted!
    A huge thank you to Frank again for helping me (/us) out with this problem!! And sorry I forgot to post the answer here sooner. I was too busy with testing it. :-)
    Regards,
    Chris

  • Proxy authentication with WebStart

    I am trying to understand how WebStart handles proxy authentication for HTTP between my WebStart client and the server.
    WebStart prompts the user for the proxy userid/password when my application starts. This occurs when WebStart attempts to download the jars.
    However, now my application starts and wants to start communicating with the host. I am using URLConnection to make HTTP requests back to the same server.
    My question is: "How does WebStart help with the proxy authentication for MY http requests?"
    Does it insert the correct Authentication header on every HTTP request I create?

    I am trying to understand how WebStart handles
    WebStart prompts the user for the proxy
    userid/password when my application starts. This
    occurs when WebStart attempts to download the jars.
    However, now my application starts and wants to start
    communicating with the host. I am using URLConnection
    to make HTTP requests back to the same server.
    My question is: "How does WebStart help with the proxy
    authentication for MY http requests?"
    Does it insert the correct Authentication header on
    every HTTP request I create?Let's split this in two topics.
    1. How is proxy authenication supposed to work
    2. What does Web Start
    Easiest way to figure out Web Start's behaviour is to do some network monitoring. On a Unix box use something like tcpdump to monitor the raw packet traffic and strings|grep for URLs. (There is more advanced monitor software available). Fire up Web Start, authenticate. Watch. You need admin priviledges of course.
    Second method would be to analyse Web Start sources, which is available under the Sun community license.
    Now comes the interesting question, who proxy authentication is supposed to work.
    I had this problem some years ago, when our application was tested from within a corporate network that used a proxy that demanded authentication.
    The tricky part was, that our database server asked for an authentication too!
    So one would have to provide a (user:password) pair to the proxy and another (user:password) pair to the web server in front of the database.
    At that time I found no solution.
    To my best knowledge there is only one http-authentication header in the HTTP header section possible, that carries the base64 encoded (user:password) pair. But I would need two and some means to tell which header of the two is for the proxy and which for the destination web server.
    Second, HTTP is a stateless protocol. This means every HTTP request has no state in common with the HTTP requests before and after.
    Analysis of the just open sourced Mozilla code base showed that Netscape handles proxy authentication against this design rule. Netscpae just issues the same HTTP request for the doc two times. The first time with authentication for the proxy, then the proxy seems to memorize that particular request (so much for the statelessness), and when Netscape fires the second HTTP request, this time with authentication for the destination server, the proxy just lets this request through (BIG BIG security hole here) and the authentication is not fished out by the proxy but will arrive at the destination server.
    I was not able to find out at that time, if this behaviour was handled by any standard/RFC. What would happen if 5 proxies with authorization request were between me and the target server?
    Hope this helps somehow.
    Marc

  • Adobe Reader 9 - proxy authentication

    Since updating to AR9 when checking for updates an "Adobe Reader Updater" window appears indicating that "proxy authentication is required" and asking for username and password,  which on adding the (full) name and password for our proxy redisplays the window.
    On cancelling you get the error 1400.
    What / Whose proxy is this ?  How do you set it ?
    Thanks

    The Adobe Updater is attempting to bypass the standard ISA client authentication by initiating a connection as an Anonymous User rather than allowing the client to connect as a domain member.  Why this would be designed this way is another question.
    Do not change the Proxy settings on your clients, it will have no effect on the Adobe Updater and may disable other functions - you know, the ones that were properly written.
    You will need to create a new ISA rule allowing all users in the protected network access to either a created URL set or Domain set as shown below, whichever you prefer.
    Domain set --
    adobe.com
    *.adobe.com
    URL set --
    http://armmf.adobe.com:443
    http://crl.adobe.com/*
    http://swumpf.adobe.com/*
    https://armmf.adobe.com:443
    https://crl.adobe.com/*
    https://swumpf.adobe.com/*

  • I am unable to download Adobe Acrobat Standard from the cloud says the "Adobe Acrobat is not currently available for your language or platform." I am running Vista and using Chrome

    I just subscribed to Adobe Acrobat Standard from the cloud. I am running microsoft Vista and Google Chrome browser. I get the error message Adobe Acrobat is not currently available for your language or platform. For a list of supported platforms and languages: and I believe I meet the Vista requirements. How do I resolve this issue?

    LorettaKallen are you trying to install Adobe Acrobat Standard 11 utilizing the Adobe Application Manager?  Do you receive the same error message if you use Internet Explorer or Firefox?

  • Mac Adobe Flash Player not supporting Web Proxy Authentication

    Anyone else got an enterprise network where you use web proxies with web authentication and no traffic allowed out except through the proxies?
    You may need to be in the UK for this, but try accessing BBC iPlayer content - http://www.bbc.co.uk/iplayer and you should discover that the content won't play. the error says "This content doesn't seem to be working. Try again later.". The content will never work as the Mac version of Flash (currently 10.1.53.64) is not able to respond to web proxy authentication requests. The BBC use various streaming server which are randomly selected when a user starts a stream and they have no DNS. Just IP addresses. They don't publish a list for security reasons. So it is almost impossible to exempt all their servers from authentication.
    I've logged a bug with Adobe. If you have this issue too, please add a comment and vote so that they can begin to grasp the impact of this problem:
    https://bugs.adobe.com/jira/browse/FP-5161

    I have the same issues in Australia trying to access flash content from the ABC website. The strange thing is the content will play if your leave the browser open for 5min.
    After several packet data captures we identified that it has to do with the amount of time it takes the Mac timeout from the proxy before it plays the video content.
    No solution yet.

  • Is it possible to install and run Acrobat Standard or Pro on a Surface Pro 2 tablet?

    Does anyone know if is possible install and run Acrobat Standard or Professional on a Surface Pro 2?
    and, if is possible to use COM automation to fill AcroForms?
    Thanks and regards,
    Adolfo

    Does it run regular Windows 8 (allowing you to install the same apps as older versions of Windows in the desktop) or does it run Windows 8 RT, where only apps from the Windows Store are allowed? It looks like regular Windows 8, in which case you can try out the free trial of Acrobat Pro.
    If it works, the Acrobat SDK (separate download) has all developer information on Acrobat, and you need it (give up any idea you will find code ready for use on Google...)

  • My app store is not working after installing mavericks. When I open app store it repeatedly asking me to login with apple ID and to provide User name and Password for proxy authentication in a loop.I am a newbie to mac,Please help me.

    My app store is not working after installing mavericks. When I open app store it repeatedly asking me to login with apple ID and to provide User name and Password for proxy authentication in a loop.I am a newbie to mac,Please help me.

    Hmmmm... would appear that you need to be actually logged in to enable the additional menu features.
    Have you tried deletting the plists for MAS?
    This page might help you out...
    http://www.macobserver.com/tmo/answers/how_to_identify_and_fix_problems_with_the _mac_app_store
    Failing that, I will have to throw this back to the forum to see if anyone else can advise further.
    Let me know how you get on?
    Thanks.

Maybe you are looking for

  • Can't transfer files from tower to laptop

    I have a G4 sawtooth tower connected to a Netgear wireless router MR814v2. 2 G4's ( both OS 10.3.9) are connected to the router by ethernet cable and a PC laptop has a Netgear wireless card that also connects it. The 2 G4's share internet, file shari

  • Export setup for apple tv 3 1080p

    hi, I have last version of aperture, I create my slideshow and I want export file in Itunes and watch movie with my apple tv 3, and I cant find correct setup, there is only for apple tv 720p, I try hd 1080 setup but file create is very large 35Gb, I

  • FORMS 6i question

    I am validating a record using when validate record trigger. If the validation returns in a bunch of errors I am displaying all the errors in a stacked canvas in a different block. When I am trying to close the canvas and go back to original block, I

  • Com.sap.pcuigp.xssfpm.java.FPMRuntimeException: No Adobe Form Is Assigned

    Hi Portal Experts, We are using Interactive Adobe Forms for an ISR Scenario running on  EP7.0 NW04s, SAP R/3--ECC6.0 It is working fine from longtime but suddenly i dont know why it is not working now.throwing an FPM Runtime Exception, Recently our R

  • The use only smart cards for several hundred users

    How can I assign soon as possible, use only the smart card for a few hundred users? I also have a group of people who would like to allow the use of a login and password, and smart card. Using GPO to the computer, will be applied to the station, and