NetTalk Central

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.


Messages - carlossm

Pages: [1]
1
The Rest - Ask For Help / ThisWebClient instances Queue,
« on: April 06, 2021, 06:47:32 PM »
Hi.
I need to create a queue of ThisWebClient instances. Te reason being that I need to send several files at once and the only way I can think of is to crearte a queue and load several instances of ThisWebClient into the queue. Someone suggested the following code:

MyQueue  Queue
RefClass   &MyClass
        End

 MyQueue.RefClass &= New MyClass
 Add(MyQueue)

Which I think will work. The thing is that Nettalk generates code for a ThisWebClient.PageReceived PROCEDURE which includes the code I wrote in the embed. So, how can I make this work so that eache instance of ThisWebClient runs it's own Pagereceived with mi code?

Thanks
I need all of the instances to run the same code in PageReceived.

2
The Rest - Ask For Help / Re: contact netSimple server with c++ dll
« on: August 12, 2019, 08:41:15 PM »
Thanks Bruce.

3
The Rest - Ask For Help / contact netSimple server with c++ dll
« on: August 11, 2019, 10:16:27 PM »
Hi, is it possible to connect to a netsimple server from a C++ dll? The idea is to have a netsimple server running and have the C++ dll request some info from the netsimple server and take action depending on the netsimple server's response.

Thanks

4


Hi, I've got a web service running that receives images sent from the client. The web service was created with the wizard and the client was created from the web77 example. 
The image is transferred fairly fast, but once it?s received, it takes a log time to go into the insert record procedure. The images are base64 encoded.
I traced the code and there is one procedures that take a long time to replace characters. It?s this one:


p_setting = self._UnEscape(p_setting,p_Plus+Net:NoColon) ! ok to use because _unescape always reduces size.



Sometimes it takes up to 23 minutes to UnEscape a 3 MB file.



Thanks

5
Web Server - Ask For Help / how to generate Thumbnails
« on: June 06, 2018, 11:13:00 AM »
 Hi, does anyone know how to generate thumbnails from jpg images to send les info across the net?

Thanks

6
FTP - Ask For Help / FTP/SSL with Nettalk 8.13
« on: March 07, 2018, 02:02:06 PM »
Can SSL be activated using Nettalk 8.13?

Thanks

7
Web Server - Ask For Help / positioning chieck boxes
« on: November 01, 2017, 10:35:42 AM »
Is it possible to position check boxes to the right of the list? It would be great if I could create two columns of check boxes. Is it possible?

Thanks

image attached

8
Web Server - Ask For Help / Web server performance
« on: July 28, 2017, 02:08:16 PM »
Hi everyone, I'm about to start the conversion of a multi dll program to NetTalk Web sever. How is the performance compared to, say microsoft web server?

9
Web Server - Ask For Help / Re: secwin login
« on: January 27, 2014, 10:38:55 PM »
 page.

10
Web Server - Ask For Help / secwin login
« on: January 27, 2014, 02:52:15 PM »
I'm trying to use a loginform for my app, kust like in the nettalk secwin example. The problem is that once I login(using demo user and pwd) my main menu does not expand to show the menu options(browses, etc). I have to click the home link on the menu bar in order for the menu items to appear. I've tried just about every single feature on the templates and I can't get it to work.
Anyone know how to solve this?


Thanks

11
Web Server - Ask For Help / Re: must be in file problem
« on: January 01, 2014, 09:03:28 AM »
Hi Bruce, I found the problem and I don't know if it's by design or a bug.
The Appointment table has a primary key and a key on the customer's last name. Now, on the field's properties on the form I have:

From table  Pacientes(this is the customer table)
Order by     Nombre(this is the customer's name)
Value field  Paciente:ID(this is the unique key)
Description field   Paciente:Nombre

and I have "display description instead of value" checked.

I did not have a key defined on the "Nombre" column, so nettalk was generating the following code in the ValidateRecord routine

  loc:ok = p_web.GetDescription(Pacientes,Paciente:KID,Paciente:KID,Paciente:ID,Paciente:Nombre,p_web.GetValue('Cita:Paciente')) !4


notice the second and third parameters are the same variable, as soon as I created a key on the Name column nettalk generated the third parameter with Paciente:KNombre(which is the Nombre key)

  loc:ok = p_web.GetDescription(Pacientes,Paciente:KID,Paciente:KNombre,Paciente:ID,Paciente:Nombre,p_web.GetValue('Cita:Paciente')) !4

And that solved the problem.

Thanks and Happy new year.

12
Web Server - Ask For Help / must be in file problem
« on: December 31, 2013, 05:18:46 PM »
Hi, I've got an odd problem. I have a webserver app created with the wizard. There is an update form to enter appointments. There are 4 fields with a browse button each to select Customer and other data from other tables. When I try to save an appointment, two of the fields give me a "XXX must be in file". I've checked the relationships and they are fine. There are two other columns that also have relationships to other tables and those are ok.
I'm using FM3 and ODBC driver with MySQL.

Thanks
Carlos San Miguel

13
Web Server - Ask For Help / Re: blob column question.
« on: December 27, 2013, 07:33:48 AM »
Thanks Bruce. I ended using cstring(64000). I don't think I'll need more than that.

Carlos San Miguel

14
Web Server - Ask For Help / blob column question.
« on: December 26, 2013, 10:26:50 AM »
Hi, for some reason the blob columns on a table are not being loaded from disk.
In the GenerateForm embed, I'm trying to copy the content of a blob into a session variable and the size comes back as zero. I know there is data in the column, I checked it with MySql workbench.

size(Pac:AHF) comes back as zero.

Any Ideas?

Thanks
Carlos San Miguel

Pages: [1]