Re: Jxpath getting stuck on trying to do a getValue

2023-09-24 Thread Debraj Manna
> On Sun, Sep 24, 2023 at 2:32 PM Debraj Manna > wrote: > > > Is there a way I can throw some error from jxpath when this situation > > arises instead of getting stuck in a never ending loop? > > > > On Sun, 24 Sep, 2023, 22:54 Matt Benson, wrote: > > &g

Re: Jxpath getting stuck on trying to do a getValue

2023-09-24 Thread Debraj Manna
'd run into trouble. > > On Sun, Sep 24, 2023 at 12:22 PM Matt Benson wrote: > > > If you're doing a search down the tree you'd need some way to keep JXPath > > from traversing these relationships, yes. > > > > On Sun, Sep 24, 2023 at 11:59 AM Debraj Manna > > wro

Re: Jxpath getting stuck on trying to do a getValue

2023-09-24 Thread Debraj Manna
ld has a property that > points, possibly indirectly, to its parent? That would be the most probable > explanation, particularly as you say feeding jxpath the known absolute path > works. > > Matt > > On Sun, Sep 24, 2023, 9:44 AM Debraj Manna > wrote: > > > It looks li

Re: Jxpath getting stuck on trying to do a getValue

2023-09-24 Thread Debraj Manna
Manna wrote: > I am trying to search using JxPath on a proto message, My proto message is > placed here > <https://gist.github.com/debraj-manna/4a8ded5d79dc9aee8d4c03d460327284>. > > val protoStr = > getStringFromFile("classpath:BookingEnginePnrUpdateE

Jxpath getting stuck on trying to do a getValue

2023-09-23 Thread Debraj Manna
I am trying to search using JxPath on a proto message, My proto message is placed here <https://gist.github.com/debraj-manna/4a8ded5d79dc9aee8d4c03d460327284>. val protoStr = getStringFromFile("classpath:BookingEnginePnrUpdateEventProto.txt"); val msgBld = BookingEnginePNRUpdate

Is commons-jxpath still maintained?

2023-09-22 Thread Debraj Manna
Hi We are using commons-jxpath 1.3 but the last release was done about 7 years ago. There are some open vulnerabilities also in 1.3 version. Can someone let me know if this project is still maintained or if I should be using some other dependency instead of the one below? commons-jxpath

Re: CVE-2022-40160O on commons-jxpath

2023-06-30 Thread Debraj Manna
commons-jxpath 1.3 is also getting flagged for CVE-2022-401 <https://security.snyk.io/vuln/SNYK-JAVA-COMMONSJXPATH-3040994>59. On Fri, Jun 30, 2023 at 6:28 PM Debraj Manna wrote: > Hi > > We have been flagged for CVE-2022-401600 > <https://security.snyk.io/vuln/SNYK-JAVA-

CVE-2022-40160O on commons-jxpath

2023-06-30 Thread Debraj Manna
Hi We have been flagged for CVE-2022-401600 on commons-jxpath, version 1.3. Can someone let me know commons-jxpath is really affected by this vulnerability? If yes, is there any plan to fix this?

Updating common-beanutils 1.9.2 on common-validator

2020-05-27 Thread Debraj Manna
Hi common-validator 1.6 uses common-beanutils 1.9.2 which has a vulnerability as explained in the below link https://vuldb.com/?id.140386 Is there any plan for updating the common-beanutils to the latest in common-validator? Thanks,

commons-io dependency for file-upload

2018-10-12 Thread Debraj Manna
Hi The dependency page state commons-io 2.2 is one of the required dependency for file-upload. Can someone let me know if I have to use exact version 2.2 for commons-io with file-upload 1.3.3 or I can use any version of

Re: [Math] Calculate R-Square for PolynomialCurveFitter

2018-03-18 Thread Debraj Manna
Thanks Giles for the pointers. On Sun, Mar 18, 2018 at 10:29 PM, Gilles <gil...@harfang.homelinux.org> wrote: > On Sun, 18 Mar 2018 20:52:27 +0530, Debraj Manna wrote: > >> Cross-posting from stackoverflow >> >> <https://stackoverflow.com/question

[Math] Calculate R-Square for PolynomialCurveFitter

2018-03-18 Thread Debraj Manna
Cross-posting from stackoverflow . OLSMultipleLinearRegression, SimpleRegression provide a method that returns calculateRSquared(), getRSquare(). But I am not able to find any such

Re: [Math] How to do Polynomial Regression ?

2018-03-13 Thread Debraj Manna
Thanks Phil On Tue, Mar 13, 2018 at 4:03 AM, Phil Steitz <phil.ste...@gmail.com> wrote: > On 3/12/18 10:15 AM, Debraj Manna wrote: > > Crossposting from stackoverflow > > <https://stackoverflow.com/questions/49238446/polynomial- > regression-with-apache-maths-3-6-

[Math] How to do Polynomial Regression ?

2018-03-12 Thread Debraj Manna
Crossposting from stackoverflow as I did not get any reply there Can someone let me know how I can do Polynomial Regression with Apache Maths