Should I export with ReportExportControl.processHttpRequest OR Java I/O libraries to write  result the browser ?

Hi All,
In our web deployment using JRC, we export to PDF on browser.
There are two approach so far to achieve that  (codes attached below) :
(1) Use ReportExportControl.processHttpRequest
(2) Use the Java I/O libraries to write the exported result the browser
The question is :
Which one will take less bandwidth requirement / more efficient ?
Or , is it just the same ?
Thank you very much,
xtanto
The Codes :
1) Use ReportExportControl.processHttpRequest
ExportOptions oExportOptions = new ExportOptions();
            oExportOptions.setExportFormatType(ReportExportFormat.PDF);       
            ReportExportControl oReportExportControl = new ReportExportControl();
            oReportExportControl.setExportOptions(oExportOptions);
            oReportExportControl.setExportAsAttachment(false);            oReportExportControl.setReportSource(reportClientDoc.getReportSource());
            oReportExportControl.processHttpRequest(request, response, getServletConfig().getServletContext(), null);
2) Use the Java I/O libraries to write the exported result the browser
ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream)reportClientDoc.getPrintOutputController().export(ReportExportFormat.PDF);
reportClientDoc.close();
writeToBrowser(byteArrayInputStream, response, "application/pdf", EXPORT_FILE);
From the helper class :
    public static void writeToBrowser(ByteArrayInputStream byteArrayInputStream, HttpServletResponse response, String mimetype, String exportFile) throws Exception {
                    //Create a byte[] the same size as the exported ByteArrayInputStream.
                    byte[] buffer = new byte[byteArrayInputStream.available()];
                    int bytesRead = 0;
                    //Set response headers to indicate mime type and inline file.
                    response.reset();
                    response.setHeader("Content-disposition", "inline;filename=" + exportFile);
                    response.setContentType(mimetype);
                    //Stream the byte array to the client.
                    while((bytesRead = byteArrayInputStream.read(buffer)) != -1) {
                            response.getOutputStream().write(buffer, 0, bytesRead);
                    //Flush and close the output stream.
                    response.getOutputStream().flush();
                    response.getOutputStream().close();

With the JRC, the PDF generation engine would be the same.
One advantage of the PrintOutputController is that it gives you more control over the output - where it goes, how it's streamed out, etc.
(Aside note: for BusinessObjects Enterprise Java SDK, the ReportExportController would be more efficient, since you can specify the Page Server rather than RAS server to create the output.)
Sincerely,
Ted Ueda

Similar Messages

  • With Firefox 6, is there any way to allow cookies for the browsing only and then erase cookies when you close the browser?

    With Firefox 6, is there any way to allow cookies for the browsing session and then automatically erase cookies when the browser is closed? On older versions this option was available.

    For more help, see the '''[[Tabbed browsing]]''' page.

  • Should I start with Entity Object or Java Class Diagram ??

    Hi,
    I come to J2EE / OO application development from non-oo programming world. I am still confused about what step-by-step development approach should I take ?
    Should I :
    - start with creating Entity Object from available database table ?
    - should I start with Java class diagram, followed by generating database tables, then create EO from it ?
    Could anybody please help me, what best practice step by step development approach should I take ?
    Is there any white paper / docs about this ?
    Thank you for your help,
    Krist

    Krist,
    If you are not from the OO world then you may be interested in this new site on OTN (http://otn.oracle.com/formsdesignerj2ee) There is a workshop that starts by looking at an existing datamodel and builds up from there.
    If you are starting from nothing, you can indeed start higher at the Class Model level.
    I recently started discussing data modeling on my blog (http://www.groundside.com/blog/content/SueHarper/) and there are some very good comments(feedback from readers) that may possibly be useful to you.
    If you are new to the UML modeling world, I recommend you read two very good papers by Jan Kettenis on OTN (http://www.oracle.com/technology/products/jdev/collateral/collateral10g.html) They are Getting Strted with UML Class modeling and Getting Started with UML Use Case Modeling.
    Shay pointed you to Toplink. There are a lot of resources on OTN for Toplink, including tutorials.
    Personally? I think if you have time, and if you can, start with a Class Model and perhaps a Use Case model, then you can start planning your application development from a solid base.
    Regards
    Sue Harper

  • Java FX apps won't run on the browser with Linux

    This is my current system configuration:
    Opensuse 12.3 x64
    Nvidia Gefore 9600gt with Proprietary drivers
    Tried both the Oracle Java 7u45 and 7u51 (Installed according to: SDB:Installing Java - openSUSE)
    Google Chrome and Firefox (Latest versions for both)
    I am not able to run any Java FX browser app. When the app starts loading, i just get a gray box inside the browser screen. I've reproduced this with the JavaFX Ensemble sample app as well as my own apps. This is the exception i get on the Java Console when trying to load the Ensemble app:
    ---- FetchDocListTask  docsUrl = http://download.oracle.com/javafx/2/api/
    java.lang.NullPointerException
      at com.sun.prism.es2.ES2SwapChain.<init>(ES2SwapChain.java:79)
      at com.sun.prism.es2.ES2ResourceFactory.createPresentable(ES2ResourceFactory.java:40)
      at com.sun.javafx.tk.quantum.PresentingPainter.run(PresentingPainter.java:59)
      at java.util.concurrent.Executors$RunnableAdapter.call(Executors.java:471)
      at java.util.concurrent.FutureTask.runAndReset(FutureTask.java:304)
      at com.sun.prism.render.RenderJob.run(RenderJob.java:37)
      at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1145)
      at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:615)
      at com.sun.javafx.tk.quantum.QuantumRenderer$PipelineRunnable.run(QuantumRenderer.java:108)
      at java.lang.Thread.run(Thread.java:744)
    CacheEntry[http://download.oracle.com/otndocs/products/javafx/2/samples/Ensemble/Ensemble.jnlp]: updateAvailable=true,lastModified=Wed Dec 31 18:00:00 CST 1969,length=0
    CacheEntry[http://download.oracle.com/otndocs/products/javafx/2/samples/Ensemble/Ensemble.jnlp]: updateAvailable=true,lastModified=Wed Dec 31 18:00:00 CST 1969,length=0

    http://java.sun.com/j2se/1.3/download.html
    After you download the jre file click on it to install it. I'm not sure why AOL isn't registering and the internet explorer is.
    Try putting this into your autoexec.bat file (if your running on windows operating system).
    set classpath=C:\ProgramFiles\JavaSoft\JRE\1.3.1\bin;%PATH%
    Make sure the file path is correct. It's the path to the java.exe file. This ensures programs that use java.exe file to find it.
    You have to restart your computer after changing the autoexec file for it to register.
    Good Luck!

  • Why should we install new plugins , like updated version of flash as plugins are in the browser so firefox should update it ?

    I want to repeat that why should i install Shockwave Flash 10.2 r152 as plugins are in the browser, it will be if you let me know ?

    *Flash is a '''''separate application''''', not part of Firefox
    *Users choose, or not, to install applications with plug-in capability
    *You can find Flash, and other applications with plug-ins for Firefox (and other browsers), on your list of installed applications (Control Panel > Add or Remove Programs, in Windows XP)
    *Flash installs in it own locations on your hard drive
    *The Flash plug-in is made available in Firefox (and other browsers that use the plug-in version) by a Windows registry entry
    *The same is true for the ActiveX version of Flash that is used by IE which must be updated/installed separately from the plug-in version of Flash
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]

  • I need my java program to read HTML tags from the browser...

    so, i've made this java GUI, which can run from my internet explorer toolbar...
    as of now, this program doesn't do anything, it just produces an interface with blank fields
    i want these fields to automatically add information about the current web page on the browser... basically, is there any way that my java program can automatically read the HTML source of the web page opened? i just need it to be able to capture the page's URL and title.
    i programmed it using NetBeans, and it runs from the .jre file outside of NetBeans. I got an icon for it to appear on my IE toolbar by editing my computer's registry. When I click on this icon, my GUI runs, but doesn't do anything. Can I get it to read (i.e. automatically output on one of the textfields on my GUI) the URL and title of the webpage that i'm currently on? I want this to work like Bookmarks/Favourites does, so that means i don't want to download every single webpage before reading from it.
    any help will be greatly appreciated.

    I think that if you wanted to do this, it would involve something like the following:
    Have your toolbar GUI listen on a local port
    Set IE to proxy to localhost at that port
    Tunnel/proxy all requests. This will allow you to intercept the page source and the original request. Between the request URL, the request payload, the HTTP headers of request and response and the response payload, that's everything the browser would 'see'. The downside of the above is that you cannot intercept SSL (HTTPS) requests. You might be able to use the Windows/IE API (native) to fetch page source, but this would definitely be an application and O/S specific solution.
    - Saish

  • I've been using FCP 7 on my iMac for quite some time with great success.  Lately I created a new project and the browser window does not format properly (it's O.K. for previously created projects). The effects window is also not displaying properly.

    Help! My browser window is suddenly not formatting properly. (losing browser formatting, glitch, bug)  I'm using FCP 7 on an iMac with OS X 10.8.5 and have been successfully doing so for a couple of years.  I fear my Final Cut Pro is corrupt and I have to re-install. Anyone ever see this problem? Old projects display and behave fine in the browser, but any new project I create, totally loses the formatting in the browser and the browser also does not display the "effects" window properly anymore. (see below)

    YOU ARE A LIFE SAVER!  I reinstalled the program and everything. THANK YOU! THANK YOU! MY HERO!!!

  • Exporting Crystal Report 2008 under java

    I'm in the process of converting a desktop application from VB6 to Java
    I am also upgrading Crystal Reports from version CR10 to CR2008.
    The application executes and exports the report to a PDF file.
    I cannot get past the error :
    .getPrintOutputController().export(ReportExportFormat.PDF);
    Am I using the correct CR packages? All examples I've found refer
    to CR XI version or lower
    Below is the code supposedly used to execute and create the output file.
    import com.crystaldecisions.reports.sdk.*;             
    import com.crystaldecisions.reports.sdk.*;    
    import com.crystaldecisions.sdk.occa.report.exportoptions.*;    
    import com.crystaldecisions.sdk.occa.report.lib.*;    
    //Java imports.  
    import java.io.*;
    * @author wr0848
    public class JRCExportReport {
         static final String REPORT_NAME = "Employees.rpt.rpt";
         static final String EXPORT_FILE = "C:\\myExportedReport.pdf";
         public static void main(String[] args) {
              try {
                   //Open report.
                   ReportClientDocument reportClientDoc = new ReportClientDocument();
                   reportClientDoc.open(REPORT_NAME, 0);
                   //NOTE: If parameters or database login credentials are required, they need to be set 
    before.
                   //calling the export() method of the PrintOutputController.
                   //Export report and obtain an input stream that can be written to disk.
                   //See the Java Reporting Component Developer's Guide for more information on the 
    supported export format enumerations
                   //possible with the JRC.
                ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream)reportClientDoc.getPrintOutputController().export(ReportExportFormat.PDF);
                   //Release report.
                   reportClientDoc.close();
                   //Use the Java I/O libraries to write the exported content to the file system.
                   byte byteArray[] = new byte[byteArrayInputStream.available()];
                   //Create a new file that will contain the exported result.
                   File file = new File(EXPORT_FILE);
                   FileOutputStream fileOutputStream = new FileOutputStream(file);
                   ByteArrayOutputStream byteArrayOutputStream = new ByteArrayOutputStream
    (byteArrayInputStream.available());
                   int x = byteArrayInputStream.read(byteArray, 0, byteArrayInputStream.available());
                   byteArrayOutputStream.write(byteArray, 0, x);
                   byteArrayOutputStream.writeTo(fileOutputStream);
                   //Close streams.
                   byteArrayInputStream.close();
                   byteArrayOutputStream.close();
                   fileOutputStream.close();
                   System.out.println("Successfully exported report to " + EXPORT_FILE);
              catch(ReportSDKException ex) {
                   ex.printStackTrace();
              catch(Exception ex) {
                   ex.printStackTrace();

    Download and use the Crystal Reports for Eclipse CRJ runtime:
    [http://www.businessobjects.com/campaigns/forms/downloads/crystal/eclipse/datasave.asp]
    Sincerely,
    Ted Ueda

  • Exporting with IDs

    I have a question regarding the use of the Fscript command: [ExportPlan  
    ids]. When should you export with IDs? Is this only advisable for
    deployed applications that have UUIDs assigned? Any advice would be
    appreciated.
    Bradley Wells
    [email protected]
    Strong Capital Management, Inc
    http://www.strong-funds.com

    Brad,
    The reason for using the command [ExportPlan ids] is when you need to
    create a new workspace which will be exactly the same as the one you are
    exporting from. We do this when we are setting up applications for
    failover scenario. The runtime object ids have to be the same for an
    application to failover from one environment to another. You would have
    make distribution from two different repository because they are two
    different environment(or you can copy the appdist directory from one
    environment to another if the nodes have been defined the same). To do
    this you would need the workspaces in both environment to be exactly the
    same. Another scenario where you would use the command is to keep a
    backup of you production repository in pex format. Hope this answers
    you question.
    Kamran Amin
    Forte Technical Leader, Software Engineering
    [email protected]
    203-459-7362
    Oxford Health Plans
    48 Monroe Turnpike
    CT, Trumbull 06611
    http://www.oxhp.com/
    From: Brad Wells[SMTP:[email protected]]
    Sent: Thursday, February 05, 1998 6:35 PM
    To: 'Forte Users - Sage'
    Subject: Exporting with IDs
    I have a question regarding the use of the Fscript command: [ExportPlan ids].
    When should you export with IDs? Is this only advisable for deployed
    applications that have UUIDs assigned? Any advice would be appreciated.
    Bradley Wells
    [email protected]
    Strong Capital Management, Inc
    http://www.strong-funds.com

  • Export with Previous... does not export like previous!

    Hello,
         I As far as I remenber, "Export with Previous..." always exported like the previous export. Unfortunatly, since some times, this function exports only to my "Full - Tiff8" settings.
      Is there any way to fix this settings ?
      I am using Lightroom 3.5 on MacOS 10.6.8 64bit.
      Thanks for you help
      Nicolas DET

    Nicolas Franck DET wrote:
    Hello,
      Could you please try the following:
    1: select a picture
    2: right click, context menu: export -> Export... and select JPEG in the export dialog box
    3: right click, context menu: export -> export TIFF (preset not in dialog box)
    4: you get your file exported as 1 tiff and 1 jpeg.
    5: delete every exported files
    6: right click, context menu: export -> export wit previous
    Which file do you get ?
    Thanks
    1. Selected an image and chose to export it to my desktop as a JPEG.
    2. Selected the same image and exported it to my desktop as a TIFF.
    3. Using the same image, right-clicked and exported with previous after deleting both images from my desktop. Result was a TIFF image, as expected.
    Works for me, not sure what you might be doing wrong or misunderstanding.I have never had a problem with "Export with previous." It is always used the settings that I last configured using the full export dialog. I have been using Lightroom since version 2, am currently using version 4.1.

  • Final cut pro problem when exporting with quicktime movie

    Hello!
    I must have som help beacuse my musicmovie must be finsihed untill today. I have a movie their i had used filters like colour correction and interlace. When i export with USING QUICKTIME CONVERSION and have
    keyfram 10
    bitrate 6000
    faster encode
    size 1920x1080 HD 16:9
    its not a problem the movie works fine all the way.
    But when i export with QUICKTIME MOVIE it dosent work. Some clips are frozen and some are beeing misscoloured. None of them have interlace. Its the same clips that dosent work everytime i had export with QM. I have tried to replace these clips but the same thing is happening. I dont understand why i cant use quicktime movie but it works with quicktime conversion.
    If you have an e-mail i can send you just the part where this happening.
    Please help me!
    Thanks Gabriel

    I am also expriencing the same error. Tried every solution listed so far:
    1. Switch off background rendering. Trash render files. Don't render. Export.
    2. copying the project within Final Cut Pro into another project
    3. remove the following folder: Library > Application Support > ProApps > MIO > RADPlugins > XDCAMFormat.RADPlug
    Nothing worked. I try to export to Vimeo, YouTube, and master. All error right at 9%
    What's going on?

  • JRE 1.7 / Java Plug-in - Long delay in retrieving the applet File(JAR) due to a request to the Domain Controller(on port 53)

    Description:
    A specific group of users/customers (using Windows7 OS with IE and FireFox web browsers) are facing problems with retrieving the applet File, after they upgraded the JRE on the system(PC) to JRE 1.7.0_25-b17 from JRE version 1.6.0_29-b11.
    With JRE 1.7.0_25-b17 it is noticed that when the Java plugin requests for the applet File; it sends a request to the Domain Controller of the user, which causes a delay of 2 to 5 minutes and sometimes hangs. The problem occurs consistently.
    The current temporary workaround for this group of users is to use JRE version 1.6.0_29-b11.
    Problem analysis:
    To investigate the problem the below steps were executed:
    1) Collected the Java console outputbelow details from the user's system. (The complete output is not posted due to lengthy content, though can be added further to this post if required.)
    (a) Works fine with JRE version 1.6.0_29-b11. Kindly refer to Java console output in the code ‘section A’ towards the end of this post.
    (b) The problem occurs with problem with JRE version 1.7.0_25-b17. Kindly refer to Java console output in the code ‘section B’ towards the end of this post. The step where the problem is observed, is indicated as(##<comment>##).
    2) The network settings in the user's browser was checked. Internet Options > Connections > LAN setting
    The configured option is 'Use automatic configuration script' and the value is http://www.userAppX.com/proxy.pac
    This configuration remains the same irrespective of the JRE version in use.
    3) The network settings in the Java Control Panel was checked.
    The used/selected option is "Use browser settings", although values for 'Use proxy server' and 'use automatic proxy configuration script' are filled-in as 'user-proxy.com' and 'http://www.userAppX.com/proxy.pac' respectively.
    This configuration remains the same irrespective of the JRE version in use.
    4) The proxy PAC file was checked and debugging was done for the request 'https://myAppletHost.com/download/...'. The FindProxyForUrl function (including the conditions defined in it, for the hostname and domain checks) returns PROXY user-proxy.com:80
    5) The user also tried the below
    a. Changed the option in the network settings in the browser to 'Proxy server' with Address 'user-proxy.com' and Port '80'
    b. Restarted the browser.
    c. Tried with Java Plug-in 1.6.0_29, JRE version 1.6.0_29-b11. There was no problem and no request to the Domain Controller of the user.
    d. Tried with Java Plug-in 10.40.2.43, JRE version 1.7.0_40-b43. The problem occurs with the delay and a request to the Domain Controller of the user is observed.
    Kindly refer to Java console output in the code ‘section C’ towards the end of this post.
    6) The user also tried setting the below property in the Java Control panel; restarted the browser, and try with JRE 1.7.0_40-b43. The problem stil persists.
    -Djava.net.preferIPv4Stack=true
    7) The Global Policy Management of the Domain Controller was verified by the user. It has GPO for proxy setting but nothing related to Java security.
    Questions:
    The problem seems be specific to a particular (user) environment setup, and the user faces the problem when using JRE 1.7.
    We would like to know if the issue is in the (user) environment setup or in JRE 1.7.
    Could you please help with information/ideas/suggestions to identify the root cause and solution for this problem?
    Section A:
    Java Plug-in 1.6.0_29
    Using JRE version 1.6.0_29-b11 Java HotSpot(TM) Client VM
    User home directory = C:\Users\userA
    basic: Plugin2ClassLoader.addURL parent called for https://myAppletHost.com/download/myApplet.jar
    network: Connecting https://myAppletHost.com/download/myApplet.jar with proxy=HTTP @ user-proxy.com/194.xxx.xx.xx:80
    network: Server https://myAppletHost.com/download/myApplet.jar requesting to set-cookie with "BCSI-CS-b1bb5056c5b0e83f=2; Path=/"
    network: Server https://myAppletHost.com/download/myApplet.jar requesting to set-cookie with "BCSI-CS-b1bb5056c5b0e83f=2; Path=/"
    security: Loading Root CA certificates from C:\Program Files (x86)\Java\jre6\lib\security\cacerts
    security: Loaded Root CA certificates from C:\Program Files (x86)\Java\jre6\lib\security\cacerts
    security: Loading SSL Root CA certificates from C:\Program Files (x86)\Java\jre6\lib\security\cacerts
    security: Loaded SSL Root CA certificates from C:\Program Files (x86)\Java\jre6\lib\security\cacerts
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Internet Explorer ROOT certificate store
    security: Loaded certificates from Internet Explorer ROOT certificate store
    security: Checking if certificate is in Deployment denied certificate store
    network: Connecting https://myAppletHost.com/download/myApplet.jar with cookie "JSESSIONID=0000IK4bEMoqXH10zsl88rwvoRI:175oe9tjd; BCSI-CS-b1bb5056c5b0e83f=2"
    network: Downloading resource: https://myAppletHost.com/download/myApplet.jar
                    Content-Length: 403.293
                    Content-Encoding: null
    Dump system properties ...
    https.protocols = TLSv1,SSLv3
    java.vm.info = mixed mode, sharing
    java.vm.name = Java HotSpot(TM) Client VM
    java.vm.specification.name = Java Virtual Machine Specification
    java.vm.specification.vendor = Sun Microsystems Inc.
    java.vm.specification.version = 1.0
    java.vm.vendor = Sun Microsystems Inc.
    java.vm.version = 20.4-b02
    javaplugin.nodotversion = 160_29
    javaplugin.version = 1.6.0_29
    javaplugin.vm.options =
    os.arch = x86
    os.name = Windows 7
    os.version = 6.1
    trustProxy = true
    deployment.proxy.auto.config.url = http://www.userAppX.com/proxy.pac
    deployment.proxy.bypass.local = false
    deployment.proxy.http.host = user-proxy.com
    deployment.proxy.http.port = 80
    deployment.proxy.override.hosts =
    deployment.proxy.same = false
    deployment.proxy.type = 3
    deployment.security.SSLv2Hello = false
    deployment.security.SSLv3 = true
    deployment.security.TLSv1 = true
    deployment.security.mixcode = ENABLE
    Section B:
    Java Plug-in 10.25.2.17
    Using JRE version 1.7.0_25-b17 Java HotSpot(TM) Client VM
    User home directory = C:\Users\userA
    basic: Added progress listener: sun.plugin.util.ProgressMonitorAdapter@12adac5
    basic: Plugin2ClassLoader.addURL parent called for https://myAppletHost.com/download/myApplet.jar
    network: Connecting https://myAppletHost.com/download/myApplet.jar with proxy=HTTP @ user-proxy.com/194.xxx.xx.xx:80
    network: Server https://myAppletHost.com/download/myApplet.jar requesting to set-cookie with "BCSI-CS-2d4ce94a2ae7b460=2; Path=/"
    network: Connecting http://10.x.x.xx:53/ with proxy=DIRECT
                    (##THE ABOVE REQUEST CAUSES THE DELAY OR HANGS##)
    network: Server https://myAppletHost.com/download/myApplet.jar requesting to set-cookie with "BCSI-CS-2d4ce94a2ae7b460=2; Path=/"
    security: Loading Root CA certificates from C:\Program Files (x86)\Java\jre7\lib\security\cacerts
    security: Loaded Root CA certificates from C:\Program Files (x86)\Java\jre7\lib\security\cacerts
    security: Loading SSL Root CA certificates from C:\Program Files (x86)\Java\jre7\lib\security\cacerts
    security: Loaded SSL Root CA certificates from C:\Program Files (x86)\Java\jre7\lib\security\cacerts
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Internet Explorer ROOT certificate store
    security: Loaded certificates from Internet Explorer ROOT certificate store
    network: Connecting https://myAppletHost.com/download/myApplet.jar with proxy=HTTP @ user-proxy.com/194.xxx.xx.xx:80
    network: Server https://myAppletHost.com/download/myApplet.jar requesting to set-cookie with "BCSI-CS-2d4ce94a2ae7b460=2; Path=/"
    network: Server https://myAppletHost.com/download/myApplet.jar requesting to set-cookie with "BCSI-CS-2d4ce94a2ae7b460=2; Path=/"
    network: Connecting https://myAppletHost.com/download/myApplet.jar with cookie "JSESSIONID=0000UQuXWY5tjxjpwcKHlfJKe_8:175oe9j45; BCSI-CS-2d4ce94a2ae7b460=2"
    network: ResponseCode for https://myAppletHost.com/download/myApplet.jar : 200
    network: Encoding for https://myAppletHost.com/download/myApplet.jar : null
    network: Server response: (length: -1, lastModified: Thu Feb xx yy:yy:yy CET 2013, downloadVersion: null, mimeType: text/plain)
    network: Downloading resource: https://myAppletHost.com/download/myApplet.jar
                    Content-Length: -1
                    Content-Encoding: null
    Section C:
    Java Plug-in 10.40.2.43
    Using JRE version 1.7.0_40-b43 Java HotSpot(TM) Client VM
    User home directory = C:\Users\userA
    basic: Plugin2ClassLoader.addURL parent called for https://myAppletHost.com/download/myApplet.jar
    network: Connecting https://myAppletHost.com/download/myApplet.jar with proxy=HTTP @ user-proxy.com/194.xxx.xx.xx:80
    network: Server https://myAppletHost.com/download/myApplet.jar requesting to set-cookie with "BCSI-CS-1d67c8b6508ca09c=2; Path=/"
    network: Connecting http://10.x.x.xx:53/ with proxy=DIRECT
                    (##THE ABOVE REQUEST CAUSES THE DELAY OR HANGS##)
    network: Checking for update at: https://javadl-esd-secure.oracle.com/update/blacklist
    network: Checking for update at: https://javadl-esd-secure.oracle.com/update/blacklisted.certs
    network: Checking for update at: https://javadl-esd-secure.oracle.com/update/baseline.version
    network: Connecting https://javadl-esd-secure.oracle.com/update/blacklist with proxy=HTTP @ user-proxy.com/194.xxx.xx.xx:80
    network: Connecting https://javadl-esd-secure.oracle.com/update/baseline.version with proxy=HTTP @ user-proxy.com/194.xxx.xx.xx:80
    network: Connecting https://javadl-esd-secure.oracle.com/update/blacklisted.certs with proxy=HTTP @ user-proxy.com/194.xxx.xx.xx:80
    security: Loading Root CA certificates from C:\Program Files (x86)\Java\jre7\lib\security\cacerts
    security: Loaded Root CA certificates from C:\Program Files (x86)\Java\jre7\lib\security\cacerts
    security: Loading SSL Root CA certificates from C:\Program Files (x86)\Java\jre7\lib\security\cacerts
    security: Loaded SSL Root CA certificates from C:\Program Files (x86)\Java\jre7\lib\security\cacerts
    Dump system properties ...
    https.protocols = TLSv1,SSLv3
    java.vm.info = mixed mode, sharing
    java.vm.name = Java HotSpot(TM) Client VM
    java.vm.specification.name = Java Virtual Machine Specification
    java.vm.specification.vendor = Oracle Corporation
    java.vm.specification.version = 1.7
    java.vm.vendor = Oracle Corporation
    java.vm.version = 24.0-b56
    javaplugin.nodotversion = 10402
    javaplugin.version = 10.40.2.43
    os.arch = x86
    os.name = Windows 7
    os.version = 6.1
    trustProxy = true
    active.deployment.proxy.auto.config.url = http://www.userAppX.com/proxy.pac
    active.deployment.proxy.bypass.local = false
    active.deployment.proxy.http.host = user-proxy.com
    active.deployment.proxy.http.port = 80
    active.deployment.proxy.same = false
    active.deployment.proxy.type = 3
    deployment.browser.path = C:\Program Files (x86)\Internet Explorer\iexplore.exe
    deployment.proxy.auto.config.url = http://www.userAppX.com/proxy.pac
    deployment.proxy.bypass.local = false
    deployment.proxy.http.host = user-proxy.com
    deployment.proxy.http.port = 80
    deployment.proxy.override.hosts =
    deployment.proxy.same = false
    deployment.proxy.type = 3                                                                                                                                                                                                                                                            
    deployment.security.SSLv2Hello = false
    deployment.security.SSLv3 = true
    deployment.security.TLSv1 = true
    deployment.security.TLSv1.1 = false
    deployment.security.TLSv1.2 = false
    deployment.security.authenticator = true
    deployment.security.disable = false
    deployment.security.level = HIGH
    deployment.security.mixcode = ENABLE
    PS:
    Since the JRE 1.7.0_25-b17 update, it is noticed that when the Java plugin requests for the applet File; it sends a request to the Domain Controller of the user, which causes a delay of 2 to 5 minutes and sometimes hangs.
    The problem occurs consistently, and also with JRE 1.7.0_45-b18.
    Java Plug-in 10.45.2.18
    Using JRE version 1.7.0_45-b18 Java HotSpot(TM) Client VM
    User home directory = C:\Users\userA
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    cache: Initialize resource manager: com.sun.deploy.cache.ResourceProviderImpl@134a33d
    basic: Added progress listener: sun.plugin.util.ProgressMonitorAdapter@1971f66
    basic: Plugin2ClassLoader.addURL parent called for https://myAppletHost.com/download/myApplet.jar
    network: Connecting https://myAppletHost.com/download/myApplet.jar with proxy=HTTP @ user-proxy.com/194.xxx.xx.xx:80
    network: Server https://myAppletHost.com/download/myApplet.jar requesting to set-cookie with "BCSI-CS-f797d4d262467220=2; Path=/"
    network: Connecting http://10.x.x.xx:53/ with proxy=DIRECT
    network: Connecting http://10.x.x.xx:53/ with proxy=DIRECT
                    (##THE ABOVE REQUEST CAUSES THE DELAY AND SOMETIMES HANGS##)

    My organization is experiencing very similar problems.  We have resolved it through several steps.
    We upgraded the client to Java 8 and we saw in the console that the hanging connection with the Domain Controller no longer occurs.  This may be all that is necessary for your environment as well. 

  • HT1677 I have work programs that don't work with Safari.  How do I change the browser to something that is compatible like IE or Firefox?

    Safari does not work with some of my work applications.  How do I change the browser to IE or Firefox which do work with the applications.  Thanks.

    That picture is Thunderbird... This is listed as Firefox. I have changed the details to Thunderbird.
    That image you have is Thunderbird showing a thread of messages when you click on the collapsed thread.
    I have no idea how you navigate your mail without a folder pane visible, but the squiggly line to the very left of the message line is where you click to expand the thread.

  • Should I export files as TIFFS or as previews with negatives?

    I've been using the LR 3 beta. After I have added captions, copyright etc. to the metadata and made  necessary adjustments to the files, I normally copy the files to a  external hard drive to give to my assistant who retouches on her system  at home. She is retouching in CS3 and does not have LR. Should I export  the previews along with the negatives? Then after retouching, import the  files back into LR? Will she be able to access these files in CS3  without going through LR?  Or should I export as TIFFS? Still trying to get my head around LR so any help would be greatly appreciated.

    This is what I do, Tom.
    When I download the RAW files I store them in a folder called "Originals" within a folder for the shoot/subject/whatever on my hard disc.   I'll end up with a folder called "Lake District" and in that folder will be "Originals", "Derwent Water", "Buttermere" and so on.(Sorry can't do screen takes to show the tree.)  Having imported the RAW files into Lightroom,, added keywords and processed them in Lightroom, I export to CS3 as 16bit TIFFs (I use Adobe rgb at this stage).  I do not save these TIFFs in the Lightroom catalogue because they are going to be changed and be re-saved later.When they have been completed in CS3, I then save them as top quality JPEGs in the subject folder and delete the TIFFs.  (it's easy to go back to LR and re-export at any time.)  Then I reimport those photos to Lightroom and create a collection for them, or add tehm to an existing collection.  Then you can call up the collection and only see the processed version.  The originals will still be in Lightroom and if you click on "All Photographs" in the Library mode, you'll get these up alongside the processed version.
    There may be better ways but this works for me.
    Welcome to Norfolk
    Jeremy - the Norfolk Boy.

  • I tried to export photos from iMac to iPad using a USB flash drive.  The photos are on the drive but when I plug it into the iPad, the iPad says the device requires too much power.  Any ideas of what type of USB flash drive I should use?

    I tried to export photos from iMac to iPad using a USB flash drive.  The photos are on the drive but when I plug it into the iPad, the iPad says the device requires too much power.  Any ideas of what type of USB flash drive I should use?

    You can transfer photos outside of iTunes. I do it all the time. THat said, i have a 50/50 success rate with them. I'd avoid sandisk and kingston, their bundled software triggers the 'too much power' warning.
    I've had mixed luck with lexar, some work, some don't.
    I did have good luck with an older 4 gig geek squad one.
    Look for drives without software on them, without bright LED lights and I haven't gotten any larger than 4 gig to work, but that may just be me.
    For a less troublesome way? h onestly, I use a SD card that I've formatted with the DCIM folder. I've never had one of them trigger the 'too much power' warning. Just make sure they're not SDXC. those don't work.

Maybe you are looking for

  • My MacBook Pro won't boot on the Mac side I get the gray screen and then halfway through the bar loading it turns off?

    My MacBook Pro was downloading apps from iTunes and I shut the computer down at my I laws house or so I thought?  When I pulled the computer out of my backpack it was still on?  I tried to login and it kept spinning so I turned it off and now I only

  • Unit price in the Invoice not printing right value

    Our customer is using RVAJUS for pricing procedure. We using ctypes, PR00, K007, ZRMS, and shipping cost condition types. No tax calculation. However in the invoice print outs, the Unit/1000 price is the Net value for item that gets printed. Which is

  • Where is the January Upgrade for iPod Touch?

    I have been attempting to download the January Upgrade for iPod Touch for days. I cannot find where to download it. Several people have given me links, but it gives me a message box that says it is unavailible in the United States. What do I do?

  • Macbook pro dont start up

    my macbookpro dont startup see the video http://www.youtube.com/watch?v=4nRN0TlE-Os&feature=player_profilepage

  • Find My iphone offline after update

    I updated my find my iphone App yesterday and now i can no longer find my ifphone.  It says its offline.  Even when i log in on my pc to the icloud i can't find a location.  Any idea whats gone wrong here when it was working perfectly fine??