Re: JPA controller classes wizard not finding JPA 3.0 or 3.1 Entities

2023-11-07 Thread Josh Juneau
Hi Stephen,Sorry to hear that it did not work.  I believe that the beans.xml should go within the META-INF within a Java SE application.  Another thing to try...perhaps download NetBeans 20 RC3 and give it a try to see if you have different behavior with your project.ThanksJosh JuneauOn Nov 7, 2023, at 11:13 AM, Stephen Parry  wrote:No joy, but then the app I am currently trying is an SE app. I am not sure if beans. xml is recognised in an SE app. On 6 November 2023 14:58:11 GMT, Josh Juneau  wrote:
Hi Stephen,Please try to put the following into your beans.xml:https://jakarta.ee/xml/ns/jakartaee"       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"       xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/beans_4_0.xsd"       bean-discovery-mode="all">This tells all beans to be discovered by CDI.  Hopefully it will do the trick.  I do not believe there are annotations that can be used as an alternative at this point.ThanksJosh JuneauOn Mon, Nov 6, 2023 at 8:36 AM Stephen Parry <sgpa...@mainscreen.com> wrote:Thanks for the reply Josh.What should I put in my beans.xml and are there annotations I can try as an alternative? On 6 November 2023 12:48:13 GMT, Josh Juneau <juneau...@gmail.com> wrote:
Hi Stephen,Sorry for the late reply.  Do you have a beans.xml in your project?  You may need to have this configuration file in your project in order for the JPA entities to be recognized.Josh JuneauOn Mon, Oct 30, 2023 at 6:28 PM Stephen G. Parry <sgpa...@mainscreen.com> wrote:After a lot of swearing and adding of the correct libraries to 
Tools->Libraries, I was able to persuade NB19 to create JPA 3.1 Entity 
classes, based on the jakarta.persistence package space, from a database 
in an SE project, although it identifies the libraries as EclipseLink 
(JPA 3.0), not JPA 3.1 in the dropdown for persistence provider. I even 
managed to make this work in a modular JavaFX project. However, nothing 
I have tried so far will persuade the controller classes wizard to list 
those classes - the list is empty - in any type of project (modular, 
non-modular, SE or EE). Can anyone help here please? What do I need to 
do to get this to recognize JPA 3.1 entities?



-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


-- Sent from my Android device with K-9 Mail. Please excuse my brevity.
-- Sent from my Android device with K-9 Mail. Please excuse my brevity.

Re: JPA controller classes wizard not finding JPA 3.0 or 3.1 Entities

2023-11-06 Thread Josh Juneau
Hi Stephen,

Please try to put the following into your beans.xml:


https://jakarta.ee/xml/ns/jakartaee;
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance;
   xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee
https://jakarta.ee/xml/ns/jakartaee/beans_4_0.xsd;
   bean-discovery-mode="all">


This tells all beans to be discovered by CDI.  Hopefully it will do the
trick.  I do not believe there are annotations that can be used as an
alternative at this point.

Thanks

Josh Juneau




On Mon, Nov 6, 2023 at 8:36 AM Stephen Parry  wrote:

> Thanks for the reply Josh.
> What should I put in my beans.xml and are there annotations I can try as
> an alternative?
>
>
> On 6 November 2023 12:48:13 GMT, Josh Juneau  wrote:
>
>> Hi Stephen,
>>
>> Sorry for the late reply.  Do you have a beans.xml in your project?  You
>> may need to have this configuration file in your project in order for the
>> JPA entities to be recognized.
>>
>> Josh Juneau
>>
>>
>> On Mon, Oct 30, 2023 at 6:28 PM Stephen G. Parry 
>> wrote:
>>
>>> After a lot of swearing and adding of the correct libraries to
>>> Tools->Libraries, I was able to persuade NB19 to create JPA 3.1 Entity
>>> classes, based on the jakarta.persistence package space, from a database
>>> in an SE project, although it identifies the libraries as EclipseLink
>>> (JPA 3.0), not JPA 3.1 in the dropdown for persistence provider. I even
>>> managed to make this work in a modular JavaFX project. However, nothing
>>> I have tried so far will persuade the controller classes wizard to list
>>> those classes - the list is empty - in any type of project (modular,
>>> non-modular, SE or EE). Can anyone help here please? What do I need to
>>> do to get this to recognize JPA 3.1 entities?
>>>
>>>
>>>
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>>
>>> For further information about the NetBeans mailing lists, visit:
>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>
>>> --
> Sent from my Android device with K-9 Mail. Please excuse my brevity.
>


Re: JPA controller classes wizard not finding JPA 3.0 or 3.1 Entities

2023-11-06 Thread Josh Juneau
Hi Stephen,

Sorry for the late reply.  Do you have a beans.xml in your project?  You
may need to have this configuration file in your project in order for the
JPA entities to be recognized.

Josh Juneau


On Mon, Oct 30, 2023 at 6:28 PM Stephen G. Parry 
wrote:

> After a lot of swearing and adding of the correct libraries to
> Tools->Libraries, I was able to persuade NB19 to create JPA 3.1 Entity
> classes, based on the jakarta.persistence package space, from a database
> in an SE project, although it identifies the libraries as EclipseLink
> (JPA 3.0), not JPA 3.1 in the dropdown for persistence provider. I even
> managed to make this work in a modular JavaFX project. However, nothing
> I have tried so far will persuade the controller classes wizard to list
> those classes - the list is empty - in any type of project (modular,
> non-modular, SE or EE). Can anyone help here please? What do I need to
> do to get this to recognize JPA 3.1 entities?
>
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


Re: java enterprise

2023-03-04 Thread Josh Juneau
Hi Robert,

Hope you are doing well.  Can I ask which option you chose when you created
the project?  Did you choose New - > "Java with Maven" -> "Web
Application", or did you choose New -> "Java with Maven" -> "Enterprise
Application"?  I do not believe that the "Enterprise Application" option
has been updated to work with recent versions of Jakarta EE/Java EE.
However, the "Web Application" should work (although there are some issues
that still need ironing out).

If you create the "Web Application" option, and then create a "Jakarta EE
10" project, you should be able to build and deploy to GlassFish 7
immediately.  There should be no need to update POM dependencies.  The
persistence.xml is certainly empty, but that is so you can add your
applicable connections.

I also did receive the error message when trying to create  "Session Bean
from Entity Classes", so there is certainly an issue there:
Cannot be generated because EJB Lite classes are not available on
project classpath

Hope this helps a bit.  Thanks


Josh Juneau


On Fri, Mar 3, 2023 at 11:54 AM  wrote:

> Hello,
>
>
>
> I try to develop an java enterprise web program with netbeans 17,
> glassfish 7 and maven.
>
>
>
> First, I’ve to update manually « org.apache.maven.plugins /maven war
> plugin » to 3.3.2  and « maven-dependency-plugin » to 3.5.0 in pom.xml
> because the project can’t build and compile.
>
>
>
> When trying to create the entity class from database, I get the connection
> but I’ve a message « the project has an invalid persistence.xml file.
> Indeed, this file is nearby empty.  I have to complete it.
>
>
>
> And when trying to create session bean from entity, I’ve an error
> message : « Cannot be generated because EJB Lite classes are not available on 
> project classpath.
> « .
>
>
>
> That’s it.
>
>
>
> Can you help me ?
>
>
>
> Many thanks.
>
>
>
> Best regards.
>
>
>
> Robert Simons
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>


Re: creating faces-config.xml

2022-10-02 Thread Josh Juneau
Hi Eric and Glenn,

Using Jakarta EE 8 or Jakarta EE 9/9.1 should provide a current faces-config…at 
least when producing a new project.  We will have to look into the generation 
of the faces-config for older projects.  

Thanks 

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau

