FrançaisEnglishEspañol
PC SOFTForums homeLast messagesOnline repository
PC SOFT
Find...
Perform the searchSearch in...
Newsgroup dedicated to WINDEV (current version), in English
Progress bar for a big HF C/S memo transfer: possible?
Jan., 07th 2010 at 03:53 PM
Alexandre Leclerc
<gu...st@news.pcsoft.fr>


Hi all,
I'm currently doing some research for a potential project. (Trying to get answers to some technical aspects.)
I try to find a solution to be able to see the progression of a big memo transfer in HFSQL C/S over the internet (like FTP transfer progress). But I can't find anything in the help, nor the LST (from 69) nor the forums. (Or maybe I'm not looking for the good keywords.)
What I try to achieve is like an FTP transfer to and from a server, but with HFSQL right inside a DB. Here are the details:
- I have a HSSQL C/S DB with a table that contains "files" (binary memo, etc.) on a server over the Internet.
- Client applications will send "files" to the DB. The size will always be several MB.
- I would like to display the transfer progression to and from the DB. (HAdd(), HRead()).
- If possible the user could "break" the operation.
Any ideas or suggestions are welcomed!
Thank you very much,
Alexandre Leclerc


Replies to this message:
Re: Progress bar for a big HF C/S memo transfer: possible?
Hi Michael, I think this approach could be acceptable in my situation too. Thank you for this real-world experience and solution. Best regards, Alexandre Leclerc
From Alexandre Leclerc - Jan., 08th 2010 - More »
Re: Progress bar for a big HF C/S memo transfer: possible?
Hi Alex, I had the same problem with the progress bar. After some tests I used SMTP to push the file to the server (smtp has a PB) I create a dummy mail-account and a small program polls every 30 seco ...
From Michael Drechsel - Jan., 08th 2010 - More »
Re: Progress bar for a big HF C/S memo transfer: possible?
Hi Piet, I could do something in SOAP that does that. (I do not have control on the server machine, but I can have a SOAP application running.) Thank you for your suggestion! Best regards, Alexandre L ...
From Alexandre Leclerc - Jan., 08th 2010 - More »
Re: Progress bar for a big HF C/S memo transfer: possible?
Hi Alexandre, I would suggest using a small Windev program running on your server that acts as a transfer server using sockets. In this program that has a connection to your database you can use hLin ...
From Piet van Zanten - Jan., 08th 2010 - More »
Re: Progress bar for a big HF C/S memo transfer: possible?
Hi Arie, Your idea really makes me think a lot and see other possibilities. (I did not even thought about stored procs!) I must check if the required functions are available in this mode (I see that f ...
From Alexandre Leclerc - Jan., 07th 2010 - More »
Re: Progress bar for a big HF C/S memo transfer: possible?
Alexandre, just an idea, while there is no build in functionality, as Fabrice says. Maybe you can use a stored procedure, acting as a receiver. Use a variable (like a buffer or string) to pass your fi ...
From Arie Mars - Jan., 07th 2010 - More »
Re: Re: Progress bar for a big HF C/S memo transfer: possible?
Hi Farbice, Thank you very much for your comment. This is also the best I can see so far. At least I can get technical answers to what is possible and not. Best regards, Alexandre Leclerc
From Alexandre Leclerc - Jan., 07th 2010 - More »
Re: Progress bar for a big HF C/S memo transfer: possible?
Hi Alexandre... I do not think that there is any DIRECT solution (ie by doing the work directly in the DB)... To achieve what you are describing, I think that you will have to rely to a standard trans ...
From Fabrice Harari - Jan., 07th 2010 - More »