Search found 41 matches: gateway

Return to advanced search

Re: Web programming with Mod Harbour

... choices include: Harbour Web - This is a built-in web server and HTTP library that comes with Harbour. CGI Programming - You can write Common Gateway Interface (CGI) programs in Mod Harbour to handle web requests. FastCGI - You can use FastCGI to improve the performance of your web applications. ...
by sumit234
Sat Jul 29, 2023 7:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Web programming with Mod Harbour
Replies: 1
Views: 322

Re: FTP Upload works at home Not at work

... Antonio with working sample, but they are not click and go like yours. Remember it is working at home, so there is a issue with defender, port or gateway.
by Marc Venken
Fri May 26, 2023 9:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP Upload works at home Not at work
Replies: 6
Views: 429

FTP Upload works at home Not at work

... work, but a other network and the filename is uploaded but the size stay at 0 and afther 20-30 secs a No Send message ? At work I have a rooter, a gateway At home a rooter no gateway Where in the firewall ?? do I have to change a parameter to let the FTP work ? function Upload( cDatei )  ...
by Marc Venken
Thu May 25, 2023 9:31 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FTP Upload works at home Not at work
Replies: 6
Views: 429

Re: MSXML2.ServerXMLHTTP / readyState / Status

... Too Long 415 Unsupported Media Type 416 Requested Range Not Suitable 417 Expectation Failed 500 Internal Server Error 501 Not Implemented 502 Bad Gateway 503 Service Unavailable 504 Gateway Timeout 505 HTTP Version Not Supported
by Jimmy
Sat Mar 18, 2023 11:14 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MSXML2.ServerXMLHTTP / readyState / Status
Replies: 8
Views: 385

Error compiling libs

Hello , I've downloaded from GitHub mod_harbour ( with all sources ) and compiled it ( lib and module ) under Linux ( Ubuntu 20.04 ) . It seems not working correctly when running a simple prg because apache.prg probably has an error in this code: if Empty( GetEnv( "GATEWAY_INTERFACE" ) ) Q...
by giuliano
Tue Oct 18, 2022 3:14 pm
 
Forum: mod_harbour
Topic: Error compiling libs
Replies: 2
Views: 337

Re: Call HTML form in FWH application

On a website, I define a popup form with the code I provided. That links to a secured credit card gateway. It is an HTML form. I want to have a menu option in my program that will popup the same form. Yes, it would display it in the default web browser on that computer, ...
by TimStone
Fri May 21, 2021 8:22 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Call HTML form in FWH application
Replies: 7
Views: 1533

Get con picture/valid tipo IP

... ni por la documentación, la forma de hacer un get para entrada de datos que funcione como el diálogo de windows de configuración de dirección IP, gateway y máscara, es decir, que si metes en uno de los valores algo >255 o <0 no te deje seguir, y que responda al "." para validar ...
by informaticaeloy
Wed Nov 11, 2020 4:38 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Get con picture/valid tipo IP
Replies: 0
Views: 184

Re: UrlEncode, UrlDeCode

Mr.Antonio, Thank you very much for your instant help. Actually I am supposed to send SMS through SMS Gateway. I am able to send SMS using the Gateway service provider's API in English. But when I try to send in our Local Language, it recipient is getting some junk characters. ...
by RAMESHBABU
Tue Sep 24, 2019 6:50 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: UrlEncode, UnlDeCode (SOLVED)
Replies: 10
Views: 1803

Re: webserver using RESTFUL API and responsive

Otto, Common Gateway Interface (CGI) requests For performance reasons, the use of CGI applications to serve requests is not recommended with IIS. Frequently creating and deleting CGI processes involves significant overhead. Better ...
by Antonio Linares
Thu Jun 07, 2018 7:49 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: webserver using RESTFUL API and responsive
Replies: 26
Views: 7030

Re: OT: Windows 10 - stop upgrade

James, What type of computer ? In the days of Win 8, I found a Gateway notebook that seemed to be great. However, there was a significant issue with the touch pad. I contacted Gateway and they were disinterested in resolving it. ( It would have been a simple ...
by TimStone
Mon Jun 27, 2016 7:11 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: OT: Windows 10 - stop upgrade
Replies: 20
Views: 4716

Re: Detectar parametros de red (IP, GateWay, Mascara de red...)

Hola prueba esta

aMac := GetNetCardID()
donde
ValType(aMac) = "U" Sin tarjeta de red
ValType(aMac) = "A" varias tarjetas
ValType(aMac) = "C" una sola tarjeta

te la MAC
by luisduque
Tue Sep 01, 2015 7:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Detectar parametros de red (IP, GateWay, Mascara de red...)
Replies: 6
Views: 1397

Re: Detectar parametros de red (IP, GateWay, Mascara de red...)

Gracias Cmsoft.

El problema de las funciones que están en FWH\SOURCE\WINAPI es que son las de uso común.

Me explico: no hay ninguna para detectar el Gateway, la MAC, un array con las IPs de las interfaces que tenga el ordenador, etc...
by JmGarcia
Tue Sep 01, 2015 5:51 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Detectar parametros de red (IP, GateWay, Mascara de red...)
Replies: 6
Views: 1397

Re: Detectar parametros de red (IP, GateWay, Mascara de red...)

La funcion GetHostName() te trae el nombre del equipo. La funcion GetHostByName(GetHostName()) te trae la IP del equipo. GetHostByAddress(Ip) obtiene el nombre del equipo que tiene una IP GetServByName( <cServerName> ) –> nPort Tienes todas las funciones en winsock.c en FWH\SOURCE\WINAPI Es...
by cmsoft
Tue Sep 01, 2015 12:17 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Detectar parametros de red (IP, GateWay, Mascara de red...)
Replies: 6
Views: 1397

Re: Detectar parametros de red (IP, GateWay, Mascara de red...)

Has probado a ejecutar el comando ipconfig /all Si claro, es la primera opción que he probado. Pero no quiero hacerlo llamando con la función "Execute, RemoteShell o ShellExecute" al comando CDM, quiero funciones de algún API de Harbour/xHarbour, con su librería y todo. Gracias de todas f...
by JmGarcia
Tue Sep 01, 2015 11:20 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Detectar parametros de red (IP, GateWay, Mascara de red...)
Replies: 6
Views: 1397
Next

Return to advanced search