Skip to content

8198549: Desktop.setOpenURIHandler() only receives event if application is already launched - #31791

Open
pabulaner wants to merge 2 commits into
openjdk:masterfrom
pabulaner:first-url
Open

8198549: Desktop.setOpenURIHandler() only receives event if application is already launched#31791
pabulaner wants to merge 2 commits into
openjdk:masterfrom
pabulaner:first-url

Conversation

@pabulaner

@pabulaner pabulaner commented Jul 6, 2026

Copy link
Copy Markdown

Problem description

When You create a JavaFX native application with jpackage for macOS You will run into an issue when trying to handle URIs. When Your application isn’t running and You have it registered for handling certain types of URIs it won’t receive the first URI.

Here is a simple example:

If You have a JavaFX application that handles URIs for example of the form openurifx://your-content and You have it installed with jpackage for macOS and now You try to handle an URI by running the following command:

open openurifx://hello-world

The application will open, but it won’t receive the above URI. If You call the same command after the application is already running, everything will work fine and the application will receive the URI.

Problem cause

The cause of the problem is that when You build a JavaFX application and want to handle URIs You will have to combine JavaFX and AWT as AWT provides the URI handling capabilities. So the startup process is as follows:

  1. JavaFX is initialized
  2. JavaFX forwards the URI event to AWT
  3. AWT is initialized
  4. AWT is ready to handle URI events from JavaFX

The issue is that the URI event is delivered before AWT can handle it and therefore is simple dropped. That’s why later URIs will be received and are handled properly.

Fix

The fix is that JavaFX will wait until it receives a ready event from AWT so JavaFX knows that AWT is able to handle events now. After that it will forward all buffered URIs and therefore everything will be handled correctly. This means that the fix involves both the JFX and JDK repositories and needs to be integrated in both.

Note: In the case that a user has only a fix for the JFX part the URIs won’t be delivered at all, but there won’t be any error. This means that JavaFX applications won’t be able to handle any URIs so it might be an idea to add an environment variable to tell JavaFX to not wait for an AWT ready event. Then the first URI event would be lost, but at least all the following events would be handled properly.

Tests

To test the error and the fix You can clone this repository: https://github.com/pabulaner/openurifx and checkout the branch first-url. There You will find a README.md with further instructions.

PR inside JFX: openjdk/jfx#2203


Progress

  • Change must not contain extraneous whitespace
  • Commit message must refer to an issue
  • Change must be properly reviewed (2 reviews required, with at least 1 Reviewer, 1 Author)

Issue

  • JDK-8198549: Desktop.setOpenURIHandler() only receives event if application is already launched (Bug - P4)

Reviewing

Using git

Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/31791/head:pull/31791
$ git checkout pull/31791

Update a local copy of the PR:
$ git checkout pull/31791
$ git pull https://git.openjdk.org/jdk.git pull/31791/head

Using Skara CLI tools

Checkout this PR locally:
$ git pr checkout 31791

View PR using the GUI difftool:
$ git pr show -t 31791

Using diff file

Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/31791.diff

Using Webrev

Link to Webrev Comment

@bridgekeeper

bridgekeeper Bot commented Jul 6, 2026

Copy link
Copy Markdown

👋 Welcome back pabulaner! A progress list of the required criteria for merging this PR into master will be added to the body of your pull request. There are additional pull request commands available for use with this pull request.

@openjdk

openjdk Bot commented Jul 6, 2026

Copy link
Copy Markdown

❗ This change is not yet ready to be integrated.
See the Progress checklist in the description for automated requirements.

@openjdk openjdk Bot changed the title 8198549: Desktop.setOpenURIHandler() only receives event if applicati… 8198549: Desktop.setOpenURIHandler() only receives event if application is already launched Jul 6, 2026
@openjdk openjdk Bot added the client client-libs-dev@openjdk.org label Jul 6, 2026
@openjdk

openjdk Bot commented Jul 6, 2026

Copy link
Copy Markdown

@pabulaner The following label will be automatically applied to this pull request:

  • client

When this pull request is ready to be reviewed, an "RFR" email will be sent to the corresponding mailing list. If you would like to change these labels, use the /label pull request command.

@openjdk

openjdk Bot commented Jul 6, 2026

Copy link
Copy Markdown

The total number of required reviews for this PR has been set to 2 based on the presence of this label: client. This can be overridden with the /reviewers command.

@openjdk openjdk Bot added the rfr Pull request is ready for review label Jul 6, 2026
@mlbridge

mlbridge Bot commented Jul 6, 2026

Copy link
Copy Markdown

Webrevs

@prrace

prrace commented Jul 17, 2026

Copy link
Copy Markdown
Contributor

I don't see any harm in AWT sending such a message, although perhaps a CSR is needed.
The impact seems to be on the FX side, I don't know that I like that you essentially force the JDK-baseline for FX to be one that has this fix. Perhaps some other way to determine that AWT is loaded can be used. Or there should be a "cap" on how long it waits. I'll post this comment in the FX PR too.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

client client-libs-dev@openjdk.org rfr Pull request is ready for review

Development

Successfully merging this pull request may close these issues.

2 participants