Histogram using JavaFX

Hi all,
Kindly guide me how to create histogram in JavaFX ?
is it possible to do it using BarChart? how to label the bin edges (ticks)?
Thanks,
Gunjan

Download the JDK 8 samples.
Find and run the JavaFX 8 Ensemble application within the sample.
Try out the audio bar chart in the application.
See if the audio bar chart gives you the information you need to build your chart.
The source for all of the sample application in Ensemble is included with the Ensemble application (under BSD license).
Here is the replicated source of the main application for convenience.
* Copyright (c) 2008, 2014, Oracle and/or its affiliates.
* All rights reserved. Use is subject to license terms.
* This file is available and licensed under the following license:
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*  - Redistributions of source code must retain the above copyright
*    notice, this list of conditions and the following disclaimer.
*  - Redistributions in binary form must reproduce the above copyright
*    notice, this list of conditions and the following disclaimer in
*    the documentation and/or other materials provided with the distribution.
*  - Neither the name of Oracle Corporation nor the names of its
*    contributors may be used to endorse or promote products derived
*    from this software without specific prior written permission.
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package ensemble.samples.charts.bar.audio; 
import javafx.application.Application;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.chart.BarChart;
import javafx.scene.chart.CategoryAxis;
import javafx.scene.chart.NumberAxis;
import javafx.scene.chart.XYChart;
import javafx.scene.media.AudioSpectrumListener;
import javafx.scene.media.Media;
import javafx.scene.media.MediaPlayer;
import javafx.stage.Stage;
* Bar chart that shows audio spectrum of a music file being played.
public class AudioBarChartApp extends Application {
    private XYChart.Data<String, Number>[] series1Data;
    private AudioSpectrumListener audioSpectrumListener;
    private static final String AUDIO_URI = System.getProperty("demo.audio.url",
            "http://download.oracle.com/otndocs/products/javafx/oow2010-2.flv");
    private MediaPlayer audioMediaPlayer;
    private static final boolean PLAY_AUDIO = Boolean.parseBoolean(
            System.getProperty("demo.play.audio", "true"));
    public AudioBarChartApp() {
        audioSpectrumListener = (double timestamp, double duration, float[] magnitudes, float[] phases) -> {
            for (int i = 0; i < series1Data.length; i++) {
                series1Data[i].setYValue(magnitudes[i] + 60);
    public void play() {
        this.startAudio();
    @Override
    public void stop() {
        this.stopAudio();
    public Parent createContent() {
        final CategoryAxis xAxis = new CategoryAxis();
        final NumberAxis yAxis = new NumberAxis(0, 50, 10);
        final BarChart<String, Number> bc = new BarChart<>(xAxis, yAxis);
        bc.getStylesheets().add(AudioBarChartApp.class.getResource("AudioBarChart.css").toExternalForm());
        bc.setLegendVisible(false);
        bc.setAnimated(false);
        bc.setBarGap(0);
        bc.setCategoryGap(1);
        bc.setVerticalGridLinesVisible(false);
        // setup chart
        bc.setTitle("Live Audio Spectrum Data");
        xAxis.setLabel("Frequency Bands");
        yAxis.setLabel("Magnitudes");
        yAxis.setTickLabelFormatter(new NumberAxis.DefaultFormatter(yAxis, null, "dB"));
        // add starting data
        XYChart.Series<String, Number> series1 = new XYChart.Series<>();
        series1.setName("Data Series 1");
        //noinspection unchecked
        series1Data = new XYChart.Data[128];
        String[] categories = new String[128];
        for (int i = 0; i < series1Data.length; i++) {
            categories[i] = Integer.toString(i + 1);
            series1Data[i] = new XYChart.Data<String, Number>(categories[i], 50);
            series1.getData().add(series1Data[i]);
        bc.getData().add(series1);
        return bc;
    private void startAudio() {
        if (PLAY_AUDIO) {
            getAudioMediaPlayer()
                    .setAudioSpectrumListener(audioSpectrumListener);
            getAudioMediaPlayer().play();
    private void stopAudio() {
        if (getAudioMediaPlayer().getAudioSpectrumListener() == audioSpectrumListener) {
            getAudioMediaPlayer().pause();
    private MediaPlayer getAudioMediaPlayer() {
        if (audioMediaPlayer == null) {
            Media audioMedia = new Media(AUDIO_URI);
            audioMediaPlayer = new MediaPlayer(audioMedia);
            audioMediaPlayer.setCycleCount(MediaPlayer.INDEFINITE);
        return audioMediaPlayer;
    @Override
    public void start(Stage primaryStage) throws Exception {
        primaryStage.setScene(new Scene(createContent()));
        primaryStage.show();
        play();
     * Java main for when running without JavaFX launcher
    public static void main(String[] args) {
        launch(args);
AudioBarChart.css
.chart-bar { 
    -fx-background-color: #69de01;
    -fx-background-insets: 0;
    -fx-background-radius: 0;
.data0.chart-bar { -fx-background-color: #69de01; }
.data1.chart-bar { -fx-background-color: #69de01; }
.data2.chart-bar { -fx-background-color: #69de01; }
.data3.chart-bar { -fx-background-color: #69de01; }
.data4.chart-bar { -fx-background-color: #69de01; }
.data5.chart-bar { -fx-background-color: #69de01; }
.data6.chart-bar { -fx-background-color: #69de01; }
.data7.chart-bar { -fx-background-color: #69de01; }
.data8.chart-bar { -fx-background-color: #75e101; }
.data9.chart-bar { -fx-background-color: #75e101; }
.data10.chart-bar { -fx-background-color: #75e101; }
.data11.chart-bar { -fx-background-color: #75e101; }
.data12.chart-bar { -fx-background-color: #75e101; }
.data13.chart-bar { -fx-background-color: #75e101; }
.data14.chart-bar { -fx-background-color: #75e101; }
.data15.chart-bar { -fx-background-color: #75e101; }
.data16.chart-bar { -fx-background-color: #86e701; }
.data17.chart-bar { -fx-background-color: #86e701; }
.data18.chart-bar { -fx-background-color: #86e701; }
.data19.chart-bar { -fx-background-color: #86e701; }
.data20.chart-bar { -fx-background-color: #86e701; }
.data21.chart-bar { -fx-background-color: #86e701; }
.data22.chart-bar { -fx-background-color: #86e701; }
.data23.chart-bar { -fx-background-color: #86e701; }
.data24.chart-bar { -fx-background-color: #9aee01; }
.data25.chart-bar { -fx-background-color: #9aee01; }
.data26.chart-bar { -fx-background-color: #9aee01; }
.data27.chart-bar { -fx-background-color: #9aee01; }
.data28.chart-bar { -fx-background-color: #9aee01; }
.data29.chart-bar { -fx-background-color: #9aee01; }
.data30.chart-bar { -fx-background-color: #9aee01; }
.data31.chart-bar { -fx-background-color: #9aee01; }
.data32.chart-bar { -fx-background-color: #b0f000; }

Similar Messages

  • How do i use multiple threads( very much real time), using JavaFX?

    I'm creating an application, using JavaFX because one can create awesome GUI using JavaFX. I need to know how to create real time multiple threads using javafx.
    JavaFX doesn't support creation of multiple threads, but i think there is another way of doing it. I need it work in real time as my application works with an hardware (wacom intous 3 tablet), and i need mutiple threads to get all the parameters from the stylus of the tablet simultaneously...
    any code which will help me out or explaination on how to go about this is appreciated...
    Help required quickly...

    See example at
    [http://jfxstudio.wordpress.com/2009/06/09/asynchronous-operations-in-javafx/|http://jfxstudio.wordpress.com/2009/06/09/asynchronous-operations-in-javafx/]

  • How to create a muli line text area using JavaFx

    Hi all,
    Since the preview SDK does not contain TextArea any more, I am wondering how to create a muli line text area using JavaFX. The behaviour of this text area/field should be somehow similar to JTextArea in Swing or StyledTextWidget in SWT.
    Does JavaFX have any support for this? What would be a sensible approach to create such a widget?
    Thanks for your suggestions,
    br michael

    This is a pretty old thread (I know I came across this while searching for something similar recently), but I figured I'd throw this out there in case other people might find this useful. As I write this, JavaFX's latest version is 1.3... which may have added the needed functionality since the last post.
    You can now create a multi-line text area using a TextBox and by specifying the nubmer of lines and setting the "multiline" value to true. It may not offer all of the same functionality as JTextArea, but it did the job for what I needed... newlines by pressing enter, scrollbar if text surpasses height, etc.
    Here's a simple example:
    Group {
       content: [
          TextBox {
             text: "This is a multi-line textbox"
             lines: 10  // <-- this may/may not be necessary depending on your situation. Default is 5.
             multiline: true
    }Edited by: loeschg on Jul 29, 2010 2:59 PM

  • If I Use JavaFX to Create a Game Do I Have to Release the Source Code?

    Hello,
    I've asked this question before, but I just thought I would try it again now
    that version 1.0 is out.
    If I Use JavaFX to Create a Game Do I Have to Release the Source Code?
    Thanx in advance.

    Could you please point me to a resource describing "the JavaFX Runtime license"? I'm trying to find answers to the following questions:
    1. I'd like to use Scenario.jar from the JavaFX project in a desktop app that is not using Webstart and is not an applet. Will I be able to ship the jar with my software?
    2. Can JavaFX applications be distributed as commercial software in the absence of a Web connection?
    What's not clear to me is which is the real license for Scenario.jar (as shipped with JavaFX). Is it the one in openjfx-compiler's trunk, or the one that comes with the JavaFX SDK (which is very vague about redistribution)?

  • Histogram using CL_GUI_CHART_ENGINE

    Hi,
       I am trying to build a histogram using CL_GUI_CHART_ENGINE as a better looking chart than the standard histogram chart in QGP1(2) transactions.  First of all even if I use the same class as QGP1(2), the columns are showing up at different locations.The other problem is bell curve (gaussian distribution curve) is not being displayed sometimes, and other times, it shows up as a very small curve. 
    Are there any parameters that can be tweaked to manipulate the bell curve.  I could not find any parameters.  I can send you the config/data xml files, if you need any additional informations.  The Data file is a simple histogram xml file with the y-values, and nothing more.
    Thanks.
    Albert

    Hi All,
       SAP has fixed the problem.  You have to download the latest GUI patch.  Scaling issue has been resolved, and SAP has also provided a GausianScale parameter that will allow us to manipulate the height of the bell curve.  By default it 30% of the maximum bar height.
    Albert

  • Looking for working example using javafx.builders.HttpRequestBuilder

    Hi,
    Is there any working example using javafx.builders.HttpRequestBuilder and javafx.io.http.HttpRequest to communicate with application server?
    Thanks in advance.
    LD

    Hi,
    Is there any working example using javafx.builders.HttpRequestBuilder and javafx.io.http.HttpRequest to communicate with application server?
    Thanks in advance.
    LD

  • A RCP Application using javafx deployed by java web start,in jre8u25 run have problem.

    a RCP Application using javafx deployed by java web start,in jre8u20 can use jre7run the applicat,but in jre8u25 use jre7run application have problem.
    in jre8u20 use jre7 run the application can run success.
    but in jre8u20 the control print:
    java.lang.UnsupportedClassVersionError: com/sun/javafx/runtime/VersionInfo : Unsupported major.minor version 52.0
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at com.sun.deploy.config.JfxRuntime.runtimeForPath(Unknown Source)
    at com.sun.deploy.config.JREInfo.<init>(Unknown Source)
    at com.sun.deploy.config.JREInfo.setInstalledJREList(Unknown Source)
    at com.sun.deploy.config.ClientConfig.storeInstalledJREs(Unknown Source)
    at com.sun.javaws.Main.launchApp(Unknown Source)
    at com.sun.javaws.Main.continueInSecureThread(Unknown Source)
    at com.sun.javaws.Main.access$000(Unknown Source)
    at com.sun.javaws.Main$1.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    the reason (i think) is that the application will use javafx's com.sum.javafx.runtime.VersionInfo,i use e(fx)clipse load the javafx runtime.in jre8u20,the web start use jre7's class.in jre8u25,the web start use jre8's class.
    so i use jre7 run the application get this result.
    how could i solve this problem?

    Hi,
    I have created client stubs for a webservice using axis wsdl2java tool. When I try calling these stubbed methods from JUnit tests, they are working fine but when I try to execute the jar (it is a swing) I get the following exception:
    Exception in thread "main" java.lang.NoClassDefFoundError: javax/xml/rpc/Service
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    at com.Gudds.SeCURE.MainUI.<init>(MainUI.java:76)
    at com.Gudds.SeCURE.Main.Start(Main.java:62)
    at org.owasp.webscarab.WebScarab.main(WebScarab.java:34)
    I have put the jaxrpc.jar in the classpath and I suppose this jar has the java.xml.rpc.service class but I donot understand why it fails while executing the jar but works fine from the eclipse IDe. Plase help me.
    Regrdas,
    Kundan

  • Fatal errors using JavaFX ChoiceBox, Tooltip, Popup in Eclipse (RCP) View

    I'm using JavaFX within an Eclipse RCP application. Any JavaFX popup (ChoiceBox, Tooltip, etc..) within an eclipse view causes a fatal exception to occur when clicking on the popup. The popups do appear, but clicking on them causes the fatal error.
    I created a standalone JavaFX application to confirm that the Popups work fine in that environment. They do.
    I also created a standalone SWT-based application (outside of an RCP) that embeds the FXCanvas within an SWT shell and the problem doesn't occur there either.
    But when the Combo is contained in an FXCanvas within and RCP view, the fatal exception occurs.
    Has anybody else seen this behavior?
    I tried it with JavaFX 2.0.2, 2.1 b17, 2.1 b19 (all 32bit)
    I'm using JRE 6.0_30-b12 (32bit) on Windows 7 (64bit)
    My RCP target platform is based on eclipse 3.6 (galileo).
    Thanks!

    The problem is described in http://javafx-jira.kenai.com/browse/RT-20883. e(fx)clipse 0.0.14 (http://tomsondev.bestsolution.at/2012/05/29/efxclipse-0-0-14-released/) which I've just released fixes the problem. Unfortunately it does not work with 3.6 because I'm using OSGi API only available > 3.7.0

  • Using javafx and awt together in MAC

    I have read blogs about not using SWT and AWT libraries together in MAC systems. So, are their any constraints for JAVAFX and AWT as well ?
    Please refer to this link.
    I am having a similar case of writing an image to disk and I am using javafx, the line doesn't seem to work on my mac.
    Message was edited by: abhinay_agarwal

    The link you posted on SWT/AWT integration is irrelevant to JavaFX/AWT integration.
    To learn abount JavaFX/Swing integration, see the Oracle tutorial trail:
    JavaFX for Swing Developers: About This Tutorial | JavaFX 2 Tutorials and Documentation
    As Swing is based on AWT, the tutorial trail is equally applicable whether you are integrating JavaFX with only AWT or with the full Swing toolkit.
    In my opinion, there is little reason to integrate JavaFX with just the AWT toolkit as there is little of value that AWT would provide that JavaFX does not already provide.
    JavaFX integrates fine with ImageIO to write files to disk, Oracle provide a tutorial for that (see the "Creating a Snapshot" section):
    Using the Image Ops API | JavaFX 2 Tutorials and Documentation
    //Take snapshot of the scene
    WritableImage writableImage = scene.snapshot(null);
    // Write snapshot to file system as a .png image
    File outFile = new File("imageops-snapshot.png");
    try {
      ImageIO.write(
        SwingFXUtils.fromFXImage(writableImage, null),
        "png",
        outFile
    } catch (IOException ex) {
      System.out.println(ex.getMessage());

  • How to use JavaFX in LAN, No internet

    Hi, I need help, My PC works in LAN, not chance to link internet.
    so I can not link dtfx.js and dl.javafx.com, I can not use JavaFX in browser.
    Thanks.

    See this forum thread:
    JavaFX

  • How to invoke widgets using Javafx

    Hi,
    Can anyone please say how we can invoke widgets from a javafx code?
    Please help.
    Any help in this regard will be well appreciated with points.
    Warm Regards,
    Anees

    If you follow this link , you can see the example of a widget.
    [http://eco.netvibes.com/export/blog/230491/google-news|http://eco.netvibes.com/export/blog/230491/google-news]
    We can use this widget in an html, by just inserting the code given there in our html page.
    Instead of an html page, I want to use this code and display it in a container as shown in the examples in the link [https://docs.google.com/Doc?id=dfzrknk_33gvv8z2f4&hl=en|https://docs.google.com/Doc?id=dfzrknk_33gvv8z2f4&hl=en]
    I need to do this using javafx.
    This is my exact requirement.
    If I am not cllear with any portion of my question, please say.
    Regards,
    Anees

  • I use javaFx WebViewBrowser to download ZIP file, the page no action

    I use javaFx WebViewBrowser to download ZIP file, the page no action; other tools example chrome ,ie can download the zip file .
    so can you writer a download zip file example for me ?
    thanks ,my english is so bad ,sorry !!! :)

    WebView doesn't have a built in file downloader - you have to implement it yourself.
    You can find a sample implementation for file downloads in JavaFX here =>
    http://www.zenjava.com/2011/11/14/file-downloading-in-javafx-2-0-over-http/
    That sample does not include the hooks into WebView to trigger the downloads.
    You will need to trigger off the mime type or the file extension in the url.
    A rudimentary sample trigger a download off of webview is provided in the code below.
    For a nice solution, you would probably want to spin the downloader off with it's own UI similar and manage the download itself as a JavaFX Task similar to how the zenjava component works.
    Code adapted from => http://code.google.com/p/willow-browser/source/browse/src/main/java/org/jewelsea/willow/BrowserWindow.java
    // monitor the location url, and if it is a pdf file, then create a pdf viewer for it, if it is downloadable, then download it.
    view.getEngine().locationProperty().addListener(new ChangeListener<String>() {
      @Override public void changed(ObservableValue<? extends String> observableValue, String oldLoc, String newLoc) {
        if (newLoc.endsWith(".pdf")) {
          try {
            final PDFViewer pdfViewer = new PDFViewer(false);  // todo try icepdf viewer instead...
            pdfViewer.openFile(new URL(newLoc));
          } catch (Exception ex) {
            // just fail to open a bad pdf url silently - no action required.
        String downloadableExtension = null;  // todo I wonder how to find out from WebView which documents it could not process so that I could trigger a save as for them?
        String[] downloadableExtensions = { ".doc", ".xls", ".zip", ".tgz", ".jar" };
        for (String ext: downloadableExtensions) {
          if (newLoc.endsWith(ext)) {
            downloadableExtension = ext;
            break;
        if (downloadableExtension != null) { 
          // create a file save option for performing a download.
          FileChooser chooser = new FileChooser();
          chooser.setTitle("Save " + newLoc);
          chooser.getExtensionFilters().add(new FileChooser.ExtensionFilter("Downloadable File", downloadableExtension));
          int filenameIdx = newLoc.lastIndexOf("/") + 1;
          if (filenameIdx != 0) {
            File saveFile = chooser.showSaveDialog(view.getScene().getWindow());
            if (saveFile != null) {
              BufferedInputStream  is = null;
              BufferedOutputStream os = null;
              try {
                is = new BufferedInputStream(new URL(newLoc).openStream());
                os = new BufferedOutputStream(new FileOutputStream(saveFile));
                int b = is.read();
                while (b != -1) {
                  os.write(b);
                  b = is.read();
              } catch (FileNotFoundException e) {
                System.out.println("Unable to save file: " + e);
              } catch (MalformedURLException e) {
                System.out.println("Unable to save file: " + e);
              } catch (IOException e) {
                System.out.println("Unable to save file: " + e);
              } finally {
                try { if (is != null) is.close(); } catch (IOException e) { /** no action required. */ }
                try { if (os != null) os.close(); } catch (IOException e) { /** no action required. */ }
            // todo provide feedback on the save function and provide a download list and download list lookup.
    });

  • Help needed to create desktop application background using javaFx.

    Hi,
    i need to create background for my desktop application in JavaFx. It have top side bottom menu bars to place icon buttons for my app. The whole scene need to resize. I had tried this using
    JavaFx composer. But my issue is like in java swing i can not able to create different panels and set different styles. Please help me on this issue.
    Thankyou.

    Hi mate take a rectangle and fill it to scene width !
    use fill gradient and bind it to your main scene.width
    for example :
    Rectangle {
    fill: color.Blue
    stroke: LinearGradient {
    startX: 125.0, startY: 0.0, endX: 225.0, endY: 0.0
    proportional: false
    stops: [
    Stop { offset: 0.0 color: Color.web("#1F6592") }
    Stop { offset: 1.0 color: Color.web("#80CAFA") }
    use appropriate start and offset then bind it to scene width and height.
    width : bind scene.width;
    height : bind scene.height ;

  • Using JavaFX 8 with SecurityManager enabled

    We like to use JavaFX 8 in a JVM that has SecurityManager enabled. Is there a list available of Permissions we have to grant to JavaFX's CodeSource?

    I am the tech lead of the UI Controls team at Oracle. Don't dismiss things too quickly as "buggy beta software" - now is the perfect time for us to fix bugs that you may be experiencing, and in many cases we may not even know there is a bug unless you file a bug report on us. Please take the time to go to http://javafx-jira.kenai.com and file a bug report under 'runtime' and 'controls' so that we can take a look.
    Thanks!

  • Using JavaFx in Web application

    I want to use JavaFx in Web Application which consists of JSP or Servlet. How can I use it ?

    CRatan, this is a very obscure (but valid) question.
    Where does JavaFX fit into Web Applications?????
    Well, normally you use a html 'view' that is generated from jsp. Depending on how you use servlets (and lets face it a servlet can provide almost anything you can dream of providing the request/response is delivered over http(s)) you might typically be providing service to that html page derive's it's content from. JavaFX is a 'view' that is not html. It sure can use http request and fetch data from a servlet and provide a UI outside the browser container (you can lanch it... applet, mobile, or desktop).
    In the coming days/months/years I would expect to see http request/session EE JavaFX client side support be introduced or documented more so than what it is now (so that JavaFX client applications can maintain stateful https sessions between itself and server) much like a browser does. There is DEFINITELY java support for this already (see HTTPClient) but this is something you need to learn yourself. You could also step outside the square by NOT using http (but firewalls do often suck).
    I hoped I helped - I try but I don't charge.

Maybe you are looking for

  • MSI GTX 970 not being detected on first PCI-E 3.0 slot of MSI Gaming 5 motherboa

    Hi guys. So I recently got myself a new build and some of the components include a MSI GTX 970 Gaming 4G GPU and a MSI Gaming 5 mobo. When installing the GPU to the motherboard I found that for some reason nothing was being displayed on the screen. T

  • Revenue analysis report: sap report S_ALN_01001159 : missing information

    Hello, Athough profit/loss types were linked to all update types, the profit&loss type for accrued interest update type are not reported for an unkown reason. Does anyone have good or bad experience with the standard version of this report? Any clue

  • Spartan e3 Analog 2 Digital

    Hi, i've a problem concerning analog to digital conversion using my spartan e3 fpga. I set the PreAmp as recommended in the User Guide and want to start analog to digital conversion. I also disable the other SPI devices in order to read out the MISO

  • Feedback assistant wrong language

    I just installed the OS Yosemite on my computer and when it start the Feedback assistant display a wrong language i just want to know how i can change it cause i don't speak rusian... and i can't select all the words to know what does they mean. Ty.

  • Run Package Link Menu Command

    Hi all, I want to use a menu command that opens the Data Manager "Run Package Link" dialog box like MNU_eData_RUNPACKAGE. Thanks in advance. Burak