> On Oct 2, 2022, at 12:58 PM, Eric Bresie  wrote:
> 
> 
> 
> I suspect that is the JSF 1 flavor which may not have been updated with the 
> JSF 2 Flavor (2) and beyond (1) and may not fully be needed in more modern 
> usage (3)
> 
> 
> References 
> (1) https://jakarta.ee/specifications/faces/
>  (2) https://en.m.wikipedia.org/wiki/Jakarta_Server_Faces
> (3) 
> https://stackoverflow.com/questions/7583038/what-is-the-use-of-faces-config-xml-in-jsf-2
> 
> Get Outlook for iOS
> From: Glenn Holmer 
> Sent: Sunday, October 2, 2022 12:35:54 PM
> To: users@netbeans.apache.org 
> Subject: creating faces-config.xml
>  
> I created a new faces-config.xml from the NetBeans context menu for my
> web app, but it contained this:
> 
> "-//Sun Microsystems, Inc.//DTD JavaServer Faces Config 1.1//EN"
>"http://java.sun.com/dtd/web-facesconfig_1_1.dtd;>
> 
> Is this something that's just gotten overlooked over the years?
> 
> --
> Glenn Holmer (Linux registered user #16682)
> "After the vintage season came the aftermath -- and Cenbe."
> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
> 
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> 
> -- 
> Eric Bresie
> ebre...@gmail.com


Re: registering latest Payara

2022-10-02 Thread Josh Juneau
Hi Richard,

Thanks for the kind words, but all of these latest changes for Jakarta EE were 
from Jose Contreras and Gaurav Gupta!  I've just created and submitted a 
Jakarta EE 10 Maven archetype (JDK11 and full profile).  It should become 
available at the following URL within the next few days:

https://mvnrepository.com/artifact/io.github.juneau001

Also, you should be able to manually create a Jakarta EE 10 application within 
NetBeans...just do not select a server to deploy to for now.  Since Jakarta EE 
10 is not yet supported by NetBeans, it will not allow you to deploy to any of 
the registered servers.  However, you should still be able to develop a Jakarta 
EE 10 app and deploy to a compliant server.

I'm also hoping to find some time to repair a few more issues with Jakarta EE 
for NetBeans 16, so stay tuned!

Thanks

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau

> On Oct 2, 2022, at 2:42 AM, Richard Grin  
> wrote:
> 
> 
> Hi Josh,
> 
> Thanks for your work for NetBeans.
> 
> It seems that bug #4605 has been fixed ("Impossible to create a Maven Web 
> application for Jakarta EE 9.1" ; bug #4532). How can I get the new version 
> of the Maven achetype to create a Jakarta EE 9.1 project? NetBeans 15 "Check 
> for Updates"  displays "Your IDE is up to date".
> 
> I am teaching a course on Jakarta EE in November and I would like to use 
> Jakarta EE 10. When do you think it will be possible to get the (pre-release) 
> version of NetBeans 16 that will contain the PRs for Jakarta EE 10?
> 
> Best regards,
> 
> Richard
> 
> Le 02/10/2022 à 07:23, Josh Juneau a écrit :
>> Hi Glenn,
>> 
>> Yes, Michael is correct that there are PRs coming for Jakarta EE 10 and 
>> Payara 6 in NetBeans 16.  You should be able to run Payara 5, GlassFish 6 
>> along with Jakarta EE 9.1 in NetBeans 15.
>> 
>> Thanks
>> 
>> Josh Juneau
>> juneau...@gmail.com
>> http://jj-blogger.blogspot.com
>> https://www.apress.com/us/search?query=Juneau
>> 
>>> On Oct 1, 2022, at 3:07 PM, Glenn Holmer  
>>> wrote:
>>> 
>>> I haven't done much EE programming since I retired, but want to update
>>> an app I wrote to the latest Jakara EE.
>>> 
>>> Is that supported in NetBeans 15? Because I had trouble registering the
>>> server in NetBeans. It's installed (payara-6.2022.1.Alpha4.zip), and I
>>> can get the pages on 8080 and 4848, but here's what happens when I try
>>> to register Payara:
>>> 
>>> 0) I select a location (/opt/payara6)
>>> 1) I get "Detected a 6.2022.1 install. Click Next to register remote or
>>> custom local domains." ("Local Domain" is selected, "Download Now..." is
>>> greyed out)
>>> 2) I click Next, but nothing happens except that the "Click Next"
>>> message disappears. "Finish" is greyed out.
>>> 
>>> What am I doing wrong? I'm running on openjdk 17.
>>> 
>>> --
>>> Glenn Holmer (Linux registered user #16682)
>>> "After the vintage season came the aftermath -- and Cenbe."
>>> 
>>> 
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>> 
>>> For further information about the NetBeans mailing lists, visit:
>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>> 
> -- 
> Richard Grin


Re: registering latest Payara

2022-10-01 Thread Josh Juneau
Hi Glenn,

Yes, Michael is correct that there are PRs coming for Jakarta EE 10 and Payara 
6 in NetBeans 16.  You should be able to run Payara 5, GlassFish 6 along with 
Jakarta EE 9.1 in NetBeans 15.

Thanks

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau

> On Oct 1, 2022, at 3:07 PM, Glenn Holmer  wrote:
> 
> I haven't done much EE programming since I retired, but want to update
> an app I wrote to the latest Jakara EE.
> 
> Is that supported in NetBeans 15? Because I had trouble registering the
> server in NetBeans. It's installed (payara-6.2022.1.Alpha4.zip), and I
> can get the pages on 8080 and 4848, but here's what happens when I try
> to register Payara:
> 
> 0) I select a location (/opt/payara6)
> 1) I get "Detected a 6.2022.1 install. Click Next to register remote or
> custom local domains." ("Local Domain" is selected, "Download Now..." is
> greyed out)
> 2) I click Next, but nothing happens except that the "Click Next"
> message disappears. "Finish" is greyed out.
> 
> What am I doing wrong? I'm running on openjdk 17.
> 
> --
> Glenn Holmer (Linux registered user #16682)
> "After the vintage season came the aftermath -- and Cenbe."
> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
> 
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> 


Re: Adding Payara Server to Jakarta EE 9 Project

2022-05-11 Thread Josh Juneau
Payara does work in NetBeans, but the Jakarta EE 9 schemas for Payara
server may not have been updated.  I can check on that for a future update.

Incidentally, I am working on updating the Jakarta schemas for GlassFish.
Hope to have this work completed for the next release.

Thanks

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
Apress Author <https://www.apress.com/us/search?query=juneau>



On Wed, May 11, 2022 at 9:51 AM Laszlo Kishalmi 
wrote:

> Payara shall work with NetBeans, some Payara devs even contribute code for
> the Payara plugin, however I have not checked the latest development in
> that area.
> On 5/11/22 00:30, Amn wrote:
>
> I don't think Payara works under Netbeans. I am migrating from Win to
> Linux, I'll try under the linux platform and see how things go here.
> On 2022-05-04 09:50, Mike Ryan wrote:
>
> Hello,
>
> In both Netbeans 12.6 and 13 I’m having trouble figuring out how to add a 
> Payara Server to my Jakarta EE 9 project.
>
> Payara version: 5.2022.2
> Apache NetBeans version: 12.6 or 13
> JDK: 11.0.8
>
> I have the following in my Gradle build file:
>
> dependencies {
> providedCompile 'jakarta.platform:jakarta.jakartaee-web-api:9.1.0’
> }
>
> The project compiles fine. I can add the Payara Server to my Java EE 8 
> projects. But when I go to my project’s Properties -> Run I see
>
> Java EE Version: Jakarta EE 9 Web
>
> but there are no servers in the Server dropdown.
>
> I’m assuming there’s just some config I’m forgetting about somewhere.
>
> Anyone have any ideas?
>
> Thanks,
>
> Mike
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, 
> visit:https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
> --
> *ArbolOne*
> Using Fire Fox and Thunderbird.
> Developing using Java, C/C++, HTM/CSS and SQLite as our platform has been
> exciting and most rewarding.[*Ñ*]
>
>


Re: JSF CDI code assist

2021-12-09 Thread Josh Juneau
Thanks for the message and sorry for the issues Jason.  Along with the other 
suggestions that were mentioned, have you attempted to create a Maven project 
using Jakarta EE?

I also had similar issues when trying Jakarta EE 9.1 (jakarta.*) namespace.  
However, I was using PrimeFaces 10, which I later determined was not 
compatible.  I'll need to try again now with PrimeFaces 11 to see if EL code 
completion works.

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau

> On Dec 6, 2021, at 2:01 PM, Jason Abreu  wrote:
> 
> I have also created a sample web project using Ant and observe the same 
> behavior.  With the new Jakarta EE, the code assist in JSP EL ("${...}") and 
> JSF EL ("#{...}") does not show any of my CDI beans, only a "No suggestions" 
> message.  This occurs with both Ant and Gradle projects.  The code completion 
> DOES work when using an older Java EE API project.
> 
> Has anybody else observed this behavior?  While it's not a deal-breaker, 
> because it does not affect building, it does add much time to development 
> because I have to open any referenced classes and flip back and forth between 
> them all to ensure I get the methods name correct.  This is a very big 
> annoyance that I'd like to figure out a remedy to quickly.
> 
> Thanks,
> 
> Jason
> 
>> On 12/5/21 1:45 PM, Jason Abreu wrote:
>> I'm using NetBeans 12.5 with a new Gradle 7 web project and am having issues 
>> with code completion working within JSF EL (Jakarta JSF 3.0).  I could 
>> definitely use some assistance figuring this out.
>> 
>> Steps Taken:
>> 
>> 1.  Created new Gradle Web project (declared dependency for jakarta ee 9.1 
>> api)
>> 2.  Created a CDI Bean (using @Named and @SessionScoped annotations), 
>> "SampleBean" with a sample method, "(get|set)SampleString," returning a 
>> String.
>> 3.  Defined the JSF servlet within web.xml
>> 4.  Edit the JSF page (.xhtml) and added a JSF EL reference to my Sample 
>> Bean, #{sampleBean.sampleString}
>> 
>> The project built and packaged as a WAR successfully and deployed and 
>> executed in GlassFish 6.2.2 as expected.
>> 
>> However, when I use code completion (Ctl-Space) within the JSF EL I do not 
>> see my CDI bean as an option to select nor does code completion work to show 
>> me the methods of the CDI bean after I type the bean name.  Code completion 
>> works on all tags, even when using a framework such as PrimeFaces, just not 
>> with my custom CDI beans within JSF EL.
>> 
>> I have tried a work-around mentioned for a JSP issue by editing my Gradle 
>> build script to include the webapp source in the java sourceSet, but this 
>> does not resolve the issue.
>> 
>> Thank you,
>> Jason
>> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
> 
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> 


Re: NetBeans 12.3 cannot start a Glassfish 6.00 server

2021-03-29 Thread Josh Juneau
Hi David,

Hope you are well.  Sorry to hear that you are unable to use Glassfish
6.0.0 with NetBeans 12.3.  It seems to be working okay for me.  I have been
using it for testing over the past few months without issue.  Just to be
sure, I loaded the latest Eclipse Glassfish 6.0.0 into a fresh install of
NetBeans 12.3 today and started it up without issues.  I wonder if there is
not some other odd configuration issue occurring which is causing the error
message on your machine.

Can you please try to use a fresh installation of NetBeans without using
your existing userdir (do not import settings), and see if that works for
you?

Thanks

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=juneau
<https://www.apress.com/index.php/author/author/view/id/1866>



On Sun, Mar 28, 2021 at 10:11 AM David Gradwell  wrote:

> Hi,
>
>
>
> I’m trying to use Glassfish 6.0.0 as my web server and to debug servlets
> using NetBeans 12.3.
>
>
>
> ~/glassfish6/bin/asadmin start-domain domain1
>
> Works and other command line stuff works fine.
>
>
>
> Trying to start the glassfish server by right clicking}:
>
>
>
>
>
> Gets
>
>
>
> [image: Graphical user interface, text, application, email Description
> automatically generated]
>
>
>
> Looking at the log file tells me nothing.
>
>
>
> Is anyone else trying to use Glassfish 6.0.0 and if so, can they get it to
> work with NetBeans.  (I’ve tried other 12.n versions – no difference).
>
>
>
> Annoyingly I can start a Payara server fine, but am having trouble using
> jakarta.servlet.Servlet with Payara instead of javax.servlet.Servlet;
>
>
>
> I get:  java.lang.ClassCastException:
> com.gradwell.RemoteSQLoverHttpServlet.RemoteSQLoverHttpServlet cannot be
> cast to javax.servlet.Servlet
>
>
>
>
>
> All help welcome !
>
>
>
> Regards
>
>
>
> David
>
>
>
>
>


Re: Java EE8 Status

2021-01-08 Thread Josh Juneau
Hi Som,

Great to meet you, and thanks for the post.  I believe that if you were to 
invest time into learning how to develop Java EE 8 and “Jakarta EE” 
applications with NetBeans, then you would be on a path to success.  Java EE 8 
is still modern, although it will be outdated within the coming years.  
However, if you look toward development with the Jakarta EE Platform (newer 
Java EE platform that was open sourced under Eclipse Foundation), then I think 
you will find that it fits into your “b” category:  Established and stable.  
Jakarta EE 8 uses the same API as Java EE 8, so you should be able to translate 
any tutorials of Java EE over to Jakarta EE without much trouble.  Jakarta EE 9 
introduces a new namespace, which will change things a bit, although the APIs 
will remain much the same as the standard Java EE/Jakarta EE 8 APIs.

