Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - Devon Austen

#1
Webster Plus / Re: Webster+ Help
January 17, 2025, 02:38:44 PM
Looks like the issue may be your path to a certificate /pxp/ is just a directory and not a .PEM file path.

When doing the Webster+ install make sure to use a path that includes the filename of the .PEM file.
#2
Webster Plus / Re: Webster+ Help
January 16, 2025, 08:04:35 AM
I am not sure just putting the .conf in the conf-available directory is enough to have that configuration used. You may need to use the a2enconf command to enable the configuration. This is a guess based on the existence of that directory. Please consult your Apache documentation for the exact setup for your Apache.

After updating Apache configuration you need to restart the Apache server for it to use the new configuration.

#3
Web Services / Re: Web server failing to get requests.
January 13, 2025, 01:59:12 PM
For the PxPlus Web Server do you have the access.log enabled? That should log all access to the server if enabled.
#4
Language / Re: SQL Database Error after version change
January 03, 2025, 09:26:55 AM
Considering the error is coming from the Microsoft SQL Server ODBC driver I would still suspect the problem is not the PxPlus version.

Have you confirmed that the ODBC connection made from PxPlus is the same in the 16.2 v 19.1 versions. ODBC connection settings can be set via INI file, link file, prefix file, or directly in the open directive. If the ODBC settings were done in anything other then directly on the open directive it is possible the new version is not matching the old version and that is were the issue is.
#5
Web Services / Re: Web server failing to get requests.
January 02, 2025, 11:51:19 AM
Hi Michael,

Sounds like it could be either a issue with the web request generated by the MS cloud app or an issue with the web server blocking the request from the cloud app IP address.

I don't know what type of web server you are using and how it is configured so I can't help much with that.

I would suggest checking the web request being sent from the cloud app to make sure it is the same as the one from postman that worked.
#6
Language / Re: SQL Database Error after version change
January 02, 2025, 11:46:46 AM
Hi Jeff,

That error is coming from the Microsoft SQL Server ODBC driver.

So the error appears to be happening on their end.

Is this using a different version of the MS SQL Server ODBC as when you were using PxPlus 16.20?

Is this a different DSN for the ODBC connection then when used with PxPlus 16.20?

My advice is look for differences with the SQL Server and ODBC driver setup since that is where the error is happening.
#7
Webster Plus / Re: Inquiry About Webster+ Training
January 02, 2025, 11:35:38 AM
There is no training sessions or courses currently available for Webster+.

There are materials that discuss what Webster+ is and how to use it. In your last forum post I linked to these. There are additional resources from the Direxions+ conference presentations about Webtser+ which can be found here:

2024 (v21) - PxPlus on the Web Introduction
2024 (v21) - PxPlus on the Web File Maintenance Generator Demo
2024 (v21) - PxPlus on the Web HTML Editor Demo
#8
Programming / Re: Possible "bug" in JSON handling
December 13, 2024, 04:44:11 PM
It works for me in the latest version of PxPlus. What version are you trying this on?
#9
Webster Plus / Re: Webster+ Questions
December 12, 2024, 04:56:09 PM
#10
ODBC / Re: File Does Not Exist
December 10, 2024, 02:03:54 PM
A common thing I have seen is the prefixes not been setup correctly in the new DNS entry. If the necessary prefixes are not defined then some tables can't be found. You can check the path field of the table in the data dictionary, you should be able to confirm if the path is correct and setup correctly on the server and if a prefix is needed.

Another thing to check is permissions.
#11
Programming / Re: url encode utf8
November 28, 2024, 11:01:00 AM
Are you creating your own interface to Twilio or using *tools/sms?

Our tool supports Twilio.
#12
Programming / Re: Select statement not returning values
November 28, 2024, 08:50:29 AM
This may be a bug that results in undefined behavior. That may be why you see it at one install but not another.

Can you try a newer version of PxPlus? That version is out of support and there have been many improvements to the SELECT directive logic since then. It is possible if this is a bug that it already has been fixed.

Other thoughts is it may have to do with a difference between the two installs. Maybe there is a difference in system parameters or something that could explain it not working. The 'SO' system parameter perhaps?
#13
Programming / Re: Select statement not returning values
November 27, 2024, 03:37:30 PM
I would suspect it has something to do with "end %a0$+%lc$" in the SELECT directive.

If you do the same without a end do you get the records for %a0$ plus whatever is after them?

If so you may just need to get the end correct.
#14
Web Services / Re: Apache - Request Authorization Header
November 19, 2024, 09:48:38 AM
We had to figure this out for our own PxPlus web services. It is documented as part of the Apache configuration for PxPlus Web Services (https://manual.pvxplus.com/?Web%20Services/Overview.htm#configuration).
#15
Web Services / Re: Apache - Request Authorization Header
November 19, 2024, 09:38:11 AM
Apache by default will strip that out.

If you add:

SetEnvIf Authorization "(.*)" HTTP_AUTHORIZATION=$1
to your httpd.conf it will put it back so the pxplus programs can see it.