You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm following the example here (FDC3Example.java) in order to set up FDC3 communication for a proof of concept. I'm encountering an issue when trying to connect to the fdc3client using fdc3Client.connect (line 185 in the example). This never gets to either the onSuccess or the onError. I ran into the same issue when trying to run the example. I was later going through the docs here, and I found the following wrt JS:
Enabling FDC3 is as simple as adding it to your application manifest.
Therefore, I created a quick test JS app, and added "fdc3Api": true to my manifest.
Now my Java app works, since the FDC3 service has been launched and my Java app is able to connect to it.
As such, I am now looking for some way to enable the FDC3 service directly in the Java app. I have found references in the .NET API to enabling FDC3 (here and here), however have been unable to find anything of the sort for the Java API.
Any help would be appreciated, thanks in advance.
The below is an excerpt of my code. Entry point is launchOpenFin at the bottom.
I'm following the example here (FDC3Example.java) in order to set up FDC3 communication for a proof of concept. I'm encountering an issue when trying to connect to the fdc3client using
fdc3Client.connect
(line 185 in the example). This never gets to either theonSuccess
or theonError
. I ran into the same issue when trying to run the example. I was later going through the docs here, and I found the following wrt JS:Therefore, I created a quick test JS app, and added
"fdc3Api": true
to my manifest.Now my Java app works, since the FDC3 service has been launched and my Java app is able to connect to it.
As such, I am now looking for some way to enable the FDC3 service directly in the Java app. I have found references in the .NET API to enabling FDC3 (here and here), however have been unable to find anything of the sort for the Java API.
Any help would be appreciated, thanks in advance.
The below is an excerpt of my code. Entry point is
launchOpenFin
at the bottom.The text was updated successfully, but these errors were encountered: