Rocksolid Light

Welcome to novaBBS (click a section below)

mail  files  register  newsreader  groups  login

Message-ID:  

Knowledge, sir, should be free to all! -- Harry Mudd, "I, Mudd", stardate 4513.3


computers / comp.os.vms / ActiveMQ on VMS Alpha

SubjectAuthor
* ActiveMQ on VMS AlphaArne Vajhøj
+- Re: ActiveMQ on VMS AlphaArne Vajhøj
`* Re: ActiveMQ on VMS AlphaArne Vajhøj
 `* Re: ActiveMQ on VMS AlphaArne Vajhøj
  `* Re: ActiveMQ on VMS Alphaissinoho
   +- Re: ActiveMQ on VMS AlphaSimon Clubley
   +- Re: ActiveMQ on VMS AlphaArne Vajhøj
   `* Re: Java on OpenVMS Alpha, HP FTP server archives (was: Re: ActiveMQ on VMS AlphStephen Hoffman
    `- Re: Java on OpenVMS Alpha, HP FTP server archives (was: Re: ActiveMQArne Vajhøj

1
ActiveMQ on VMS Alpha

<tn65j3$8rh$1@gioia.aioe.org>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=25796&group=comp.os.vms#25796

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!aioe.org!LeVffQP25j5GAigzc2gaQA.user.46.165.242.75.POSTED!not-for-mail
From: arn...@vajhoej.dk (Arne Vajhøj)
Newsgroups: comp.os.vms
Subject: ActiveMQ on VMS Alpha
Date: Sun, 11 Dec 2022 22:01:53 -0500
Organization: Aioe.org NNTP Server
Message-ID: <tn65j3$8rh$1@gioia.aioe.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Info: gioia.aioe.org; logging-data="9073"; posting-host="LeVffQP25j5GAigzc2gaQA.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.5.1
X-Notice: Filtered by postfilter v. 0.9.2
Content-Language: en-US
 by: Arne Vajhøj - Mon, 12 Dec 2022 03:01 UTC

Topic came up in recent discussion.

VSI has ActiveMQ 5.15-0 (almost recent, latest is 5.17.2) for VMS I64,
but nothing for VMS Alpha.

For obvious reasons. VMS I64 has a somewhat recent Java 8. VMS Alpha
only got Java 5 (2004!).

But ActiveMQ is an old product so I assumed there would be a
version that ran on Java 5.

And there was. ActiveMQ 5.4.3 comes build for Java 5.

And it can be made running on VMS.

The binary dist copied to VMS with all jar files and
XML config files.

activemq.com:

$ define/nolog java$filename_controls 8
$ define/nolog decc$efs_charset true
$ define/nolog java$filename_match_list
"*.data=shr=get,put","*.log=shr=get,put"
$ activemq_home = "/disk2/arne/amq"
$ java "-Xmx512m" -jar "''activemq_home'/bin/run.jar" start
$ exit

(the shr=get,put thing is necessary because the KahaDB code
does some really funky stuff by opening some files twice both
as "rw" and "r" using java.io.RandomAccessFile)

One code hack needed. To avoid a weird error I had to rebuild
kahadb-5_4_3.jar with a hacked
org.apache.kahadb.journal.DataFileAppender specifically
with line 395 outcommented:

//file.getFD().sync();

(I suspect there is some subtle bug in VMS Java 5)

OpenWire clients worked (tested with Java).

For STOMP clients I had to add STOMP connector
to activemq.xml (one would need to do that on any
platform) and have the client connect using
STOMP 1.0 (not 1.1 or 1.2), but then it
worked (tested with Python)

This is the recipe in case someone want to use
ActiveMQ on VMS Alpha.

Maybe I should create a kit to make it easier.

Arne

Re: ActiveMQ on VMS Alpha

<tn65oh$8rh$2@gioia.aioe.org>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=25797&group=comp.os.vms#25797

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!aioe.org!LeVffQP25j5GAigzc2gaQA.user.46.165.242.75.POSTED!not-for-mail
From: arn...@vajhoej.dk (Arne Vajhøj)
Newsgroups: comp.os.vms
Subject: Re: ActiveMQ on VMS Alpha
Date: Sun, 11 Dec 2022 22:04:47 -0500
Organization: Aioe.org NNTP Server
Message-ID: <tn65oh$8rh$2@gioia.aioe.org>
References: <tn65j3$8rh$1@gioia.aioe.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Info: gioia.aioe.org; logging-data="9073"; posting-host="LeVffQP25j5GAigzc2gaQA.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.5.1
Content-Language: en-US
X-Notice: Filtered by postfilter v. 0.9.2
 by: Arne Vajhøj - Mon, 12 Dec 2022 03:04 UTC

On 12/11/2022 10:01 PM, Arne Vajhøj wrote:
> Topic came up in recent discussion.
>
> VSI has ActiveMQ 5.15-0 (almost recent, latest is 5.17.2) for VMS I64,
> but nothing for VMS Alpha.
>
> For obvious reasons. VMS I64 has a somewhat recent Java 8. VMS Alpha
> only got Java 5 (2004!).
>
> But ActiveMQ is an old product so I assumed there would be a
> version that ran on Java 5.
>
> And there was. ActiveMQ 5.4.3 comes build for Java 5.
>
> And it can be made running on VMS.
>
> The binary dist copied to VMS with all jar files and
> XML config files.
>
> activemq.com:
>
> $ define/nolog java$filename_controls 8
> $ define/nolog decc$efs_charset true
> $ define/nolog java$filename_match_list
> "*.data=shr=get,put","*.log=shr=get,put"
> $ activemq_home = "/disk2/arne/amq"
> $ java "-Xmx512m" -jar "''activemq_home'/bin/run.jar" start
> $ exit
>
> (the shr=get,put thing is necessary because the KahaDB code
> does some really funky stuff by opening some files twice both
> as "rw" and "r" using java.io.RandomAccessFile)
>
> One code hack needed. To avoid a weird error I had to rebuild
> kahadb-5_4_3.jar with a hacked
> org.apache.kahadb.journal.DataFileAppender specifically
> with line 395 outcommented:
>
> //file.getFD().sync();
>
> (I suspect there is some subtle bug in VMS Java 5)
>
> OpenWire clients worked (tested with Java).
>
> For STOMP clients I had to add STOMP connector
> to activemq.xml (one would need to do that on any
> platform) and have the client connect using
> STOMP 1.0 (not 1.1 or 1.2), but then it
> worked (tested with Python)
>
> This is the recipe in case someone want to use
> ActiveMQ on VMS Alpha.
>
> Maybe I should create a kit to make it easier.

There are a few minor issues left. The Jetty component
in ActiveMQ tend to leave some temporary directory with
files. When run interactively and CTRL/Y'ed the process
tend to hang (and have to do STOP/ID=0).

Arne

Re: ActiveMQ on VMS Alpha

<tn8njo$mh0$1@gioia.aioe.org>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=25820&group=comp.os.vms#25820

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!aioe.org!LeVffQP25j5GAigzc2gaQA.user.46.165.242.75.POSTED!not-for-mail
From: arn...@vajhoej.dk (Arne Vajhøj)
Newsgroups: comp.os.vms
Subject: Re: ActiveMQ on VMS Alpha
Date: Mon, 12 Dec 2022 21:21:43 -0500
Organization: Aioe.org NNTP Server
Message-ID: <tn8njo$mh0$1@gioia.aioe.org>
References: <tn65j3$8rh$1@gioia.aioe.org>
Mime-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Info: gioia.aioe.org; logging-data="23072"; posting-host="LeVffQP25j5GAigzc2gaQA.user.gioia.aioe.org"; mail-complaints-to="abuse@aioe.org";
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.5.1
Content-Language: en-US
X-Notice: Filtered by postfilter v. 0.9.2
 by: Arne Vajhøj - Tue, 13 Dec 2022 02:21 UTC

On 12/11/2022 10:01 PM, Arne Vajhøj wrote:
> Topic came up in recent discussion.
>
> VSI has ActiveMQ 5.15-0 (almost recent, latest is 5.17.2) for VMS I64,
> but nothing for VMS Alpha.
>
> For obvious reasons. VMS I64 has a somewhat recent Java 8. VMS Alpha
> only got Java 5 (2004!).
>
> But ActiveMQ is an old product so I assumed there would be a
> version that ran on Java 5.
>
> And there was. ActiveMQ 5.4.3 comes build for Java 5.
>
> And it can be made running on VMS.
....
> This is the recipe in case someone want to use
> ActiveMQ on VMS Alpha.
>
> Maybe I should create a kit to make it easier.

https://www.vajhoej.dk/arne/temp/amq_axp.zip

Arne

Re: ActiveMQ on VMS Alpha

<tu6082$3r6f$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=27084&group=comp.os.vms#27084

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: arn...@vajhoej.dk (Arne Vajhøj)
Newsgroups: comp.os.vms
Subject: Re: ActiveMQ on VMS Alpha
Date: Mon, 6 Mar 2023 19:24:34 -0500
Organization: A noiseless patient Spider
Lines: 13
Message-ID: <tu6082$3r6f$1@dont-email.me>
References: <tn65j3$8rh$1@gioia.aioe.org> <tn8njo$mh0$1@gioia.aioe.org>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Date: Tue, 7 Mar 2023 00:24:34 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="92092edad67e4f8525eed2be1cb5b229";
logging-data="126159"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+6PBE+whWRPE2RV8TWp9z/EGLDbN2j5xo="
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.8.0
Cancel-Lock: sha1:iIO5w7T6VODJtE30XDgQZxjjYtM=
Content-Language: en-US
In-Reply-To: <tn8njo$mh0$1@gioia.aioe.org>
 by: Arne Vajhøj - Tue, 7 Mar 2023 00:24 UTC

On 12/12/2022 9:21 PM, Arne Vajhøj wrote:
> On 12/11/2022 10:01 PM, Arne Vajhøj wrote:
>> Maybe I should create a kit to make it easier.
>
> https://www.vajhoej.dk/arne/temp/amq_axp.zip

I am reorganizing a bit, so new URL:

https://www.vajhoej.dk/arne/vmsstuff/activemq/

Arne

Re: ActiveMQ on VMS Alpha

<5fd3aa4d-88e0-4511-9dcf-71d303ef094fn@googlegroups.com>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=27089&group=comp.os.vms#27089

  copy link   Newsgroups: comp.os.vms
X-Received: by 2002:ac8:4904:0:b0:3bf:b9d9:675f with SMTP id e4-20020ac84904000000b003bfb9d9675fmr4982709qtq.10.1678270034639;
Wed, 08 Mar 2023 02:07:14 -0800 (PST)
X-Received: by 2002:a05:6214:910:b0:56e:fbce:6159 with SMTP id
dj16-20020a056214091000b0056efbce6159mr4484468qvb.0.1678270034308; Wed, 08
Mar 2023 02:07:14 -0800 (PST)
Path: i2pn2.org!i2pn.org!usenet.blueworldhosting.com!feed1.usenet.blueworldhosting.com!peer01.iad!feed-me.highwinds-media.com!news.highwinds-media.com!news-out.google.com!nntp.google.com!postnews.google.com!google-groups.googlegroups.com!not-for-mail
Newsgroups: comp.os.vms
Date: Wed, 8 Mar 2023 02:07:14 -0800 (PST)
In-Reply-To: <tu6082$3r6f$1@dont-email.me>
Injection-Info: google-groups.googlegroups.com; posting-host=185.70.168.108; posting-account=Jc8lggoAAADpqbPc4tHcztc81YNnWd1x
NNTP-Posting-Host: 185.70.168.108
References: <tn65j3$8rh$1@gioia.aioe.org> <tn8njo$mh0$1@gioia.aioe.org> <tu6082$3r6f$1@dont-email.me>
User-Agent: G2/1.0
MIME-Version: 1.0
Message-ID: <5fd3aa4d-88e0-4511-9dcf-71d303ef094fn@googlegroups.com>
Subject: Re: ActiveMQ on VMS Alpha
From: iai...@issinoho.com (issinoho)
Injection-Date: Wed, 08 Mar 2023 10:07:14 +0000
Content-Type: text/plain; charset="UTF-8"
Content-Transfer-Encoding: quoted-printable
X-Received-Bytes: 1697
 by: issinoho - Wed, 8 Mar 2023 10:07 UTC

On Tuesday, 7 March 2023 at 00:24:37 UTC, Arne Vajhøj wrote:
> On 12/12/2022 9:21 PM, Arne Vajhøj wrote:
> > On 12/11/2022 10:01 PM, Arne Vajhøj wrote:
> >> Maybe I should create a kit to make it easier.
> >
> > https://www.vajhoej.dk/arne/temp/amq_axp.zip
> I am reorganizing a bit, so new URL:
>
> https://www.vajhoej.dk/arne/vmsstuff/activemq/
>
> Arne
Does anyone have a working link to get Java 5 for Alpha? VSI only has the I64 version and Google brings up dead HPE links. Thanks.

Re: ActiveMQ on VMS Alpha

<tua1c7$tqfb$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=27090&group=comp.os.vms#27090

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: club...@remove_me.eisner.decus.org-Earth.UFP (Simon Clubley)
Newsgroups: comp.os.vms
Subject: Re: ActiveMQ on VMS Alpha
Date: Wed, 8 Mar 2023 13:08:24 -0000 (UTC)
Organization: A noiseless patient Spider
Lines: 26
Message-ID: <tua1c7$tqfb$1@dont-email.me>
References: <tn65j3$8rh$1@gioia.aioe.org> <tn8njo$mh0$1@gioia.aioe.org> <tu6082$3r6f$1@dont-email.me> <5fd3aa4d-88e0-4511-9dcf-71d303ef094fn@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
Injection-Date: Wed, 8 Mar 2023 13:08:24 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="2db263ca7c74a99d5b661c0e796a0855";
logging-data="977387"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18DnyN5EMB5khhe4JdbNakS3oq/lWnXoG8="
User-Agent: slrn/0.9.8.1 (VMS/Multinet)
Cancel-Lock: sha1:Kihsz+Zax/vQxjS+uGO4OHcq3tA=
 by: Simon Clubley - Wed, 8 Mar 2023 13:08 UTC

On 2023-03-08, issinoho <iain@issinoho.com> wrote:
> On Tuesday, 7 March 2023 at 00:24:37 UTC, Arne Vajhøj wrote:
>> On 12/12/2022 9:21 PM, Arne Vajhøj wrote:
>> > On 12/11/2022 10:01 PM, Arne Vajhøj wrote:
>> >> Maybe I should create a kit to make it easier.
>> >
>> > https://www.vajhoej.dk/arne/temp/amq_axp.zip
>> I am reorganizing a bit, so new URL:
>>
>> https://www.vajhoej.dk/arne/vmsstuff/activemq/
>>
>> Arne
> Does anyone have a working link to get Java 5 for Alpha? VSI only has the I64 version and Google brings up dead HPE links. Thanks.

With regards to those dead HPE links, have you tried running them through
the Wayback Machine:

https://archive.org/web/

and then looking at any pages found that are a number of years old ?

Simon.

--
Simon Clubley, clubley@remove_me.eisner.decus.org-Earth.UFP
Walking destinations on a map are further away than they appear.

Re: ActiveMQ on VMS Alpha

<tua251$tl52$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=27091&group=comp.os.vms#27091

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: arn...@vajhoej.dk (Arne Vajhøj)
Newsgroups: comp.os.vms
Subject: Re: ActiveMQ on VMS Alpha
Date: Wed, 8 Mar 2023 08:21:36 -0500
Organization: A noiseless patient Spider
Lines: 14
Message-ID: <tua251$tl52$1@dont-email.me>
References: <tn65j3$8rh$1@gioia.aioe.org> <tn8njo$mh0$1@gioia.aioe.org>
<tu6082$3r6f$1@dont-email.me>
<5fd3aa4d-88e0-4511-9dcf-71d303ef094fn@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 8 Mar 2023 13:21:37 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="8c3d800c95668b864b823d2b72202c4e";
logging-data="971938"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX18RKokDGMc2CxG1QT8S/+HVyxxBxUryh58="
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.8.0
Cancel-Lock: sha1:oGC+DaAZryckdRhAsgO468mOZyM=
In-Reply-To: <5fd3aa4d-88e0-4511-9dcf-71d303ef094fn@googlegroups.com>
Content-Language: en-US
 by: Arne Vajhøj - Wed, 8 Mar 2023 13:21 UTC

On 3/8/2023 5:07 AM, issinoho wrote:
> Does anyone have a working link to get Java 5 for Alpha? VSI only has
> the I64 version and Google brings up dead HPE links.

The story (read: this is internet gossip) goes that HP/HPE Java
was based on Oracle Java under a commercial license agreement
and that license agreement ran out, because HPE did not want
to pay for Java on a platform they have no interest in any
longer. And VSI preferred to take OpenJDK (same code base!)
under open source license (at no cost) instead of paying Oracle.

Arne

Re: Java on OpenVMS Alpha, HP FTP server archives (was: Re: ActiveMQ on VMS Alpha)

<tuafdn$10gl0$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=27092&group=comp.os.vms#27092

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: seaoh...@hoffmanlabs.invalid (Stephen Hoffman)
Newsgroups: comp.os.vms
Subject: Re: Java on OpenVMS Alpha, HP FTP server archives (was: Re: ActiveMQ on VMS Alpha)
Date: Wed, 8 Mar 2023 12:08:07 -0500
Organization: HoffmanLabs LLC
Lines: 28
Message-ID: <tuafdn$10gl0$1@dont-email.me>
References: <tu6082$3r6f$1@dont-email.me> <5fd3aa4d-88e0-4511-9dcf-71d303ef094fn@googlegroups.com>
MIME-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1; format=flowed
Content-Transfer-Encoding: 8bit
Injection-Info: reader01.eternal-september.org; posting-host="5ed24ed53ca17aeea5f7a904402f741d";
logging-data="1065632"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX19n1o73suhzXMNoIzu6Jd1jpRsJnRts9sQ="
User-Agent: Unison/2.2
Cancel-Lock: sha1:l1QGWnXuhBlpVPyx9ZqyLkOvO/I=
 by: Stephen Hoffman - Wed, 8 Mar 2023 17:08 UTC

On 2023-03-08 10:07:14 +0000, issinoho said:

> Does anyone have a working link to get Java 5 for Alpha? VSI only has
> the I64 version and Google brings up dead HPE links. Thanks.

Most of the OpenVMS stuff of that era should be available within the HP
FTP server archives.

There's lots of DEC-related stuff in those archives as well, including
Alpha SRM firmware kits, etc.

The two main areas in the HP FTP server archives (for OpenVMS stuff)
are the OpenVMS path and the Alpha path, though Java was elsewhere
(gsy?) as it was organizationally part of some cross-platform effort.

Scrounge up the Java kit name from around here (maybe
ftp://ftp.hp.com/pub/gsy/digital/ ?), and use that as a search string
in the archives.

One set of HP FTP server archives are here:
https://archive.org/details/ftp-ftp.hp.com_ftp1

Java 5 will have issues with TLS connections, among other sorts of cruft.

--
Pure Personal Opinion | HoffmanLabs LLC

Re: Java on OpenVMS Alpha, HP FTP server archives (was: Re: ActiveMQ on VMS Alpha)

<tuagme$10k9b$1@dont-email.me>

  copy mid

https://www.novabbs.com/computers/article-flat.php?id=27093&group=comp.os.vms#27093

  copy link   Newsgroups: comp.os.vms
Path: i2pn2.org!i2pn.org!eternal-september.org!reader01.eternal-september.org!.POSTED!not-for-mail
From: arn...@vajhoej.dk (Arne Vajhøj)
Newsgroups: comp.os.vms
Subject: Re: Java on OpenVMS Alpha, HP FTP server archives (was: Re: ActiveMQ
on VMS Alpha)
Date: Wed, 8 Mar 2023 12:29:49 -0500
Organization: A noiseless patient Spider
Lines: 23
Message-ID: <tuagme$10k9b$1@dont-email.me>
References: <tu6082$3r6f$1@dont-email.me>
<5fd3aa4d-88e0-4511-9dcf-71d303ef094fn@googlegroups.com>
<tuafdn$10gl0$1@dont-email.me>
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8; format=flowed
Content-Transfer-Encoding: 7bit
Injection-Date: Wed, 8 Mar 2023 17:29:50 -0000 (UTC)
Injection-Info: reader01.eternal-september.org; posting-host="8c3d800c95668b864b823d2b72202c4e";
logging-data="1069355"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+X0liaEk4KU3bctylqEzgFGfuPBGdhKIc="
User-Agent: Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:102.0) Gecko/20100101
Thunderbird/102.8.0
Cancel-Lock: sha1:XyBwvlFiWCjYZM4XTX3pkbcY6CI=
Content-Language: en-US
In-Reply-To: <tuafdn$10gl0$1@dont-email.me>
 by: Arne Vajhøj - Wed, 8 Mar 2023 17:29 UTC

On 3/8/2023 12:08 PM, Stephen Hoffman wrote:
> Java 5 will have issues with TLS connections, among other sorts of cruft.

Java 5 out of the box only supports TLSv1, which is horrible
obsolete (only TLS v1.2 and TLS v1.3 are acceptable).

But luckily the Java encryption model is pretty flexible and
by just tweaking the command line one can instruct Java to use
a newer encryption provider like BouncyCastle.

BC 159 supports TLS 1.2
BC 168 supports TLS 1.2 and 1.3

Testet on VMS Alpha.

Instructions are here:
https://www.vajhoej.dk/arne/vms/java_howto_sslupg.html

Arne

1
server_pubkey.txt

rocksolid light 0.9.8
clearnet tor