PxPlus User Forum

Twitter Twitter Twitter

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.


Topics - edjack

Pages: [1] 2
1
Language / ERROR 302 file not found
« on: March 25, 2024, 01:50:26 PM »
I do the following [tcp] GET from a web site and get an error 302 (file not found)
Here is the code I am using:
08120  LET R$="GET /download/update/ HTTP/1.0"+$0D0A$
08130  LET R$+="Accept-Language: en-us"+$0D0A$
08140  LET R$+="Content-Type: application/x-www-form-urlencoded"+$0D0A$
08150  LET R$+="Host: www.website.ca"+$0D0A$
08160  LET R$+="Content-Length: "+STR(LEN(PARAMS$))+$0D0A$
08170  LET R$+="Cache-Control: no-cache"+$0D0A$+$0D0A$
08180  CLOSE (1);
       OPEN (1,ERR=*NEXT)"[tcp]www.website.ca;80";
       GOTO 8200
08190  MSGBOX "Unable to connect to the Upgrade Web Site.","Connection Failure","!,TIM=15";
       LET CMD_STR$="END";
       RETURN
08200  WRITE RECORD (1)R$;
       LET RESP$="",X$=""
08210  WHILE 1
08220  READ RECORD (1,TIM=1,ERR=*BREAK)X$
08230  LET RESP$+=X$
08240  WEND
08250  CLOSE (1)

It should bring back the contents of file "index.html" but reports that it cannot find the file.
If I enter the full path to the website and directory in my browser it do get the contents of the "index.html" file.

any ideas on what can be wrong?


2
iNomads / certificate upgrade
« on: October 21, 2022, 02:24:54 PM »
a client put in a new certificate and our application now has problems launching.
Any ideas what the issue may be?


3
Programming / FTP failure
« on: April 21, 2022, 07:45:01 AM »
About 2 weeks ago our FTP file operations stopped working from within pxplus.
We create a batch file and execute ftp using an INVOKE command.
The file gets uploaded to the ftp site, but is always empty.
If we manually execute the ftp batch file outside of the pxplus environment, it works.
This is probably not a pxplus problem, but what could be causing this?


4
Thin Client/WindX / winndx icacls.exe interupt
« on: January 09, 2022, 07:41:48 PM »
When launching windx cs, windows is prompting to allow authorization to run "icacls.exe"
This is something new.
Anyone know why this is happening and how to prevent it?

5
Off Topic / T4 Parser
« on: February 01, 2021, 10:00:16 AM »
What validation parser can anyone recommend to use for validating a T4 XML file for CRA, in Canada?

6
Language / pdf on server
« on: April 23, 2020, 01:21:23 PM »
Trying to open a pdf file on a server connected through windx.

A simple command like: OPEN (1)"C:\data\file.pdf"   gets an error 12.

It may be trying to open on the local work station...

How do we force it to open on the server?


7
Programming / List_box titles
« on: November 12, 2019, 09:31:33 AM »
In a Nomads defined LIST_BOX-Report View
Is there a way to have the Title Line display with a background colour, such as Light Gray?


8
Programming / mailto attachment
« on: November 11, 2019, 11:52:29 AM »
Using SYSTEM_HELP "Mailto:"+EMAIL$
Is there a way to specify a file attachment with this command?

9
Programming / Session Check
« on: August 08, 2019, 01:47:42 PM »
I there a way to check that a pvxplus session is active and if not launch it.
Maybe a background pvx program running continuously or a 3rd party app??

10
Registration and Setup / Cloud Drive
« on: May 09, 2019, 02:50:03 PM »
Can providex be installed and activated on a cload storage drive such a OneDrive or Google Drive?

I do not think it can... But is there a work around?

Ed

11
Language / TSK to return NID
« on: March 19, 2019, 02:54:09 PM »
 TSK(*PROCESS LIST) gives me a list of pvx processes with a UID identifier.
Is there another TSK function that will give me a process list with a NID identifier?
Or some other way to get a list of all pvx processes with a NID identifier?

12
Nomads / winqry ERROR=42
« on: December 28, 2018, 08:00:17 AM »
Getting an ERR=42 in winqry line 01875
Version: 13.1
any ideas

13
Nomads / Centering in a query
« on: December 05, 2018, 01:49:39 PM »
I thought this was easy but cannot see how to center data within a column in a query.
How is this done?

14
Programming / Field Force development
« on: December 05, 2018, 08:37:28 AM »
A client wants to be able to indicate what fields in their account master file of our application should be forced/required before an update is allowed.
They just need a maintenance routine to allow them to indicate which fields are required and a file to store the results.
Our existing update could check this new file to see if all required fields are filled in.

Just wondering what would be the fastest way to develop this in nomads?


15
Off Topic / ITACIT interface
« on: October 11, 2018, 10:33:28 AM »
Has anyone done any integration with the ITACIT information system.
They use a REST interface to upload data.


Pages: [1] 2