Search found 48 matches

Go to advanced search

by concord
Mon Dec 02, 2024 9:47 am
Forum: Tips and Techniques
Topic: JADE REST WebService (Apache)
Replies: 0
Views: 40046

JADE REST WebService (Apache)

Anyone have experience with JADE RESTServices on Apache rather than IIS?

I've used Jade SOAP/WSDL WebServices extensively for years, looking to migrate some of these to REST.

I'm struggling with a few key aspects.

1) fetchJWT() is not retrieving the token from a basic Authorization: Bearer HTTP ...
by concord
Tue Mar 23, 2021 8:45 am
Forum: General Discussion
Topic: How to script delete a system class
Replies: 6
Views: 32976

Re: How to script delete a system class

Oops, the JDE only throws an error when opening the Strings browser for the ChildSchema, which is ultimately where I want to remove the duplicate from.

However, I can simply open the Strings browser for the ParentSchema and delete the duplicates there... then just set about shifting these Strings ...
by concord
Mon Mar 22, 2021 2:47 pm
Forum: General Discussion
Topic: How to script delete a system class
Replies: 6
Views: 32976

Re: How to delete an instance of TranslatableString, which is a System Class.

I gave this an inaccurate title, should have been: How to delete an instance of TranslatableString, which is a System Class.
by concord
Mon Mar 22, 2021 8:58 am
Forum: General Discussion
Topic: How to script delete a system class
Replies: 6
Views: 32976

Re: How to script delete a system class

ParentSchema
ChildSchema

I loaded a schema extract that included a TString defined in ParentSchema into a different system that already had this TString defined in ChildSchema.

When I (or the JDE) accesses all Strings it copies the collection from each schema into one collection, this is where ...
by concord
Fri Mar 19, 2021 9:58 am
Forum: General Discussion
Topic: How to script delete a system class
Replies: 6
Views: 32976

How to script delete a system class

I've managed to introduce the same translatable string into 2 schemas in Jade 6.3.
This now causes a 1310 key already used exception when trying to access the subschemas trans strings.

I've written a script and identified the duplicate translatable string, I want to delete it but am being prevented ...
by concord
Thu Aug 20, 2020 3:11 pm
Forum: Tips and Techniques
Topic: LRC generation
Replies: 2
Views: 14570

Re: LRC generation

Oops, got tripped not realising ^ in Jade is different to almost all other languages.
The Binary primitive method was easy to put together...


vars
i : Integer;
lrc : Integer;
begin
lrc := null;
i := 1;
while i <= self.length do
lrc := lrc.bitXor (self[i]);
i := i + 1;
endwhile;
return ...
by concord
Thu Aug 13, 2020 4:03 pm
Forum: Tips and Techniques
Topic: LRC generation
Replies: 2
Views: 14570

LRC generation

Hi there,

Does anyone have any Jade code to generate a Longitudinal Redundancy Check?
by concord
Fri Aug 16, 2019 4:33 pm
Forum: Tips and Techniques
Topic: Simple Stable HTML viewer control
Replies: 2
Views: 15508

Re: Simple Stable HTML viewer control

Oh dear, I should be focusing on riched20.dll instead.
by concord
Fri Aug 16, 2019 4:31 pm
Forum: Tips and Techniques
Topic: Simple Stable HTML viewer control
Replies: 2
Views: 15508

Re: Simple Stable HTML viewer control

Tracked down a more recent version of the nBit HTML editor and it's working fine with DEP switched on... :)

It'd be handy if I could get the RichText going again, I've just realised this is a native Jade control.
I've been shipping a specific version of RICHTX32.OCX with my bin and registering it ...
by concord
Fri Aug 16, 2019 1:08 pm
Forum: Tips and Techniques
Topic: Simple Stable HTML viewer control
Replies: 2
Views: 15508

Simple Stable HTML viewer control

I've been using the Richtx32.ocx to display RichText and nBit's HTML ocx (rmpHTML.ocx) for HTML.
Both these controls crash the jade.exe unless DEP is disabled.

All I really need is a simple stable way to display formatted text within a Jade Painter control.

If I can find a good html viewing ...

Go to advanced search