Tagged Questions

7
votes
1answer
488 views

How to establish a secure connection by using Synapse?

I'm testing Synapse and want to know how can I establish a secure connection. I noticed it supports SSL, but I'm not sure whether it suits my needs. I don't have a certificate from CA. I just want to ...
3
votes
1answer
486 views

How to send HTTP data and get response with Synapse (Delphi)

I think the title was clear enough. I want to know how to send HTTP POST request with parameters/arguments and receive HTML response back - using Synapse library for Delphi
3
votes
2answers
2k views

Delphi 2009 and Synapse - tested and ready for Unicode support?

Is Synapse ready for a Delphi 2009 production applications? Their website doesn't look like it's been updated in a while: http://www.ararat.cz/synapse/doku.php Is the project dead?
2
votes
2answers
167 views

Delphi + Synapse: How to check the size of the response with TTCPBlockSocket

I have finally got my Delphi application to send data using direct sockets with the Synapse library through HTTPS. However, I am having trouble determining the size of the data being returned to me. ...
2
votes
2answers
294 views

UDP Proxy implementation

I am trying to build a simple TCP and UDP proxies. No problem with the TCP proxy, however the UDP is a little more complex to handle. The classic proxy scenario would be like this. Listen for ...
2
votes
3answers
1k views

IMAP + TLS/SSL with synapse?

i'm currently trying to add to a software the capability to list unread emails in the user's inbox using imap. After having no success at all using indy10, I discovered synapse which seemed better for ...
1
vote
3answers
1k views

Synapse and string problems with HTTPSend in Delphi 2010

I have been trying to get to the bottom of this problem off and on for the past 2 days and I'm really stuck. Hopefully some smart folks can help me out. The issue is that I have a function that I ...
1
vote
1answer
790 views

Does anyone have a good example of how to use Synapse's Heartbeat function?

I am using Synapse for Delphi, but when during HTTP downloads, of course, the GUI freezes. Looking at the documentation, they suggest using the OnHeartbeat method. (See ...
0
votes
1answer
116 views

FTP - command or setting to set “never overwrite” for a whole session

I'm using Ararat Synapse for Delphi, so if there's a way to set such a mode (or get ls results to a stringlist) I can do it with code. I've looked at the unit code and the dokuwiki and haven't found ...
0
votes
2answers
292 views

HttpGetText(), autodetect charset, and convert source to UTF8

I'm using HttpGetText with Synapse for Delphi 7 Professional to get the source of a web page - but feel free to recommend any component and code. The goal is to save some time by 'unifying' non-ASCII ...
0
votes
1answer
681 views

How to create https client with synapse?

I need a https client used with synapse. Do you have any demo about it? Thank a lot.
0
votes
1answer
2k views

Delphi: Clientdataset: EDatabaseError: Missing Data-Package using Synapse

From the client I am sending a string to the server what he should send me back. This time its a stream created by a ClientDataSet. Unfortunately receiving (or sending??) does not work at the moment. ...
0
votes
2answers
968 views

Synapse: Cannot receive data from Socket

I am using Synapse with blocking sockets and try to simply send text to the connected client. Here comes the code: var SServer: TTCPBlockSocket; SClient: TTCPBlockSocket; implementation //Create and ...
0
votes
3answers
484 views

WSAETIMEDOUT message in Synapse Library

Why I always get WSAETIMEDOUT error in this code : var fUDPBuf: array [1..UdpPacketSize] of byte; {...} UDPSocket := TUDPBlockSocket.Create; UDPSocket.Bind(UDPIP, UDPPort); if UDPSocket.LastError = 0 ...
-1
votes
3answers
286 views

How to download faster?

What is the fastest way to download webpage source into a memo component? I use Indy and HttpCli components. The problem is that I have a listbox filled with more than 100 sites, my program downloads ...
-1
votes
2answers
189 views

not delete the message from email server using synapse in delphi

I am retrieving emails using synapse in delphi, but the messages are being deleted from the server. How can I retrieve the message without deleting it? Maybe the header only? Thanks, Joe