NetTalk Central

Recent Posts

Pages: 1 ... 6 7 [8] 9 10
71
Web Server - Ask For Help / Re: Download file from menu
« Last post by Bruce on April 10, 2024, 09:50:16 PM »
I'm away for a few days Sean, but will investigate on my return.
72
Web Server - Ask For Help / Re: API problem, NT 14.20
« Last post by Bruce on April 10, 2024, 09:49:04 PM »
I bet it's the only field in the table that uses an underscore?

What's happening is that the engine is seeing the BCS_ part as a prefix, and removing it.
The solution is either to work with that, or tell it to stop.

The easiest way to tell it to stop is to set the MaxPrefixLength property for the JSON object to be 1,2 or 3. It defaults to 4, (including the separator) which is why it's seeing this. You could also change the separator character (which is being set to _ as I recall).

Bruce
73
Web Server - Ask For Help / Re: Download file from menu
« Last post by seanh on April 10, 2024, 03:38:58 PM »
Hi Alberto,
I give it the full path name, and yes it's in the web folder.

It look like there is indeed a size problem that I'll try and pinpoint.  It all works with smaller files.
74
Web Server - Ask For Help / API problem, NT 14.20
« Last post by jking on April 10, 2024, 12:18:47 PM »
Hi Bruce,

     I have an API set up.  An app in California is the client, sending data to a target tps file called Enrollment.tps on a remote server.  Numerous fields are loaded with data but one is not.  It is called BCS_Status.  In looking at the log in the Multi-site host (this app is a dll app) I do see the JSON, which shows the data is there.  See the attached image.  It shows:  "BCS_Status":"DRTBeforeSurgery", circled in blue.

     Using TPSSCAN I view the Enrollment table and see the BCS_Status field is blank.  All other fields contain data as expected.  I don't understand why this field is not assigned.  My API is set up with the Parameters tab with just the Enrollment table added.  The Returns tab just has two fields inserted.  I'm only allowing this API to do an Insert action.

     I can use Postman to send data to this API and all fields are filled in.

     Any thoughts as to why just one field is not filled when it does show in the JSON?

Thanks,

Jeff King
75
Web Server - Ask For Help / Re: Different menu if they log on from mobile phone.
« Last post by osquiabro on April 10, 2024, 04:58:20 AM »
for mobile or web is more simple create a buttons in memory form and in custom.css for responsive button

.NavigateMenu {
  background-color: whitesmoke;
  color: black;
  padding: 14px 20px;
  margin: 8px 0;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
  border-radius: inherit;
  display: block;
  font-size: x-large;
  height: auto;
  background-image: none;
  --bs-border-opacity: 1;
  border-color: black;
  border-radius: unset;
}
76
Web Server - Ask For Help / Re: Download file from menu
« Last post by Alberto on April 10, 2024, 04:16:34 AM »
Hi, in what path are the file you want to be downloaded?
It MUST be under the web folder.
77
Web Server - Ask For Help / Re: Download file from menu
« Last post by seanh on April 09, 2024, 10:40:58 PM »
Is there a file limit to the size that can be downloaded?
My exe is 162 MB  I've also tried a similar sized 'just data'  file in case the exe bit was causing problems and I have similar issues
78
Web Server - Ask For Help / Re: Download file from menu
« Last post by seanh on April 09, 2024, 09:58:20 PM »
Problem is: There is no downloading icon. 
The downloads list doesn't contain anything new, the browser looks like it's doing something... but nothing ever happens

Update: Ichanged the file to download to favicon512.png and it worked.
But the exe does nothing, even if left for 10mins
79
Web Server - Ask For Help / Re: Download file from menu
« Last post by Bruce on April 09, 2024, 08:45:22 PM »
The browser may appear to just hang, but perhaps it is downloading? see the downloading icon to see what's happening under there.
80
Web Server - Ask For Help / Download file from menu
« Last post by seanh on April 09, 2024, 08:22:33 PM »
I have a label printer helper program that I want to make available to be downloaded from the help menu of my website.

I'm trying but nothing seems to work.
I've tryed a variation of Web40 download and also just putting the exe name in the URL
The browser just hangs and seems to do nothing.

This should be simple, and I'm sure it is once I find out what I'm doing wrong
So how should I do this?
Pages: 1 ... 6 7 [8] 9 10