Hope this helps.

Josh Juneau



From: Som Lima 
Date: Friday, January 8, 2021 at 12:57 PM
To: NetBeans Mailing List 
Subject: Java EE8 Status

Hi,

I don't get much time to go to  software development conferences  :)

If I was to invest my COVID-19  stay at  home time in JAVA EE8  technologies  
with Netbeans as one of those technologies. Assuming my target domain is 
e-commerce distributed dynamic  web applications.


Would I be on a journey to master
technologies which are on the  ?  :
a) Bleeding Edge,
b)  Established stable leading edge ,
c) outdated (miss the boat)
d) popular
e) obscure


Thanks in advance for your generous  input.






Re: [VOTE] Release Apache NetBeans 12.2 (vote candidate 2)

2020-11-23 Thread Josh Juneau
+1 (binding)

- Verified signature, NOTICE and LICENSE file
- Built and ran without issues using Zulu-11 JDK on OS X 10.14.6:

Product Version: Apache NetBeans IDE 12.2
Java: 11.0.5; OpenJDK 64-Bit Server VM 11.0.5+10-LTS
Runtime: OpenJDK Runtime Environment 11.0.5+10-LTS
System: Mac OS X version 10.14.6 running on x86_64; UTF-8; en_US (nb)

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau 
<https://www.apress.com/index.php/author/author/view/id/1866>
 

On 11/21/20, 2:06 AM, "Laszlo Kishalmi"  wrote:

Dear community,

This is our second voting candidate for the 12.2 release of Apache
NetBeans. It is built off the same commit as 12.2-rc3. Please note
all requirements below for validating sources and convenience binaries
before voting.

Apache NetBeans 12.2 constitutes all clusters in the Apache NetBeans
Git repository, which together provide the NetBeans Platform (i.e., the
underlying application framework), as well as all the modules that
provide the Java SE, Java EE, PHP, JavaScript and Groovy features of
Apache NetBeans.

Build artifacts are available here :
https://dist.apache.org/repos/dist/dev/netbeans/netbeans/12.2/vc2
https://dist.apache.org/repos/dist/dev/netbeans/netbeans-platform/12.2/vc2

They were built by the Jenkins pipeline and moved to their place :

https://ci-builds.apache.org/job/Netbeans/job/netbeans-TLP/job/netbeans/job/release122/20/

We are primarily voting on :

https://dist.apache.org/repos/dist/dev/netbeans/netbeans/12.2/vc2/netbeans-12.2-source.zip

SHA512 :

84e7584689e0993ee60e9af8ccad2ba247bad8562ab742bf24d19ab56f29ac131943ab54fcf850588e04a00bdd9fea40909e1b91f47c8f545f89cae29144af8e

KEYS file :
https://downloads.apache.org/netbeans/KEYS

--

Associated to the primary source item you will have (generated with
pipeline mentioned above)
* under https://dist.apache.org/repos/dist/dev/netbeans/netbeans/12.2/vc2
binaries associated to the source
netbeans-12.2-bin.zip
as well as update content under nbms folder

* under 
https://dist.apache.org/repos/dist/dev/netbeans/netbeans-platform/12.2/vc2
you will find platform cluster build
netbeans-platform-12.2-bin.zip
netbeans-platform-12.2-source.zip

-- 


Release specific wiki page :
https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+12.2

--

Voting requirements

Before voting +1 you are required to download the signed source code
package, compile it as provided, and test the resulting executable on
your own platform, along with also verifying that the package meets
the requirements of the ASF policy on releases - see
http://www.apache.org/legal/release-policy.html#management

In particular, you should (at least) follow these steps.

1. Download the artefact to be voted on and unzip it.

2. Check that the artefact does not contain any jar files, except for:
 - 
platform/autoupdate.services/test/unit/src/org/netbeans/api/autoupdate/data/empty.jar
 - enterprise/glassfish.common/test/unit/data/nottaDir-4_1_2.jar
 - enterprise/glassfish.common/test/unit/data/subdir/nottaDir-5.0.jar
 - enterprise/payara.common/test/unit/data/nottaDir-4_1_2.jar
 - enterprise/payara.common/test/unit/data/subdir/nottaDir-5.0.jar
 which are only jars by their name

3. Verify the cryptographic signatures, the NOTICE and LICENSE file

4. Build it using the README provided by the artifact.

5. Look in nbbuild/netbeans for the NetBeans installation created by
the build process and try running it.

In addition to checking the sources, you should check the associated
convenience binary zips and nbms at the artifact links above.
As well as checking any artifact functions correctly, you should check
that it has been correctly signed by a PMC member, and that the source
being voted on is sufficient to build the relevant binary.

Separate votes will be held on other convenience binaries, including
installers and Maven artifacts. Those will be dependent on this vote
passing.

This vote is going to be open at least 72 hours, vote with +1, 0, and
-1 as usual. (please justify -1)

Please mark your vote with (binding) if you're an Apache NetBeans PMC
member to help with voting admin.

NetBeans 12.2 will be released if and when this vote passes.

Thank you to all contributors for all your hard work!

Best wishes,

Laszlo Kishalmi
Release Manager for Apache NetBeans 12.2





-
To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
For additional commands, e-mail: users-h...@netbeans.apache.org

For further information about the NetBeans mailing lists, visit:
https://cwiki.apach

Re: Restful Web Services

2020-08-27 Thread Josh Juneau
Hi Steven,

This is a pretty old stack, but I have found you a tutorial that may work.
Please give this a try:

https://www.dineshonjava.com/restful-web-services-with-jersey-jax-rs/

When you upgrade, it may make sense to look at moving to Java 11, if
possible.  Otherwise it will be outdated soon.

Thanks and take care!

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau
<https://www.apress.com/index.php/author/author/view/id/1866>



On Thu, Aug 27, 2020 at 2:15 PM Nelligan, Steven M 
wrote:

