Re: Migrating axis2-1.8.2

2024-05-26 Thread Amit Patil
Got it. Thank you Robert. On Mon, 27 May 2024 at 06:04, robertlazarski wrote: > Absolutely you can, I recommend reading the Apache foundation license that > comes with the code but anyways in effect you can use the code any way you > like. > > On Sun, May 26, 2024 at 2:30 PM Amit Patil > wrote

Re: Migrating axis2-1.8.2

2024-05-26 Thread robertlazarski
Absolutely you can, I recommend reading the Apache foundation license that comes with the code but anyways in effect you can use the code any way you like. On Sun, May 26, 2024 at 2:30 PM Amit Patil wrote: > Okay sure, I will try to compile with the latest version of openjdk 17. > Thank you so m

Re: Migrating axis2-1.8.2

2024-05-26 Thread Amit Patil
Okay sure, I will try to compile with the latest version of openjdk 17. Thank you so much for the help and guidance. One last question, if I successfully compile the current axis2-1.8.3, will it be officially ok to use it in my code? On Mon, 27 May 2024 at 05:52, robertlazarski wrote: > Might w

Re: Migrating axis2-1.8.2

2024-05-26 Thread robertlazarski
Might want to use openjdk. On Sun, May 26, 2024 at 2:14 PM Amit Patil wrote: > Okay, I will also try with the latest version of jdk and try to compile. > > On Mon, 27 May 2024 at 05:42, robertlazarski > wrote: > >> Your JDK is a little dated though I am unsure if that matters; mine comes >> wit

Re: Migrating axis2-1.8.2

2024-05-26 Thread robertlazarski
You can't just replace 1.8.2 jars as there are literally hundreds of Java source files that were changed to support jakarta. On Sun, May 26, 2024 at 2:13 PM Amit Patil wrote: > Okay, I understand. > So will it be ok if I replace the javax jars in the axis2-1.8.2 package we > are using right now

Re: Migrating axis2-1.8.2

2024-05-26 Thread Amit Patil
Okay, I will also try with the latest version of jdk and try to compile. On Mon, 27 May 2024 at 05:42, robertlazarski wrote: > Your JDK is a little dated though I am unsure if that matters; mine comes > with recent Ubuntu: > > openjdk version "17.0.10" 2024-01-16 > OpenJDK Runtime Environment (b

Re: Migrating axis2-1.8.2

2024-05-26 Thread Amit Patil
Okay, I understand. So will it be ok if I replace the javax jars in the axis2-1.8.2 package we are using right now with the jakarta ones? Or will it be officially ok if I use the pre compiled axis2-1.8.3 package if I can find it somewhere to use in my code? We are already using JDK 17 in our code.

Re: Migrating axis2-1.8.2

2024-05-26 Thread robertlazarski
Your JDK is a little dated though I am unsure if that matters; mine comes with recent Ubuntu: openjdk version "17.0.10" 2024-01-16 OpenJDK Runtime Environment (build 17.0.10+7-Ubuntu-123.10.1) OpenJDK 64-Bit Server VM (build 17.0.10+7-Ubuntu-123.10.1, mixed mode, sharing) On Sun, May 26, 2024 at

Re: Migrating axis2-1.8.2

2024-05-26 Thread robertlazarski
No idea, I am not seeing these issues anywhere else - locally, on GitHub - however I don't doubt there is a problem as this is the unstable master branch and I run Ubuntu locally. We are moving to JDK 17 as jakarta requires it and at a glance it compiles ok on my local machine but I see the follow

Re: Migrating axis2-1.8.2

2024-05-26 Thread Amit Patil
By using this mvn -Dmaven.test.skip.exec clean install I am facing an issue with > > java.lang.NullPointerException: Cannot invoke > "org.slf4j.Logger.error(String, java.lang.Throwable)" because "logger" is > null And by using this mvn -B -e -Papache-release -Dgpg.skip=true verify I am facing t

Re: Migrating axis2-1.8.2

2024-05-26 Thread Amit Patil
Shoule source and target in parent pom.xml be 17? 1.8 1.8 On Mon, 27 May 2024 at 04:45, robertlazarski wrote: > Hmm, "mvn -Dmaven.test.skip.exec clean install" should work however if > not then I suggest trying the comman

Re: Migrating axis2-1.8.2

2024-05-26 Thread robertlazarski
Hmm, "mvn -Dmaven.test.skip.exec clean install" should work however if not then I suggest trying the command used to build with GitHub Actions: mvn -B -e -Papache-release -Dgpg.skip=true verify https://github.com/apache/axis-axis2-java-core/actions/runs/9235500518/job/25410379970 On Sun, May 26,

Re: Migrating axis2-1.8.2

2024-05-26 Thread Amit Patil
Yes I am using jdk 17. permission java.io.FilePermission "C:\\Program Files\\Eclipse Adoptium\\jdk-17.0.3.7-hotspot", "read,readlink"; On Mon, 27 May 2024 at 04:23, robertlazarski wrote: > You need to compile with JDK 17. > > On Sun, May 26, 2024 at 12:50 PM Amit Patil > wrote: > >> Thanks for

Re: Migrating axis2-1.8.2

2024-05-26 Thread robertlazarski
You need to compile with JDK 17. On Sun, May 26, 2024 at 12:50 PM Amit Patil wrote: > Thanks for the clarification, > Can you please confirm a couple of things, Can I officially take the > master branch of the axis2 repository and compile it to use in my code? and > I am getting the following er

Re: Migrating axis2-1.8.2

2024-05-26 Thread Amit Patil
Thanks for the clarification, Can you please confirm a couple of things, Can I officially take the master branch of the axis2 repository and compile it to use in my code? and I am getting the following error while building. > [ERROR] Errors: > [ERROR] ServiceClientTest.testWSDLWithImportsFromZIP

Re: Migrating axis2-1.8.2

2024-05-26 Thread robertlazarski
The license is open source via the Apache license at all times - the only difference with an official release of 1.8.3 is binaries that can be loaded via Maven and direct links. On Sun, May 26, 2024 at 12:06 PM robertlazarski wrote: > This is the repo - only missing feature is OSGI as it may get

Re: Migrating axis2-1.8.2

2024-05-26 Thread robertlazarski
This is the repo - only missing feature is OSGI as it may get dropped if we don't get a volunteer. Beyond that, the only expected difference is httpclient4 instead of httpclient5 ... which is going to be more stable for the next month or two. https://github.com/apache/axis-axis2-java-core On Sun

Re: Migrating axis2-1.8.2

2024-05-26 Thread Amit Patil
Hi, Thank you so much for the response. Can you please provide me with the link to the right branch or tag? I will try to compile from source as of now. But we are not authorized to use the product which has not been released yet with a licence. Although it will be good for testing for now and comm

Re: Migrating axis2-1.8.2

2024-05-26 Thread robertlazarski
Tomcat 10 supports axis2 via the legacyAppBase folder - see the Tomcat 10 docs for details. Axis 1.8.3 will support jakarta and the only thing holding up the release is httpclient5 which isn't related to jakarta at all ... you can check out the Axis2 github repo and compile from source now if you

Migrating axis2-1.8.2

2024-05-26 Thread Amit Patil
Hello, I am a software developer in a MNC working on developing web applications in java. Currently I am in the middle of a task of migrating my code from javax to jakarta because we are upgrading to tomcat 10. We use *axis2 1.8.2 *in our code which consists of some javax jars and code snippets wit