Re: Using JavaFX deploy and having signing issues...

2014-04-10 Thread Danno Ferrin
Blogged: http://speling.shemnon.com/blog/2014/04/10/getting-your-java-app-in-the-mac-app-store/ On Mar 24, 2014, at 4:39 PM, Mark Fortner phidia...@gmail.com wrote: Tony and/or Danno, Would you mind documenting the steps that you had to go through to make a Mac application that was

Re: Using JavaFX deploy and having signing issues...

2014-03-24 Thread Tony Anecito
Does anyone know how to codesign the jdk in the bundle created by JavaFX deploy ant task properly? I tried: codesign -f -s 3rd Party Mac Developer Application: Cert Name  name.app/Contents/Plugins/jdk1.8.0.jdk   I get the error: name.app/Contents/Plugins/jdk1.8.0.jdk bundle format unrecognized,

Re: Using JavaFX deploy and having signing issues...

2014-03-24 Thread Jeff Martin
I do this with my app, which works (though I don't submit it to the Mac App Store): codesign -s Developer ID Application RMStudio14.app jeff On Mar 24, 2014, at 11:26 AM, Tony Anecito adanec...@yahoo.com wrote: Does anyone know how to codesign the jdk in the bundle created by JavaFX

Re: Using JavaFX deploy and having signing issues...

2014-03-24 Thread Danno Ferrin
...@reportmill.com To: adanec...@yahoo.com Cc: openjfx-dev@openjdk.java.net Sent: Monday, March 24, 2014 9:38:05 AM GMT -08:00 US/Canada Pacific Subject: Re: Using JavaFX deploy and having signing issues... I do this with my app, which works (though I don't submit it to the Mac App Store): codesign

Re: Using JavaFX deploy and having signing issues...

2014-03-24 Thread Richard Bair
One last hurdle, you need to remove the media library for JavaFX (lib/libjfxmedia.dylib) from your bundled JDK. It uses QuickTime and that is being disowned by apple. This may be fixed in a later 8u update, but not in 8.0.0_b132. Oh good grief, Apple! So what should we be using instead?

Re: Using JavaFX deploy and having signing issues...

2014-03-24 Thread Tony Anecito
Thanks Richard,   I know some more now. It seems with Mavericks 10.9 codesign and the bundle format that JavaFX deploy creates is no longer valid. There are starting to appear to be more references to this issue on the internet. So JavaFX apps can no longer be created and work on the Mac at

Re: Using JavaFX deploy and having signing issues...

2014-03-24 Thread Danno Ferrin
You can still deploy apps to the app store using JavaFX. You just cannot use the media library at the moment. You can do it also via non app store distribution and sign it via gatekeeper as well and keep the media libraries in. And it shouldn't matter what version of Mac OSX you use to build

Re: Using JavaFX deploy and having signing issues...

2014-03-24 Thread Tony Anecito
So you have tried codesign with Mavericks OS X? I am getting invalid bundle when the jdk is bundled as required by the Apple Store. You have to codesign the jdk plugin seprately. Yes you can create a pkg or dmg image but I am looking for the correct way get the jdk codesigned else the app

Re: Using JavaFX deploy and having signing issues...

2014-03-24 Thread Tony Anecito
Ok I was able to codesign and submit. The JavaFX deploy task is not creating a info.plist when the jdk is added to the bundle for the jdk.   After submission there were some issues related to signing and it now requires a entitlements file for some things in the jre.   Regards, -Tony On

Re: Using JavaFX deploy and having signing issues...

2014-03-24 Thread Mark Fortner
Tony and/or Danno, Would you mind documenting the steps that you had to go through to make a Mac application that was submittable to the Apple Store? I'm sure everyone who's struggling to create applications would appreciate the information. Cheers, Mark On Mon, Mar 24, 2014 at 3:30 PM, Tony

Re: Using JavaFX deploy and having signing issues...

2014-03-24 Thread Stephen F Northover
Yes and we'll put them on the OpenJFX wiki. Steve On 2014-03-24 6:39 PM, Mark Fortner wrote: Tony and/or Danno, Would you mind documenting the steps that you had to go through to make a Mac application that was submittable to the Apple Store? I'm sure everyone who's struggling to create

Re: Using JavaFX deploy and having signing issues...

2014-03-24 Thread Tony Anecito
I have already started doing that since the info I found on the web does not mention some of the issues I am running into.   -Tony On Monday, March 24, 2014 4:40 PM, Stephen F Northover steve.x.northo...@oracle.com wrote: Yes and we'll put them on the OpenJFX wiki. Steve On 2014-03-24

Using JavaFX deploy and having signing issues...

2014-03-23 Thread Tony Anecito
Hi,   I am using JavaFX deploy ant task and having issue trying to sign because of jre embeded for Apple Store bundling. It is the last issue I have to fix then I can finish my Apple Store submission.   Apparently even the jdk for the bundle has to be signed. To do that I had to redo