> Yes we are maintaining an old existing project….
>
>
>
> I have another instance of this project in Java 8, but only in early
> development ….
>
>
>
>
>
>
>
> *From:* Geertjan Wielenga 
> *Sent:* Thursday, August 27, 2020 2:01 PM
> *To:* Nelligan, Steven M 
> *Cc:* users@netbeans.apache.org
> *Subject:* Re: Restful Web Services
>
>
>
>
>
> What unlikely cruel fate forces you to use Java 7 today? Or are you
> maintaining an old existing project?
>
>
>
> Gj
>
>
>
> On Thu, 27 Aug 2020 at 20:56, Nelligan, Steven M 
> wrote:
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> I am using NetBeans 12.0, Tomcat 7, and java 7 and need to create some
> restful web services.
>
>
>
>
>
>
>
> Is there a tutorial or examples of how to do this anywhere.
>
>
>
>
>
>
>
> I need the above configuration.
>
>
>
>
>
>
>
> Thanks in advance,
>
>
>
>
>
>
>
> *Steven M Nelligan*
>
>
> *APPLICATION DEVELOPER*
>
>
>
>
>
>
> Facilities and Services
>
>
>
> Information Technology Services
>
>
> University of Illinois at Urbana-Champaign
>
>
> Facilities and Services
>
>
> 1501 S. Oak Street | M/C 800
>
>
> Champaign, IL 61820
>
>
> 217.244.8097 | *other*: 217.244.8097 |
>
> snell...@illinois.edu
>
>
> www.fs.illinois.edu
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__www.fs.illinois.edu_=DwMFaQ=OCIEmEwdEq_aNlsP4fF3gFqSN-E3mlr2t9JcDdfOZag=if2txRdpajj_buQjqjKwLPQUjlaPXEUbuOeovTCoxZI=3xIZF1SJJSZAhN6TYHGjsGVwo0VEl_6ltzMapWebM08=zsRjW1cMB9sKqxPObFG-ZZtr_N7eN9ryaFOP1tUHaxw=>
>
>
>
>
>
> [image: facebook]
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__www.facebook.com_UniversityOfIllinoisFacilitiesServices=DwMFaQ=OCIEmEwdEq_aNlsP4fF3gFqSN-E3mlr2t9JcDdfOZag=if2txRdpajj_buQjqjKwLPQUjlaPXEUbuOeovTCoxZI=3xIZF1SJJSZAhN6TYHGjsGVwo0VEl_6ltzMapWebM08=2IrdJ5YzyI1phTh_GVWZaQJKdEFmbkzdIavZPDY7aOo=>
> [image: twitter]
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__twitter.com_UofIFS=DwMFaQ=OCIEmEwdEq_aNlsP4fF3gFqSN-E3mlr2t9JcDdfOZag=if2txRdpajj_buQjqjKwLPQUjlaPXEUbuOeovTCoxZI=3xIZF1SJJSZAhN6TYHGjsGVwo0VEl_6ltzMapWebM08=EQenCwb7D4Kccgq5umF9oAREUQoDasGUd6w8CPEq6fA=>
> [image: instagram]
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__www.instagram.com_uofifs_=DwMFaQ=OCIEmEwdEq_aNlsP4fF3gFqSN-E3mlr2t9JcDdfOZag=if2txRdpajj_buQjqjKwLPQUjlaPXEUbuOeovTCoxZI=3xIZF1SJJSZAhN6TYHGjsGVwo0VEl_6ltzMapWebM08=QjUpANqcMSLyVdCGjcXux2UK5jcUjv7Bf0vEiImII3E=>
> [image: youtube]
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__www.youtube.com_user_UofIFS=DwMFaQ=OCIEmEwdEq_aNlsP4fF3gFqSN-E3mlr2t9JcDdfOZag=if2txRdpajj_buQjqjKwLPQUjlaPXEUbuOeovTCoxZI=3xIZF1SJJSZAhN6TYHGjsGVwo0VEl_6ltzMapWebM08=5Ito57tIymkJ_yWQx-BmOJ_FrAEzRDn09uosYLOLfSQ=>
>
>
>
>
>
>
> [image: https://webtools.illinois.edu/webservices/js/ds/signature_logo.png]
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__illinois.edu_=DwMFaQ=OCIEmEwdEq_aNlsP4fF3gFqSN-E3mlr2t9JcDdfOZag=if2txRdpajj_buQjqjKwLPQUjlaPXEUbuOeovTCoxZI=3xIZF1SJJSZAhN6TYHGjsGVwo0VEl_6ltzMapWebM08=N7e7KbnaaHXQ0IcZdaiGDowQJYrCT6pykrK9p_Nl3N8=>
>
>
>
>
>
> *Under the Illinois Freedom of Information Act any written communication
> to or from university employees regarding university business is a public
> record and may be subject to public disclosure.*
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>


Re: Netbeans, JSF and Entity classes from database

2020-06-25 Thread Josh Juneau
Hi Charles,

Thanks for utilizing the JSF features of Apache NetBeans.  With respect to
your questions pertaining to the Java Persistence API (JPA), you many want
to try the Jeddict plugin and see if that helps.  This plugin was generated
to allow visual creation of entity classes and entity class relationships.

https://jeddict.github.io/

Hope this helps.  Thanks

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau
<https://www.apress.com/index.php/author/author/view/id/1866>



On Tue, Jun 23, 2020 at 5:04 PM Charles Johnson 
wrote:

> I departed from usual suspicion of using IDEs to generate stuff for me
> automatically and went for the above.
> That worked out OK, although the 'black-boxishness' of it makes
> extending the (admittedly quite full-featured) result tricky.
>
> One thing that is currently exercising me is to treat the entity
> relationships between my Job and Client classes. It's my business case
> the there is a one-to-one unidirectional relationship there.
> Is there a way to tap into that 'internally' or do i need to construct
> it myself.
> e.g. i create a new Job through my gui. The field that comes up in the
> form is 'ClientID' (a foreign key). I'd like to leverage the Client
> objects there by name, since i don't know the client id off the top of
> my head. To what extent has the work been done already by Netbeans?
>
> TIA
>
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>
>


Re: Chat/Issue

2020-03-22 Thread Josh Juneau
Hi Ami,

Please put an issue into the Apache NetBeans JIRA:  
https://issues.apache.org/jira/projects/NETBEANS/issues/NETBEANS-4034

Thanks!

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau

> On Mar 22, 2020, at 9:50 AM, ami kaminsky  wrote:
> 
> 
> Hi,
> How i chat with Apache NetBeans about an issue:
> Breakpoints that used to work on NetBeans 8.02 in my web HTML5/Javascript 
> project not working in versions 11.0 and above.
> 
> Thanks
> Ami


Re: NB 11.2 hangs on project background scan

2020-01-30 Thread Josh Juneau
Hi Gary,

Have you attempted to start up with a new userdir?  I haven't worked much with 
JDK 13 yet, so this is just a guess to help troubleshoot. 

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau

> On Jan 30, 2020, at 6:30 PM, Greenberg, Gary  
> wrote:
> 
> 
> No, IDE is not working. It is dead in the water for over an hour. 
> No buttons are functional. See the attached snapshot.
> All my projects are on the local drive, though.
> I was able to make a thread dump, using jstack command and filed an issue 
> NETBEANS-3772.
> Please take a look.
>  
> Gary Greenberg
> Staff Software Engineer
> Data Product Development, BI-A
> E: ggree...@visa.com
> M: 650-269-7902
>  
> 
>  
> From: Laszlo Kishalmi  
> Sent: Thursday, January 30, 2020 3:50 PM
> To: users@netbeans.apache.org
> Subject: Re: NB 11.2 hangs on project background scan
>  
> I guess that the IDE still works even the scanning is stalled. The best thing 
> to do is to get a self profile snapshot See the button right to the HEAP 
> monitor or (Alt+Shift+Y).
> 
> Once you get a snapshot file an issue in out jira 
> (https://issues.apache.org/jira/ do not forget that the project is NETBEANS) 
> and attach the snapshot there, so we can analyze that.
> 
> My best guess some of your projects use some library over a network drive. 
> That makes the indexer crawling.
> 
> On 1/30/20 3:31 PM, Greenberg, Gary wrote:
> I am trying to run NB 11.2 on Oracle JDK 13.0.2 on Dell Win10.
> It hangs 90% of the time just when I start it, during the project background 
> scan.
> Progress bar shows sometime 2% and sometime goes up to 94%, but hangs anyway.
> I tried to get the thread dump, but Ctrl/Break on the console does not 
> produce anything.
> Can someone advise? I didn’t have these problems with 11.2 on Java 8.
>  
> Gary Greenberg
> Staff Software Engineer
> Data Product Development, BI-A
> E: ggree...@visa.com
> M: 650-269-7902
>  
> 
>  
> 
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
> 
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Re: "Compile on Save" option disabled for Maven WAR project in Netbeans 11.2, working in 11.1

2019-11-21 Thread Josh Juneau
Thanks John and David.  Glad to hear that it is working.

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau

> On Nov 21, 2019, at 5:55 PM, David Sharpe  wrote:
> 
> 
> Hi John,
> 
> I did not have nb-javac installed! After installing it using the Plugins 
> manager, I was able to enable Compile on Save.
> 
> I recall that when I installed Netbeans 11.0 and 11.1, I was prompted to 
> install nb-javac when I started Netbeans. I don't recall being prompted when 
> I started Netbeans 11.2, but perhaps I just ignored the prompt...
> 
> Anyhow, looks like a false alarm. Thanks for your help, everyone.
> 
> Regards,
> 
>> On Thu, 21 Nov 2019 at 15:37, John Mc  wrote:
>> David, 
>> 
>> Do you have nb-javac installed as well?  I might be wrong but I thought that 
>> CoS requires nb-javac
>> 
>> Regards
>> 
>> John
>> 
>>> On Thu, 21 Nov 2019 at 23:32, Josh Juneau  wrote:
>>> Thanks I will work on reproducing the issue.  I appreciate your time.  
>>> 
>>> Josh Juneau
>>> juneau...@gmail.com
>>> http://jj-blogger.blogspot.com
>>> https://www.apress.com/us/search?query=Juneau
>>> 
>>>>> On Nov 21, 2019, at 4:58 PM, David Sharpe  wrote:
>>>>> 
>>>> 
>>>> Hi Josh,
>>>> 
>>>> It's Microsoft Windows 10 Enterprise, Version 10.0.17763 Build 17763.
>>>> 
>>>> Regards,
>>>> David
>>>> 
>>>>> On Thu, 21 Nov 2019 at 14:52, Josh Juneau  wrote:
>>>>> Hi David, 
>>>>> 
>>>>> Can you please tell us what operating system you are using? 
>>>>> 
>>>>> Thanks!
>>>>> 
>>>>> Josh Juneau
>>>>> juneau...@gmail.com
>>>>> http://jj-blogger.blogspot.com
>>>>> https://www.apress.com/us/search?query=Juneau
>>>>> 
>>>>>>> On Nov 21, 2019, at 3:24 PM, David Sharpe  wrote:
>>>>>>> 
>>>>>> 
>>>>>> Hi everyone,
>>>>>> 
>>>>>> Can someone can confirm this for me please?
>>>>>> Create a new Maven web application project in Netbeans 11.1.
>>>>>> Go to Project > Properties > Build > Compile
>>>>>> Confirm that you can toggle the "Compile on Save" option.
>>>>>> Repeat the steps for Netbeans 11.2.
>>>>>> 
>>>>>> On my computer, I'm unable to enable "Compile on Save" with Netbeans 
>>>>>> 11.2. I tried running Netbeans on Oracle JDK 8 and 13. 
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>> (JRebel support, I'm CCing you because this feature is integral to your 
>>>>>> Netbeans integration.)
>>>>>> 
>>>>>> Regards,
>>>>>> David
>>>>>> 


Re: "Compile on Save" option disabled for Maven WAR project in Netbeans 11.2, working in 11.1

2019-11-21 Thread Josh Juneau
Thanks I will work on reproducing the issue.  I appreciate your time.  

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau

> On Nov 21, 2019, at 4:58 PM, David Sharpe  wrote:
> 
> 
> Hi Josh,
> 
> It's Microsoft Windows 10 Enterprise, Version 10.0.17763 Build 17763.
> 
> Regards,
> David
> 
>> On Thu, 21 Nov 2019 at 14:52, Josh Juneau  wrote:
>> Hi David, 
>> 
>> Can you please tell us what operating system you are using? 
>> 
>> Thanks!
>> 
>> Josh Juneau
>> juneau...@gmail.com
>> http://jj-blogger.blogspot.com
>> https://www.apress.com/us/search?query=Juneau
>> 
>>>> On Nov 21, 2019, at 3:24 PM, David Sharpe  wrote:
>>>> 
>>> 
>>> Hi everyone,
>>> 
>>> Can someone can confirm this for me please?
>>> Create a new Maven web application project in Netbeans 11.1.
>>> Go to Project > Properties > Build > Compile
>>> Confirm that you can toggle the "Compile on Save" option.
>>> Repeat the steps for Netbeans 11.2.
>>> 
>>> On my computer, I'm unable to enable "Compile on Save" with Netbeans 11.2. 
>>> I tried running Netbeans on Oracle JDK 8 and 13. 
>>> 
>>> 
>>> 
>>> 
>>> (JRebel support, I'm CCing you because this feature is integral to your 
>>> Netbeans integration.)
>>> 
>>> Regards,
>>> David
>>> 


Re: "Compile on Save" option disabled for Maven WAR project in Netbeans 11.2, working in 11.1

2019-11-21 Thread Josh Juneau
Hi David, 

Can you please tell us what operating system you are using? 

Thanks!

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau

> On Nov 21, 2019, at 3:24 PM, David Sharpe  wrote:
> 
> 
> Hi everyone,
> 
> Can someone can confirm this for me please?
> Create a new Maven web application project in Netbeans 11.1.
> Go to Project > Properties > Build > Compile
> Confirm that you can toggle the "Compile on Save" option.
> Repeat the steps for Netbeans 11.2.
> 
> On my computer, I'm unable to enable "Compile on Save" with Netbeans 11.2. I 
> tried running Netbeans on Oracle JDK 8 and 13. 
> 
> 
> 
> 
> (JRebel support, I'm CCing you because this feature is integral to your 
> Netbeans integration.)
> 
> Regards,
> David
> 


Re: Fonts in the project tree with darcula ?

2019-11-02 Thread Josh Juneau
Hi Alex,

I have not noticed a dark font with Darcula.  Have you tried with a new userdir 
to see if perhaps something may be configured incorrectly in the one you are 
using?

Thanks 

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau

> On Nov 2, 2019, at 8:02 AM, Alex O'Ree  wrote:
> 
> 
> When running both the darcula look and feel and editing settings, i've 
> noticed that the project tree view now has a very dark background with black 
> text, making it a bit hard to read. Is this adjustable in a setting or menu 
> somewhere?


Re: Error message during creation of an Entreprise Application with Maven

2019-07-18 Thread Josh Juneau
Thanks Richard and Geertjan.  It probably makes sense to remove this 
functionality since this application style is not very relevant nowadays.  With 
respect to the error, it looks like the Maven archetype for that particular 
project type must be missing from Maven central.  

Josh Juneau
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866


> On Jul 18, 2019, at 6:36 AM, Geertjan Wielenga  wrote:
> 
> Yes, that goes without saying. An issue is needed and then we can take a 
> look, probably we need to examine whether Enterprise Applications still make 
> sense in the Java/Jakarta EE space.
> 
> Gj
> 
>> On Thu, Jul 18, 2019 at 1:33 PM Richard Grin 
>>  wrote:
>> Yes Geertjan, perhaps, but, if it is a bug, it would be better to try to 
>> repair it, or to remove the functionality if it is no longer useful.
>> 
>> Richard 
>> 
>> 
>> 
>> Envoyé depuis mon smartphone Samsung Galaxy.
>> 
>> 
>>  Message d'origine 
>> De : Geertjan Wielenga 
>> Date : 18/07/2019 13:05 (GMT+01:00)
>> À : Richard Grin 
>> Cc : NetBeans Mailing List 
>> Objet : Re: Error message during creation of an Entreprise Application with 
>> Maven
>> 
>> Probably better to create standard Web Applications in Maven nowadays, 
>> rather than Enterprise Applications.
>> 
>> Gj
>> 
>>> On Thu, Jul 18, 2019 at 12:20 PM Richard Grin 
>>>  wrote:
>>> Hi,
>>> 
>>> I have just tested NetBeans 11.1 beta 4.
>>> 
>>> Payara 5.192 installed.
>>> 
>>> In the properties of the project :
>>> 
>>> Source/Binary Format: 1.8. 
>>> Build > Compile JDK 10 (Default).
>>> Creation of a Java EE 8 Entreprise Application. The attached window is 
>>> displayed and I click on "Finish". 
>>> 
>>> An error is displayed in the logs (tab "Ouput - Priming 
>>> tpCustomerApplication-ear":
>>> 
>>> 
>>> 
>>> Building tpCustomerApplication-ear-1.0-SNAPSHOT 1.0-SNAPSHOT
>>> 
>>> The POM for fr.grin:tpCustomerApplication-ejb:jar:1.0-SNAPSHOT is missing, 
>>> no dependency information available
>>> The POM for fr.grin:tpCustomerApplication-web:war:1.0-SNAPSHOT is missing, 
>>> no dependency information available
>>> 
>>> BUILD FAILURE
>>> 
>>> Total time: 0.331 s
>>> Finished at: 2019-07-18T12:04:02+02:00
>>> Final Memory: 7M/37M
>>> 
>>> Failed to execute goal on project tpCustomerApplication-ear: Could not 
>>> resolve dependencies for project 
>>> fr.grin:tpCustomerApplication-ear:war:1.0-SNAPSHOT: The following artifacts 
>>> could not be resolved: fr.grin:tpCustomerApplication-ejb:jar:1.0-SNAPSHOT, 
>>> fr.grin:tpCustomerApplication-web:war:1.0-SNAPSHOT: Could not find artifact 
>>> fr.grin:tpCustomerApplication-ejb:jar:1.0-SNAPSHOT -> [Help 1]
>>> 
>>> To see the full stack trace of the errors, re-run Maven with the -e switch.
>>> Re-run Maven using the -X switch to enable full debug logging.
>>> 
>>> For more information about the errors and possible solutions, please read 
>>> the following articles:
>>> [Help 1] 
>>> http://cwiki.apache.org/confluence/display/MAVEN/DependencyResolutionException
>>> 
>>> =
>>> 
>>> I have modified nothing; all was generated by NetBeans.
>>> 
>>> I am not used to Maven. Did I missed something or is it a bug?
>>> 
>>> Richard Grin
>>> 
>>> -
>>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>> 
>>> For further information about the NetBeans mailing lists, visit:
>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists


Re: NetBeans for Java EE 8

2019-06-15 Thread Josh Juneau
Hi Richard,

The PR for inclusion of Java EE 8 support has been issued...I'm just
working out a few minor build discrepancies...hoping to get it into the
next release.  As far as creating a Java EE 8 application project, you can
also use the Maven archetype that I developed for use with Apache NetBeans:

https://github.com/juneau001/javaee8-archetype

The Java EE 8 support uses this archetype when it creates a new Java EE 8
project.  The Java EE 8 support also adds support for GlassFish 5.0.1 and
GlassFish 5.1.  Let me know if you have any questions.


Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau
<https://www.apress.com/index.php/author/author/view/id/1866>



On Sat, Jun 15, 2019 at 5:30 AM Geertjan Wielenga 
wrote:

>
> Can you be very explicit about ‘but that is not quite the case these
> days’? Do you mean specifically the need for an installer, which already
> exists, but you can’t find it? We need very explicit statements because we
> really want to support you.
>
> And what do you mean explicitly about NetBeans ‘adapted to Java EE 8’,
> very explicitly? We have a PR right now about Payara integration by the
> Payara team, as well as a PR by Josh Juneau about various UI elements
> explicitly including Java EE 8. So these are available but not integrated
> yet.
>
> Though using Maven you could set up an archetype, e.g., the AirHacks
> archetypes by Adam Bien, which support Java EE 8, and deploy to GlassFish,
> from Apache NetBeans 11.0 onwards.
>
> Gj
>
>
> On Sat, 15 Jun 2019 at 11:46, Richard Grin 
> wrote:
>
>> Hi,
>>
>> I'm preparing a course on Java EE for this fall. When can I expect a
>> NetBeans version adapted to Java EE 8? Is it already planned?
>>
>> Will the last versions of Payara be included in the available servers?
>>
>> I have been using NetBeans for a long time because the installation of
>> the working environment was very simple for students but this is not
>> quite the case these days.
>>
>> Richard
>>
>>
>> -
>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>
>> For further information about the NetBeans mailing lists, visit:
>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>
>>


Re: Trying to set up Tomcat with Netbeans

2019-05-21 Thread Josh Juneau
Hi Owen,

As mentioned by Geertjan, if you install NetBeans 11 then it should work.
Once installed, open the "Services" tab, then right-click on "Servers" and
choose "Add Server".  One of the available server options is "Apache Tomcat
or TomEE".

Thanks
Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau
<https://www.apress.com/index.php/author/author/view/id/1866>



On Tue, May 21, 2019 at 12:47 AM Geertjan Wielenga 
wrote:

> I'd recommend to use Apache NetBeans 11, no need to install any plugins
> for what you describe.
>
> Gj
>
> On Tue, May 21, 2019 at 7:46 AM Owen Thomas 
> wrote:
>
>> Catalina base is Catalina home.
>>
>> On Tue, 21 May 2019 at 14:18, Owen Thomas 
>> wrote:
>>
>>> I've installed version 8.5.32 of Tomcat, and I have also installed the
>>> plugins as instructed for Netbeans 8.2. I'm trying to configure the server
>>> in Netbeans by right clicking Servers from the services tab, choosing Add
>>> Server, entering "/opt/tomcat/apache-tomcat-8.5.32" for the server
>>> location, but Netbeans tells me that "The specified Server Location
>>> (Catalina Home) folder is not valid.
>>>
>>> This is the folder to which $CATALINA_HOME is set. What's going wrong?
>>>
>>>


Re: NB 11 crashes on Mac

2019-04-17 Thread Josh Juneau
Hi Thomas,

There is perhaps something specific in your environment, as I have been
using NetBeans 11 daily (all day) without crashes on OS X.  Just so you
have the details of my environment and can perhaps try to configure
similarly to see if it helps:

Product Version:  Apache NetBeans IDE 11.0 (Build
incubator-netbeans-release-404-on-20190319)
Java:  1.8.0_202-b05; OpenJDK 64-Bit Server (Azul Zulu JDK)
System:  Mac OS X Version 10.13.6

Also, you may wish to try and start with a new user directory to see if
that helps.  Perhaps there is something in your current user directory that
is not functioning, as expected, and causing the crash.

Hope this helps.

On Wed, Apr 17, 2019 at 9:04 AM Thomas Wolf  wrote:

> This is about the 3rd or 4th time NB11 (the vc4 unofficial installer
> pointed to from NB download page) has crashed while I'm not using it.  The
> macOS dialog that comes up just lets me send a crash report to Apple.  Is
> it worthwhile to retrieve the crash report from somewhere (where?) and
> copy/paste it into a Jira ticket I can write on NB?  Given that it was a
> hard crash (core dump?), is there some other place I should look for more
> Java/NB specific crash info?
>
> Again, I wasn't even using Netbeans - it was either iconified or sitting
> behind some other window.  Also, each time it happened after I disconnected
> from external monitors (NB was displaying to one of them), closed my Mac,
> opened the Mac at home (with no external monitors), closed, and then
> re-opened at work after reconnecting the external monitors.  Crash happened
> awhile later (1hr?).  Again, I hadn't used NB since before the disconnect
> from the external monitors.  Hope this helps.
>
> Tom
>
>
>
> --
> tjw...@gmail.com
> http://landofwolf.blogspot.com/
>
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
>
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists

-- 
Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/us/search?query=Juneau
<https://www.apress.com/index.php/author/author/view/id/1866>


Re: Problems with NetBeans 11 creating Web applications for Java EE 8

2019-04-06 Thread Josh Juneau
Hi Richard,

Thanks for the message regarding Java EE 8 support in NetBeans 11.  We are 
working on providing Java EE 8 support (and Jakarta EE support) for an upcoming 
release.  It was a very large task to get the code transfer for the Java EE 
support and licensing conversion completed so that a the Java EE support could 
be included with NetBeans, so unfortunately Java EE 8 support did not make it 
yet.  

I am surprised to hear that the Maven web application creation did not complete 
successfully.  However, I do see that you are running Apache NetBeans under JDK 
10.  Can you please try to run Apache NetBeans under the same JDK8 that you are 
using with GlassFish 5.1?  I think that may be your issue with the Maven 
support.  Since GlassFish 5.1 only supports JDK 8, you may find inconsistencies 
in behavior if you are trying to manage the server using JDK 9+.

Thanks for the feedback, and the team will keep you updated on Java EE 8 and 
Jakarta EE support.

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866

> On Apr 6, 2019, at 7:36 AM, Richard Grin  
> wrote:
> 
> Hi,
> 
> I have just tried NetBeans 11 and I am a bit disappointed.
> 
> My environment: Windows 10 64 bit, openjdk 11 2018-09-25.
> NetBeans is running over Java 10.0.1. GlassFish 5.1 (and Payara) from Eclipse 
> is running over JDK 8.
> 
> Goal: creation of a Web application for Java EE 8
> 
> 1. Creation of a Web Java project with Maven :
> I choose "Java with Maven" > "Web Application".
> Message: "This feature is not yet enabled. Press Next to activate it.
> Maven Web Application project template, created with Maven Archetype Plugin".
> I click Next. New page "Finding Feature" without any message nor information 
> about the finding. I don't know what it's happening.
> After a long time I cancel because nothing happens. However, Yesterday the 
> process went a little farther ("Oracle JS Parser Implementation (1.0) was 
> loaded), but without success at the end.
> 
> 2. Creation of a Web application with ant.
> *It's not possible to choose Java EE 8*. The only options are Java EE 7, 6, 
> 5. I choose Java EE 7.
> Next. I check JavaServer Faces. In the tab "Libraries" I choose Server 
> Library. The project is created.
> I install nbjavac (1.6).
> New entity classes from database (from sample). Problem because 
> javax.persistence is not known. However, it is in jakarta.persistence.jar 
> provided by Eclipse GlassFish 5.1. How can I tell NetBeans where are the jars?
> If I change the server, Payara 5.184 instead of Eclipse GlassFish 5.1, it 
> works.
> 
> I liked a lot NetBeans because it was simple to create Web and Enterprise 
> Applications and I was looking forward to trying the first version of Apache 
> NetBeans for these types of application but It seems not to be really ready 
> for this task. Or perhaps I made a mistake?


Re: [DISCUSS] Apache NetBeans roadmap updates

2018-11-14 Thread Josh Juneau
I like the idea of two major releases each year...those being releases
incorporating new functionality.  However, I think it would be a good idea
to have patch releases in-between...making for a total of four releases
each year.

Josh

On Tue, Nov 13, 2018 at 7:19 AM Geertjan Wielenga
 wrote:

> Hi all,
>
> We've completed the NetCAT process (on the functioning of the convenience
> binary of Apache NetBeans 10) and the PPMC vote (on the sources of Apache
> NetBeans 10).
>
> Right now, the IPMC (the incubator project management committee) is voting
> on the sources of Apache NetBeans 10, since Apache NetBeans is in the
> Apache Incubator. (We're going to be voting to get out of the Apache
> Incubator very soon, with support from our mentors, since they're happy
> with how we're working as a community and consider us to be ready to be a
> top level Apache project.)
>
> So, what's next? After we release Apache NetBeans 10, we'll start working
> on the next release. Consensus on the dev mailing list has formed around
> quarterly releases. In the NetCAT process, we found that there was quite
> some time pressure to get things done and maybe we should take more time
> and thereby be able to provide more quality.
>
> As a result, here's a proposal to do two major releases next year, in line
> with JDK 12 and 13 in March and September, with two optional minor releases
> in between (e.g., a bug fix release could be great). Of course, Apache
> NetBeans does not serve the Java community only, though those two months of
> March and September are fairly spaced anyway and potentially could allow us
> to provide bundles with those JDKs if and when that were to be possible.
>
>
> https://cwiki.apache.org/confluence/display/NETBEANS/Apache+NetBeans+Release+Roadmap
>
> There are several significant bugs that we need to nail down and resolve,
> we can include them in the upcoming releases or distribute them via
> plugins. We're I'm sure all very aware of several problems, as well as
> features that need to be added -- we need everyone to be proactive in
> pinning down bugs and in providing code contributions for missing features.
>
> Comments welcome, and many thanks for all the hard and enthusiastic work
> done so far.
>
> Gj
>
>
> --
Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866


Re: +-j2ee.platform.classpath=

2018-11-03 Thread Josh Juneau
Hi Basin,

Thanks for the note regarding the j2ee.platform.classpath property.  I cannot 
say why this property is changing from an empty value to a string, but have you 
tried to use Apache NetBeans 9 yet?  I am wondering if using Apache NetBeans 9 
along with the NetBeans 8.2 plugins for Java EE may resolve the issue.

This article will help you set up NetBeans 9 for use with Java EE: 
https://dzone.com/articles/notes-on-java-eejakarta-ee-support-for-netbeans-9

Thanks and keep us posted.

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866

> On Oct 31, 2018, at 3:55 AM, Basin Ilya  wrote:
> 
> Hi.
> We're using Netbeans for Java EE 8.2 and we have a set of native J2EE 
> projects configured to run on Glassfish 4.1.
> Quite often we notice that the property "j2ee.platform.classpath=" in 
> nbproject/project.properties changes from an empty value to some long string 
> and vice versa. This is a problem, because this file is under version control.
> 
> I can't figure out the pattern. Sometimes just restarting the IDE causes this 
> change.
> 
> 5 minutes ago the value was empty, the project.properties file mtime was when 
> I started the IDE today and the former value was moved to private.properties.
> After that I restarted the IDE. Now the property in project.properties is 
> non-empty again and it was removed from private.properties
> 
> 
> Is there a known workaround?
> 
> -
> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
> For additional commands, e-mail: users-h...@netbeans.apache.org
> 
> For further information about the NetBeans mailing lists, visit:
> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
> 


Apache NetBeans 9.0 Highlighted in Tutorial

2018-09-21 Thread Josh Juneau
The most recent issue of Java Magazine includes an article which I authored
on developing Jakarta EE web services.  In the article, I make note of
utilizing Apache NetBeans 9.0 for development.  Someone in the community
has taken this article and written a document that states (step-by-step)
how to set up Apache NetBeans 9.0 for Java EE/Jakarta EE and run the
article examples.  I wanted to send it out to the community and applaud the
author Mikalai Zaikin for the work...job well done!!

https://docs.google.com/document/d/1skUZboiHypYApkrV8ox0wuhaHrP9t7d3D_CN4OxJLEU

Thanks

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866


Re: [java] formatter questions

2018-08-22 Thread Josh Juneau
Hi Chris,

Looking at the github site for the Eclipse Java Code Formatter plugin...it
looks like they are wanting some assistance maintaining.  To that end, I'd
recommend making a fork and patching it to get it working with NetBeans 9.

https://github.com/markiewb/eclipsecodeformatter_for_netbeans


Hope this helps...thanks.

On Wed, Aug 22, 2018 at 7:03 AM Chris McGee  wrote:

>
> Hi All,
>>
>> I am interested in using the new NetBeans 9.0 for a new project that I’m
>> working on since it looks like there are some nice improvements over 8.2.
>> It’s good to see active development on this project.
>>
>> One problem that I ran into right away is that the eclipse 4 formatter
>> module is not yet compatible.
>
>
>
> What do you mean by that, in what way is it not compatible, where are you
> getting it from, where is the source code.
>
>
> When I installed NB 8.2 I found the plugin in the plugin marketplace. It’s
> called “Eclipse Java Code Formatter.” After importing my settings into NB
> 9.0 I was prompted to install newer versions of certain plugins so that
> they are compatible, however the formatter is listed as having no
> compatible versions available.
>
> Perhaps there is a different marketplace that I can use to get it with NB
> 9.0? I could compile it myself and patch, but then it is more difficult to
> get my team on board with it.
>
>
> Thanks,
>
> Gj
>
>
> --
Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866


Re: JavaFX for NetBeans GUI

2018-08-16 Thread Josh Juneau
Thanks Sven, that is very interesting.  I will check it out!


Josh Juneau
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866


> On Aug 16, 2018, at 1:18 PM, Sven Reimers  wrote:
> 
> Hi all,
> 
> there is a project out there called eFX...
> 
> It is a simple proof of concept of reuding NetBeans core functionality (aka 
> not swing dependent) and adding a JavaFX frontend..
> 
> This is focussing on WindowSystem ideas etc. and less on IDE features(aka 
> editor).
> 
> There is one example application based on eFX - vmFX, a kind of VisualVM 
> clone..
> 
> The two people working on this are dusting off the code... because there will 
> be a Oracle Code One talk around the idea of a JavaFX Application Platform...
> 
> Hope this is interesting 
> 
> Regards 
> 
> -Sven
> 
> Miroslav Nachev  schrieb am Do., 16. Aug. 
> 2018, 18:00:
>> Great,
>> The beginning of the team was set up. We're two now.
>> 
>> 
>> Miro :)
>> 
>>> On Thu, Aug 16, 2018 at 5:57 PM, Josh Juneau  wrote:
>>> Yes indeed, I agree that it will be a lot of work and it will take talented 
>>> engineers.  Makes sense to at least look at it from a high level first to 
>>> see if certain parts of the UI could be re-written in JavaFX...done in 
>>> phases.  I'd be willing to help out, but I cannot realistically offer a ton 
>>> of my time so it would definitely take a committment from a number of 
>>> community members before taking any steps forward with this initiative.
>>> 
>>> The main focus right now is drop two...I'm going to try and help where I 
>>> can with that for now, and I think we all should do what we can.  This is 
>>> certainly a good idea for a future project though if enough people are 
>>> willing to pitch in.  
>>> 
>>>> On Thu, Aug 16, 2018 at 7:34 AM Geertjan Wielenga 
>>>>  wrote:
>>>> 
>>>> 
>>>>> On Thu, Aug 16, 2018 at 2:30 PM, Miroslav Nachev 
>>>>>  wrote:
>>>>> I agree with Geertjan Wielenga's assessment of the work and the deadline. 
>>>>> I would add, that if you go in this direction
>>>> 
>>>> 
>>>> Wait a minute. :-) You're the one who started this thread, so if anyone is 
>>>> going to "go in this direction", that person is you, Miroslav Nachev. 
>>>> 
>>>> Thanks,
>>>> 
>>>> Gj
>>>> 
>>>> 
>>>> 
>>>>  
>>>>> it is good to think about updating the architecture and especially on the 
>>>>> Plugin system. It should be made easier and more functional in keeping 
>>>>> with new trends. For example, there is JVM and one Main Module (Service), 
>>>>> that runs all the other modules of Java (JDK), NetBeans, etc. This 
>>>>> architecture can be used for many kind of applications, not only for 
>>>>> NetBeans.
>>>>> 
>>>>> 
>>>>> 
>>>>>> On Thu, Aug 16, 2018 at 3:19 PM, Geertjan Wielenga 
>>>>>>  wrote:
>>>>>> Aside from the licensing concerns, I think we need to set some 
>>>>>> expectations here. I.e., rewriting the NetBeans user interface from 
>>>>>> Swing to JavaFX is a LOT of work. And it has to be done really well and 
>>>>>> be really performant and require a group of very highly skilled JavaFX 
>>>>>> developers. I would estimate that the work involved, depending on how 
>>>>>> many and who would do it, would take at least 6 months, though that's a 
>>>>>> rough estimate. It's probably one of the most complex tasks that I can 
>>>>>> think of in relation to Apache NetBeans.
>>>>>> 
>>>>>> So, it would be great for this to be done, but let's not be naive about 
>>>>>> the amount of work, skills, and energy required.
>>>>>> 
>>>>>> Gj
>>>>>> 
>>>>>> 
>>>>>> 
>>>>>>> On Thu, Aug 16, 2018 at 2:15 PM, Neil C Smith  
>>>>>>> wrote:
>>>>>>> 
>>>>>>>> On Thu, 16 Aug 2018, 12:51 Josh Juneau,  wrote:
>>>>>>>> It would be nice to have a JavaFX GUI for NetBeans, specifically if 
>>>>>>>> something like Gluon Mobile were used
>>>>>>> 
>>>>>>> 
>>>>>>> For that to happen *here* would require a shift in Apache policies 
>>>>>>> towards GPL w/CPE licensed dependencies as far as I know. Of course, 
>>>>>>> ongoing modularization of the JDK and changes in deployment strategies 
>>>>>>> might provoke a change. 
>>>>>>> 
>>>>>>> Best wishes, 
>>>>>>> 
>>>>>>> Neil
>>>>>> 
>>>>> 
>>>> 
>>> 
>>> -- 
>>> Josh Juneau
>>> juneau...@gmail.com
>>> http://jj-blogger.blogspot.com
>>> https://www.apress.com/index.php/author/author/view/id/1866
>>> 
>> 


