Search found 924 matches: port

Return to advanced search

Re: Socket

... one is to create a SERVER to be waiting for a connection and another one to CONNECT to the server. Here you have the example server ( running port 10000 ): https://github.com/harbour/core/blob/master/tests/ipsvr.prg then the next step, here is HOW to connect to the first one: https://github.com/harbour/core/blob/master/tests/ipclnt.prg ...
by Lailton
Tue May 28, 2024 2:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Socket
Replies: 1
Views: 112

Re: Send Emails from Fivewin application

TLS is simply a newer, more secure version of SSL. To use TLS instead of SSL, the servers usually use the port, which can be 587 or 993 or some other
by paquitohm
Wed May 15, 2024 8:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send Emails from Fivewin application
Replies: 44
Views: 2332

Re: Send Emails from Fivewin application

In my case I send from an outlook account on port 587 using TLS Sounds interesting. Can you share a sample, please? From ChatGPT, simple sample: # script1.ps1# Definir los parámetros$CorreoDe = "tu_correo@outlook.com"$CorreoPara = "correo_destino@example.com"$Asunto ...
by paquitohm
Wed May 15, 2024 6:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send Emails from Fivewin application
Replies: 44
Views: 2332

Re: Send Emails from Fivewin application

paquitohm wrote:In my case I send from an outlook account on port 587 using TLS


Sounds interesting. Can you share a sample, please?
by Enrico Maria Giordano
Tue May 14, 2024 5:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send Emails from Fivewin application
Replies: 44
Views: 2332

Re: Send Emails from Fivewin application

... So I chose to do it with a universal Windows, without installations, third party tool: powershell In my case I send from an outlook account on port 587 using TLS
by paquitohm
Tue May 14, 2024 5:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Send Emails from Fivewin application
Replies: 44
Views: 2332

Re: send an email using the Outlook object

... = true; $mail->Username = 'RECEIVER@gmail.com'; $mail->Password = 'SECRET'; $mail->SMTPSecure = "ssl"; $mail->Port = 465; //Recipients //Recipients $mail->setFrom($email, $name); $mail->addAddress("RECEIVER@gmail.com", ); //Content $mail->isHTML(true); ...
by Silvio.Falconi
Tue May 14, 2024 7:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: send an email using the Outlook object
Replies: 5
Views: 290

RecordSet via Web

... out is if I can use this on a secure site. Can't seem to get it to work. It works if I use Hamachi (VPN), but not HTTP, or HTTPS on a designated port.
by byron.hopp
Thu Mar 28, 2024 7:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RecordSet via Web
Replies: 0
Views: 314

Re: USB reading/writing as Com port

Look, #include "FiveWin.ch"/*Reconocer puerta USBLocal   aUnidades:=aDrives()      FOR xI=1 TO LEN( aUnidades )            IF GetDriveType( aUnidades[xI] )=2              ?"USB"    &nbs...
by karinha
Thu Feb 08, 2024 4:16 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: USB reading/writing as Com port
Replies: 3
Views: 280

Re: USB reading/writing as Com port

Thanks, So i looked and find a program link CoolTerm, Free, Small and doing what you say. I have to test it this evening. But it is software, so mayby FiveWin has also a Lib for this ? If I plugin my handscanner, FW can read this and it is also on a USB, but I suppose that this is not the same. So I...
by Marc Venken
Thu Feb 08, 2024 8:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: USB reading/writing as Com port
Replies: 3
Views: 280

Re: USB reading/writing as Com port

Generally, when it is necessary to manage a device that connects via the USB port but responds to a serial structure, there are serial port emulators.
Here in Argentina, there are fiscal drivers that use that functionality, and they can be managed with Fivewin's COM port management functions.
by cmsoft
Thu Feb 08, 2024 12:41 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: USB reading/writing as Com port
Replies: 3
Views: 280

USB reading/writing as Com port

I spend the every looking and testing samples to read the USB port from FW I did not succeed. I can read/write arduino serial data from the Node-Red application from USB port 5. So it is possible to collect data from a Arduino true a USB port. How to read ...
by Marc Venken
Wed Feb 07, 2024 10:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: USB reading/writing as Com port
Replies: 3
Views: 280

Re: FW_OpenAdoConnection reconnect

"ServerAddress:port"

eg:
Code: Select all  Expand view
190.30.20.20:3306
by nageswaragunupudi
Thu Dec 14, 2023 10:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_OpenAdoConnection reconnect
Replies: 6
Views: 578

Re: FW_OpenAdoConnection reconnect

Hello Rao
how to specify the port with FW_OpenAdoConnection() ?

Maurizio
by Maurizio
Thu Dec 14, 2023 7:53 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW_OpenAdoConnection reconnect
Replies: 6
Views: 578

Re: Archivo .BAT no funciona

José
Saludos,
El resultado el .BAT quedó de esta manera:
c:\adp\mysql\mysql.exe SGEV60_TEST < c:\adp\dpsgev60\dpsgev60.sql -uroot -proot --host=127.0.0.1 --port=3306 > TEMP\MYSQL.LOG
by jnavas
Fri Sep 29, 2023 4:54 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Archivo .BAT no funciona
Replies: 8
Views: 670

Re: xHarbour.org updated!

... you can try assigning these: oCli:nDefaultPort = nPortoCli:lSSL = .T. Thanks Enrico. The service integration manual does not say to define the port. Code below: #Include "Fivewin.ch" Function Main() LOCAL oDlg, oGet LOCAL cCad := "Testing " // pad("Testing Gets",40) ...
by wartiaga
Tue Sep 19, 2023 12:16 pm
 
Forum: WhatsNew / Novedades
Topic: xHarbour.org updated!
Replies: 159
Views: 43013
Next

Return to advanced search