Re: JavaFX for NetBeans GUI

2018-08-16 Thread Josh Juneau
Yes indeed, I agree that it will be a lot of work and it will take talented
engineers.  Makes sense to at least look at it from a high level first to
see if certain parts of the UI could be re-written in JavaFX...done in
phases.  I'd be willing to help out, but I cannot realistically offer a ton
of my time so it would definitely take a committment from a number of
community members before taking any steps forward with this initiative.

The main focus right now is drop two...I'm going to try and help where I
can with that for now, and I think we all should do what we can.  This is
certainly a good idea for a future project though if enough people are
willing to pitch in.

On Thu, Aug 16, 2018 at 7:34 AM Geertjan Wielenga
 wrote:

>
>
> On Thu, Aug 16, 2018 at 2:30 PM, Miroslav Nachev <
> mnachev.nscenter...@gmail.com> wrote:
>
>> I agree with Geertjan Wielenga's assessment of the work and the deadline.
>> I would add, that if you go in this direction
>>
>
>
> Wait a minute. :-) You're the one who started this thread, so if anyone is
> going to "go in this direction", that person is you, Miroslav Nachev.
>
> Thanks,
>
> Gj
>
>
>
>
>
>> it is good to think about updating the architecture and especially on the
>> Plugin system. It should be made easier and more functional in keeping with
>> new trends. For example, there is JVM and one Main Module (Service), that
>> runs all the other modules of Java (JDK), NetBeans, etc. This architecture
>> can be used for many kind of applications, not only for NetBeans.
>>
>>
>>
>> On Thu, Aug 16, 2018 at 3:19 PM, Geertjan Wielenga <
>> geertjan.wiele...@googlemail.com.invalid> wrote:
>>
>>> Aside from the licensing concerns, I think we need to set some
>>> expectations here. I.e., rewriting the NetBeans user interface from Swing
>>> to JavaFX is a LOT of work. And it has to be done really well and be really
>>> performant and require a group of very highly skilled JavaFX developers. I
>>> would estimate that the work involved, depending on how many and who would
>>> do it, would take at least 6 months, though that's a rough estimate. It's
>>> probably one of the most complex tasks that I can think of in relation to
>>> Apache NetBeans.
>>>
>>> So, it would be great for this to be done, but let's not be naive about
>>> the amount of work, skills, and energy required.
>>>
>>> Gj
>>>
>>>
>>>
>>> On Thu, Aug 16, 2018 at 2:15 PM, Neil C Smith 
>>> wrote:
>>>
>>>>
>>>> On Thu, 16 Aug 2018, 12:51 Josh Juneau,  wrote:
>>>>
>>>>> It would be nice to have a JavaFX GUI for NetBeans, specifically if
>>>>> something like Gluon Mobile were used
>>>>>
>>>>
>>>> For that to happen *here* would require a shift in Apache policies
>>>> towards GPL w/CPE licensed dependencies as far as I know. Of course,
>>>> ongoing modularization of the JDK and changes in deployment strategies
>>>> might provoke a change.
>>>>
>>>> Best wishes,
>>>>
>>>> Neil
>>>>
>>>>>
>>>
>>
> --
Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866


Re: Adding Visual Web Designer using JavaFX

2018-08-16 Thread Josh Juneau
A visual web designer would be nice for newcomers.  I used it way back when
for a project or two and it was nice.  However, I am not very keen on
having the IDE write front-end code for me...so I didn't use it for too
much.

On Wed, Aug 15, 2018 at 12:56 AM Geertjan Wielenga
 wrote:

>
>
> On Wed, Aug 15, 2018 at 5:04 AM, Miroslav Nachev <
> mnachev.nscenter...@gmail.com> wrote:
>
>> Besides, I've been involved in other Open Source Projects and I know,
>> that there is one core team, that receives a payment for the difference
>> from the other fans.
>>
>
>
> No, there is no core team and there is no one receiving payment from
> anyone.
>
> Thanks,
>
> Gj
>
>
>
>>
>>
>> Regards,
>> Miro.
>>
>> On Tue, Aug 14, 2018 at 12:23 AM, John McDonnell <
>> mcdonnell.j...@gmail.com> wrote:
>>
>>> Hi Miroslav,
>>>
>>> While I wouldn't be a user of this, I think its great to see someone so
>>> passionate about new features in NetBeans.
>>>
>>> But I think the pushback your seeing is that while its great to see new
>>> feature requests, the operating model of NetBeans has changed with the move
>>> to Apache.  In the past, you might have been able to put forward a new
>>> feature request, and in a future release, it might have arrived.  This
>>> isn't how NetBeans works moving forward.  We're now a community-driven
>>> project, if you have a feature request then please do add it to JIRA[1],
>>> and comment on the mailing lists about it, encourage others to vote for
>>> it.
>>>
>>> But in the end, it's going to need a "champion", someone that can take
>>> the time to look to implement the feature, or indeed someone to organise a
>>> few people to work on it if its a larger feature and others show an
>>> interest.  Without this "champion" it's hard to see any feature request get
>>> implemented if no one else sees's its benefit.
>>>
>>> Probably one of the best things you could do is to create a JIRA, and
>>> then maybe start a confluence page under[2], documenting what the actual
>>> requirement is.  Break down the areas of the IDE that might be affected,
>>> what might need to change, what might need to be added etc...  Maybe then
>>> as people see how much effort is involved,  it might help others get
>>> involved.  Maybe you might then see that its enough for one people and
>>> implement it into the IDE, or maybe you might see there's a lot of work to
>>> be done and it might not be worth it in the end - I just don't know.
>>>
>>>
>>> [1]: https://issues.apache.org/jira/projects/NETBEANS/issues
>>> [2]:
>>> https://cwiki.apache.org/confluence/display/NETBEANS/Feature+Request+Outlines
>>>
>>> Regards
>>>
>>> John
>>>
>>> On Mon, 13 Aug 2018 at 14:52, Miroslav Nachev <
>>> mnachev.nscenter...@gmail.com> wrote:
>>>
>>>> Having in mind, that the heaviest work has already been done with
>>>> WebEngine (WebView), HTMLEditor and the dynamic adding of components,
>>>> JavaScript, CSS, Web functionality and communication between Java Objects
>>>> and Web Objects, the rest is not that complicated.
>>>> Almost every day we use WebEngine on JavaFX 10 and I can say, it
>>>> behaves like a very stable browser on all the sites I've visited. I would
>>>> say it does not give way to Chrome, Edge, etc.
>>>>
>>>>
>>>> On Mon, Aug 13, 2018 at 4:32 PM, Kai Uwe Pel 
>>>> wrote:
>>>>
>>>>> +++ 1
>>>>>
>>>>> On 8/13/2018 3:27 PM, Bayless wrote:
>>>>>
>>>>> Good answer Geertjan!
>>>>>
>>>>> Bayless
>>>>>
>>>>> On 08/13/2018 07:11 AM, Geertjan Wielenga wrote:
>>>>>
>>>>> I think relatively easy tasks do not exist in software development.
>>>>>
>>>>> Gj
>>>>>
>>>>> On Mon, Aug 13, 2018 at 2:07 PM, Miroslav Nachev <
>>>>> mnachev.nscenter...@gmail.com> wrote:
>>>>>
>>>>>> Hi,
>>>>>>
>>>>>> In case, that JavaFX replace Swing for NetBeans GUI, creating a
>>>>>> Visual Web Designer will be a relatively easy task. What do you think?
>>>>>>
>>>>>>
>>>>>> Regards,
>>>>>> Miro.
>>>>>>
>>>>>>
>>>>>
>>>>>
>>>>>
>>>>
>>
> --
Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866


Re: JavaFX for NetBeans GUI

2018-08-16 Thread Josh Juneau
It would be nice to have a JavaFX GUI for NetBeans, specifically if
something like Gluon Mobile were used so that NetBeans UI could be ported
over to iOS and Android.  There are apps such as Dringend (
http://dringend.cc) on iOS that have a GUI for the mobile device that
communicates back with a desktop or server containing XCode.  It'd be great
to have a mobile version of the NetBeans editor that was able to work with
NetBeans on my Mac to compile and deploy code for development purposes.  I
have a semi-functional workflow right now with iOS whereby I store my code
in iCloud and then NetBeans on my Mac will automatically pick up any code
changes and redeploy to the server on my Mac.  I can then use an iOS editor
for the source code...but there are no editors on iOS that compare to
NetBeans on my Mac...so I usually end up remoting into the Mac.



On Mon, Aug 13, 2018 at 5:55 AM Geertjan Wielenga
 wrote:

> Sure, make it happen -- and here's where you can provide the pull request:
> https://github.com/apache/incubator-netbeans/pulls
>
> You can work with others on this project, put together a proposal, and
> code your solution.
>
> Gj
>
>
>
> On Mon, Aug 13, 2018 at 12:51 PM, Miroslav Nachev <
> mnachev.nscenter...@gmail.com> wrote:
>
>> Hi,
>>
>> Are there any plans NetBeans to use JavaFX for own GUI instead Swing
>>
> --
Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866


Re: Virtual Apache NetBeans Meetups

2018-08-07 Thread Josh Juneau
Excellent information...thanks for posting the audio.

On Tue, Aug 7, 2018 at 8:53 AM constantin drabo 
wrote:

> Thank you
>
> Constantin
>
> ?? La Terre est le berceau de l'humanit??, mais on ne passe pas sa vie
> enti??re dans un berceau. ??
> - ConstantinE. Tsiolkovski , p??re de l'astronautique?? et de
> l'a??rospatiale modernes.
> --
> *De :* Geertjan Wielenga 
> *Envoyé :* mardi 7 août 2018 01:03
> *À :* us...@netbeans.incubator.apache.org
> *Objet :* Re: Virtual Apache NetBeans Meetups
>
> Here's the audio, there were about 10 people in attendance:
>
> https://www.youtube.com/watch?v=tibK6A8CzYs
>
> It was really quite nice, thanks for all who attended, and here's how to
> sign up for the next ones:
>
> https://doodle.com/poll/xueimbynzam7sri7
>
> The idea is for each meeting to be an hour in length.
>
> Thanks all!
>
> Gj
>
>
> On Tue, Aug 7, 2018 at 11:27 AM, Geertjan Wielenga <
> geertjan.wiele...@googlemail.com> wrote:
>
> In half an hour from now, the first of the virtual meetups will take
> place:
>
> Agenda:
>
> 1. Apache NetBeans status, roadmap, and release cycle.
> 2. 2nd donation and work that needs to be done in this area.
> 3. Open questions on anything not working for you, issues, etc.
>
> Feel free to sign up so we know who'll be there:
>
> https://doodle.com/poll/xueimbynzam7sri7
>
> Meeting location:
>
> https://meet.jit.si/ApacheNetBeansMeeting1
>
> Thanks,
>
> Gj
>
>
>
>
>
>
> On Sun, Aug 5, 2018 at 9:18 AM, Geertjan Wielenga <
> geertjan.wiele...@googlemail.com> wrote:
>
> Yes, definitely.
>
> Also note, according to the Apache rules, no decisions can be made outside
> the mailing lists. So, these meetups are just to implement decisions that
> have already been made, to assign/receive tasks within the project (e.g.,
> related to the 2nd donation integration) and to discuss/help with various
> loose ends, not to make any decisions of any kind.
>
> Gj
>
>
> On Sun, Aug 5, 2018 at 5:49 AM, Josh Juneau  wrote:
>
> Hi Geertjan,
>
> Can these virtual meetings be recorded for those who will be unable to
> attend at that time?
>
> Thanks
>
> Josh Juneau
> juneau...@gmail.com
> http://jj-blogger.blogspot.com
> https://www.apress.com/index.php/author/author/view/id/1866
>
> On Aug 4, 2018, at 4:28 AM, Geertjan Wielenga <
> geertjan.wiele...@googlemail.com.INVALID> wrote:
>
> Hi all,
>
> Quite some discussions here on Apache mailing lists take a very long time
> and tend to become quite exhausting.
>
> A solution might be to have occasional structured virtual meetups.
>
> Over the next weeks, how about we have a meeting every Tuesday 12:00 CEST.
> Yes, that'll exclude a part of the world, but let's see how these go for
> the moment, and then go from there.
>
> An agenda:
>
> 1. Apache NetBeans Roadmap and release cycle.
> 2. 2nd donation and work that needs to be done in this area.
> 3. Open questions on anything not working for you, issues, etc.
>
> Feel free to pop into this, to give an idea of how many will attend, it
> would be great if you'd sign up here:
>
> https://doodle.com/poll/xueimbynzam7sri7
>
> The meeting itself will take place here, the first next week Tuesday, 7
> August, 12:00 CEST:
>
> https://meet.jit.si/ApacheNetBeansMeeting1
>
> Thanks,
>
> Gj
>
>
>
>
> --
Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866


Re: Virtual Apache NetBeans Meetups

2018-08-04 Thread Josh Juneau
Hi Geertjan,

Can these virtual meetings be recorded for those who will be unable to attend 
at that time?  

Thanks

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866

> On Aug 4, 2018, at 4:28 AM, Geertjan Wielenga 
>  wrote:
> 
> Hi all,
> 
> Quite some discussions here on Apache mailing lists take a very long time and 
> tend to become quite exhausting.
> 
> A solution might be to have occasional structured virtual meetups.
> 
> Over the next weeks, how about we have a meeting every Tuesday 12:00 CEST. 
> Yes, that'll exclude a part of the world, but let's see how these go for the 
> moment, and then go from there.
> 
> An agenda:
> 
> 1. Apache NetBeans Roadmap and release cycle.
> 2. 2nd donation and work that needs to be done in this area.
> 3. Open questions on anything not working for you, issues, etc.
> 
> Feel free to pop into this, to give an idea of how many will attend, it would 
> be great if you'd sign up here:
> 
> https://doodle.com/poll/xueimbynzam7sri7
> 
> The meeting itself will take place here, the first next week Tuesday, 7 
> August, 12:00 CEST:
> 
> https://meet.jit.si/ApacheNetBeansMeeting1
> 
> Thanks,
> 
> Gj
> 


Re: Netbeans 9.0 JEE Support

2018-07-18 Thread Josh Juneau
Hi All,

I wanted to chime in to let you know I am using NetBeans 9 with the 8.2 update 
center Java EE plug-ins for daily work.  It works well.  If you have any issues 
with it then I can try to help out. 

Thanks

Josh Juneau
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866


> On Jul 18, 2018, at 2:40 PM, Geertjan Wielenga 
>  wrote:
> 
> 
> Apache NetBeans (incubating) 9.0 is focused on Java SE only.
> 
> After the release, we’ll start integrating the recently donated features, 
> including enterprise Java, which are on a branch right now.
> 
> You can use the 8.2 update center in 9.0 in most cases, including the plugins 
> for enterprise Java.
> 
> Gj
> 
>> On Wednesday, July 18, 2018, Frank Martínez  wrote:
>> Hi Guys,
>> 
>> First of all, thank you for maintaining this great IDE alive. And sorry if
>> you already answered my question.
>> 
>> I have been using Netbeans since its early stages, many years ago. I love
>> this IDE and I am very comfortable working with it. It is part of my daily
>> work. I work with JEE 6/7, JSF, JPA, etc.. I am afraid if can I move from
>> 8.2 to 9.0 and continue having full JEE support.
>> 
>> Thank you.
>> 
>> Frank Martínez.
>> 
>> -- 
>> Frank D. Martínez M.


Re: Netbeans 9 profiler

2018-07-14 Thread Josh Juneau
Hi Everyone,

I also have no issues with the profiler (ran through the same steps as
outlined by Alan) on OS X 10.13.5.  I was part of the NetCAT for profiler
as well.  I am leaning towards a Windows-specific issue perhaps.

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866


On Sat, Jul 14, 2018 at 7:51 AM, Sven Reimers 
wrote:

> Hi all..
>
> I was part of the NetCat Profiler tribe and I remember having some
> problems in the early phase but nothing later on...
>
> I am using OS X... so maybe something
> specific with Windows?
>
> What version of Windows are you using...
>
> @NetCat anyone able to reproduce?
>
> I still have to check the crashdump...
>
> But probably some feedback grom the JBS may be helpful
>
> -Sven
>
> Geertjan Wielenga  schrieb am
> Sa., 14. Juli 2018, 11:39:
>
>> That’s correct vc3 is the one to use.
>>
>> Note that at this stage it is very unlikely we’re going to fix anything
>> for the 9.0 release. That is set to be released in August, the voting going
>> well so far. However, we intend to have quarterly releases and this can be
>> included in the next release — note that some problems in the Profiler area
>> have already been fixed and so this must be something different.
>>
>> I hope you understand. We can’t create another whole new build and
>> restart voting from scratch at this stage, unless we as a community decide
>> that this is what must be done, delaying the release significantly.
>>
>> Gj
>>
>>
>> On Saturday, July 14, 2018, Peter Hull  wrote:
>>
>>> Obviously I can't speak for anyone else, but I am using vc3 which I
>>> understand is the latest version (newer than rc1, is that correct?)
>>> Pete
>>>
>>>
>>> On Sat, 14 Jul 2018 at 08:02 Geertjan Wielenga <
>>> geertjan.wiele...@googlemail.com> wrote:
>>>
>>>> Are you using rc1 or the vc3 build?
>>>>
>>>> See blogs.apache.org/netbeans.
>>>>
>>>> Thanks,
>>>>
>>>> Gj
>>>>
>>>>
>>>> On Saturday, July 14, 2018, Peter Hull  wrote:
>>>>
>>>>> On Fri, Jul 13, 2018 at 8:39 PM Glenn Holmer
>>>>>  wrote:
>>>>> >
>>>>> > [Sorry if this appears twice, T-bird crashed while sending.]
>>>>> I only saw it once!
>>>>>
>>>>> > Yes, I couldn't find it either. FYI, this was reported during NetCAT:
>>>>> >
>>>>> > https://issues.apache.org/jira/browse/NETBEANS-298
>>>>> I'm not sure it's the same thing; Alan's report does include that
>>>>> reflection warning, but there's also a 'hard' crash in the JVM itself
>>>>> where it gets a EXCEPTION_ACCESS_VIOLATION.
>>>>>
>>>>> Pete
>>>>>
>>>>> -
>>>>> To unsubscribe, e-mail: users-unsubscr...@netbeans.apache.org
>>>>> For additional commands, e-mail: users-h...@netbeans.apache.org
>>>>>
>>>>> For further information about the NetBeans mailing lists, visit:
>>>>> https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
>>>>>
>>>>>


Re: [java] Can NB 8.2 and NB 9 Coexist

2018-05-24 Thread Josh Juneau
Hi Bob,

Yes, you can install both NetBeans 9 and NetBeans 8.2 on the same machine.  
Furthermore, you can install the NetBeans 8.2 plugins (some of them work) on 
NetBeans 9 and develop Java EE apps.  I am doing this today with the incubator 
release.  

Hope this helps.

Josh Juneau
juneau...@gmail.com
http://jj-blogger.blogspot.com
https://www.apress.com/index.php/author/author/view/id/1866

> On May 24, 2018, at 8:47 PM, Bob Scott <rscotthotspri...@outlook.com> wrote:
> 
>  
> Hello, Can Netbeans 8.2 and Netbeans 9 coexist on the same machine? I wanted 
> to install JEE on the 8.2 installation. Thanks.
> 
> Sent from Mail for Windows 10
>