active questions tagged indy - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T21:22:50Z http://stackoverflow.com/feeds/tag/indy http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1807398/how-to-send-email-via-ssl-and-indy-in-delphi-7 1 How to send email via SSL and Indy in Delphi 7 Tofig Hasanov 2009-11-27T08:22:34Z 2009-11-27T08:59:45Z <p>I want to send email to Yahoo mail using Indy. But Yahoo uses 465 port with SSL connection. I don't know how to implement that in my program. I have read about TIdSSLIOHandlerSocketOpenSSL component on internet, but couldn't find such component in Delphi 7. Can anyone help?</p> http://stackoverflow.com/questions/1770413/server-acontexts-list-with-indy10 0 Server AContexts List with Indy10 djiga4me 2009-11-20T13:27:13Z 2009-11-21T06:33:03Z <p>Hi,</p> <p>I'm using Indy10 under Delphi2009. I have a server/client application, with TidTCPServer and TidTCPClient. I found a problem in my "logical" code.</p> <p>This is : When the server disconnect, and after a time, reconnect, the sent-clients requests are not intercepted by the server, and the server cannot contact client (because-I think- the acontext list is empty)</p> <p>So how can I alert the clients that the server reconnected, or how can the server recreate its acontext list? (because the solution where the clients verify each x seconds the connection of the server is not a real good solution ?!!!).</p> http://stackoverflow.com/questions/1762000/use-ssl-with-delphi-yet-still-having-a-single-exe 2 Use SSL with Delphi yet still having a single exe plainth 2009-11-19T09:29:16Z 2009-11-20T11:12:23Z <p>Hi,</p> <p>We use Indy and we need SSL eMail support in our app., however we need to have our application in a single .Exe. </p> <p>We know that the default Indy handler requires to have the dlls in the path. Extracting the Dlls from one of the EXE's resources would be the last resort.</p> <p>Any better ideas?</p> http://stackoverflow.com/questions/1742900/tidhttp-in-indy-10 1 TIdHTTP in Indy 10 Noah 2009-11-16T15:28:15Z 2009-11-17T03:27:56Z <p>I used to use Indy back in the Delphi 6 days, and I am playing with Indy 10 now. What I want to do is incredibly simple, but I don't see a simple way of doing it, so I must be missing something.</p> <p>What I want to do is something like this:</p> <p>Here is the actual code I am using:</p> <pre><code>procedure TForm1.btnGetURLClick(Sender: TObject); begin moHeader.Lines.Clear; moBody.Lines.Clear; try moBody.text := IdHttp1.Get(edURL.text); finally end; end; </code></pre> <p>When the request is complete, the http_result should contain the HTML from the URL specified. This doesn't seem to work however, so I get the feeling I should perhaps be using the IOHandler property or the OnWork event of the component - however the usage doesn't seem obvious to me, and I couldn't find any working examples with google. I am sure this is something that has been done before, so any help would be appreciated.</p> <p>Additional Information: In the spirit of being more specific, I want to know: 1. Am I doing this right to begin with (or did I miss something?). 2. If so, why might it not be working. 3. It is always possible that there is a bug in the combination of compiler/os/Indy I am using. (Although it should be working).</p> <p>I should mention, I always get a popup "Connection Closed Gracefully". This seems to be an exception, and it could be interfering with the result of the function. I attempted to trap this with a TRY...FINALLY, but it doesn't work. Probably because Indy is triggering the exception in the background after the Get method runs I suppose.</p> <p>Finally, here is a screencast of the program running to clear up any confusion: <a href="http://screencast.com/t/NDMzNTQ5" rel="nofollow">http://screencast.com/t/NDMzNTQ5</a> I expect the HTML to fill the second memo box.</p> http://stackoverflow.com/questions/1256605/store-a-screen-capture-bitblt-in-a-memory-buffer-to-send-over-idtcpclient 0 Store a screen capture (Bitblt) in a memory buffer to send over IdTCPClient Steve 2009-08-10T18:59:06Z 2009-11-16T05:35:52Z <p>In c++ builder 6 on windows vista ...</p> <pre><code>Graphics:: TBitmap * bmpscreencapture = new Graphics::TBitmap; bmpscreencapture-&gt; Height = Screen-&gt; Height; bmpscreencapture-&gt; Width = Screen-&gt; Width; HDC ScreenSrc = GetWindowDC (0); BitBlt (bmpscreencapture-&gt; Canvas-&gt; Handle, 0, 0, Screen-&gt; Width, Screen-&gt; Height, ScreenSrc, 0, 0, SRCCOPY); Canvas-&gt;Draw(10, 10, bmpscreencapture); ReleaseDC (GetDesktopWindow (), ScreenSrc); delete bmpscreencapture; </code></pre> <p>I currently have a section of code for capturing the screen and displaying the screen capture onto an empty form. What I would like to do is store the captured image into a memory buffer and then send this buffer over the internet using the indy client IdTCPClient to be received by a similar program using indy server IDTCPServer.</p> <p>Has anyone got any suggestions/ideas of how to accomplish this?? I am fairly new to graphics programming</p> http://stackoverflow.com/questions/1663150/does-indy-support-raw-tcp-sockets-on-windows 2 Does Indy support raw TCP sockets on Windows? max tottenham 2009-11-02T19:22:46Z 2009-11-03T05:23:47Z <p>I'm a C++ programmer, but my question is about the Delphi network socket library Indy.</p> <p>Essentially as Microsoft crippled raw sockets with WinXP SP2 so that TCP data cannot be sent over them, does this then also apply to Indy? One of my friends recommended it to me rather then using the WinSock API.</p> <p>If not, then is the only way to use raw TCP sockets using the WinPCap API?</p> http://stackoverflow.com/questions/1589699/how-to-send-e-mail-using-gmails-smtp-and-indy-10 1 How to send e-mail using gmail's smtp and Indy 10? Fabio Gomes 2009-10-19T16:25:16Z 2009-10-19T19:40:49Z <p>I'm using Delphi 2009 and the lastest Indy 10 from svn to send e-mails using SMTP, but it doesn't work with gmail (Google Apps hosted domain). When I try to send an e-mail I get "Must issue a STARTTLS command first".</p> <p>I tried googling about it but I found several forums and several solutions, but they all just bashed some code or just said I needed a OpenSLL dll, which so far isn't very clear to me exactly what I need.</p> <p>Can someone please tell exactly which dll I need and what do I have to change in the my TIdSMTP and TIdMessage objects in order to send the e-mails through gmail's smtp server?</p> <p>Also, an explanation about why this authentication is different and what the dll is for is very welcome.</p> <p>Thanks.</p> http://stackoverflow.com/questions/846207/how-to-build-stand-alone-soap-web-services-using-delphi 2 How to build stand-alone SOAP web services using Delphi? eed3si9n 2009-05-10T22:03:04Z 2009-10-19T11:42:15Z <p>How can I build a stand-alone SOAP-based Web Services using Delphi? Must work with Delphi 2009, but it'd be nice if it worked with older ones too.</p> <p>The built-in WebBroker Web Services creates CGI or ISAPI. It would be nice to create a stand-alone executable that I can control from bottom to top, especially during development. </p> http://stackoverflow.com/questions/1549323/udp-connection-through-proxy-in-delphi 0 UDP Connection through proxy in Delphi HannesNZ 2009-10-10T23:00:03Z 2009-10-10T23:44:06Z <p>Hello,</p> <p>I have an application that connects to a udp server, and I can't seem to get it going when I am behind a proxy.</p> <p>Here is the code I have, which is working fine when <em>Not</em> behind a proxy.</p> <pre><code>function TfrmMain.SendCommand(ServerName, IP: String; Port: Integer; Command: String): String; var Udp : TIdUDPClient; Count : Integer; Response: String; begin Result := ''; Udp := TIdUDPClient.Create(nil); try try Udp.Host := IP; Udp.Port := Port; if UseProxy then begin Udp.TransparentProxy.Enabled := True; Udp.TransparentProxy.Host := ProxyServer; Udp.TransparentProxy.Port := ProxyPort; Udp.OpenProxy; end else begin Udp.TransparentProxy.Enabled := False; end; Udp.Connect; if Udp.Connected then begin //Send Command and receive data... end; if UseProxy then begin Udp.CloseProxy; end; Udp.Disconnect; except MessageBox(Handle, PChar('There was an error connecting to server ' + QuotedStr(ServerName) + '. '), 'Error', MB_ICONERROR); end; finally Udp.Free; end; end; </code></pre> <p>I don't know what I'm doing wrong, I haven't worked with proxies much, and it is at work that it doesn't work, and it's not a work project, so I can't debug it there.</p> <p>Thanks in advance.</p> http://stackoverflow.com/questions/1507136/tidtcpserver-not-reading-data-from-socket-sometimes 0 TIdTCPServer not reading data from socket sometimes. Bruce 2009-10-02T00:05:05Z 2009-10-08T04:09:29Z <p>Hi</p> <p>I have the following code in the OnExecute of a TIdTCPServer (Delphi 2009 and Indy 10 that came with the installation) which is very similar to other examples on this site;</p> <pre><code> Socket := AContext.Connection.Socket; if Socket.CheckForDataOnSource(10) then begin if not Socket.InputBufferIsEmpty then begin Socket.InputBuffer.ExtractToBytes(RawBytes, -1, False, -1); SetLength(Buffer, Length(RawBytes)); Move(RawBytes[0], Buffer[1], Length(RawBytes)); // Do stuff with data here... end; end; AContext.Connection.CheckForGracefulDisconnect; </code></pre> <p>It doesn't read the data in sometimes as CheckForDataOnSource(10) returns False. However if I stop the debugger at that line I can see the data I sent in the InputBuffer's bytes. Are there any other setup things I should do or other ways to force this to work all the time. This code is run bunch of times but always fails on the CheckForDataOnSource(10).</p> <p>Also as a side note, I notice in code for Indy around the place that some people grab the AContext.Connection.IOHandler instead of the AContext.Connection.Socket and do the same things as the code above, what is the "right" one to use.</p> <p>Thanks </p> <p>Bruce</p> http://stackoverflow.com/questions/1530634/indy-send-thread-and-destroyed-contexts 0 Indy, Send Thread and Destroyed Contexts Smasher 2009-10-07T10:01:53Z 2009-10-07T23:38:10Z <p>I use Indy's TIdTCPServer (D2009, Indy 10) to communicate with client applications. In the OnExecute method I create a task and queue it. A worker thread executes the task and puts it in the send queue. The send queue then sends the response to the client.</p> <p>In the send thread I loop through the server's context list and look for the context matching the IP and port information stored in the task. Then follow a number of send commands that sometimes throw access violations (I'm guessing that the context gets destroyed during sending).</p> <p>Now to the question: how can I make sure that the context is not closed before I have sent the response? Is it possible with Indy to send from a separate thread or should everything be done in the Indy thread?</p> http://stackoverflow.com/questions/1518975/errors-with-indy-in-threaded-application 1 Errors with Indy in threaded application ! Ariel32 2009-10-05T09:11:12Z 2009-10-05T20:01:30Z <p>Hi,</p> <p>I've got some memories leak related to TidHTTP when it's waiting for the response of a server after a GET and that the thread is being terminated.</p> <p>Example : </p> <pre><code>aThread = class(TThread) private FidHTTP :TidHTTP; FCommand :String; public procedure Execute(); override; constructor Create(aCommand :String); override; procedure Disconnect; end; procedure aThread.Execute(); var response :String; begin response := FidHTTP.Get(FCommand); end; procedure aThread.Disconnect; begin if ((FidHTTP &lt;&gt; nil) and (FidHTTP.Connected)) then FidHTTP.IOHandler.CloseGracefully; end; constructor aThread.Create(aCommand :String); override; begin FCommand := aCommand; inherited Create; end; </code></pre> <p><hr /></p> <p>I stop the thread with this when the application close :</p> <pre><code>aThread.Disconnect; aThread.Terminate; aThread.Free; </code></pre> <p>What should I do to solve the memories leaks ?</p> <pre><code>FastMM4 Log : 13 - 20 bytes: TIdThreadSafeInteger x 1 21 - 36 bytes: EAccessViolation x 1, TIdCriticalSection x 2 181 - 212 bytes: UnicodeString x 1 </code></pre> <p>Thanks :)</p> http://stackoverflow.com/questions/1486215/missing-ssl-library-when-connecting-to-pop3-over-ssl-from-an-activex-developed-in 0 Missing ssl library when connecting to pop3 over ssl from an activex developed in delphi-7 whith indy client 9 ? mic.sca 2009-09-28T09:48:19Z 2009-09-30T22:11:06Z <p>Hello, I'm developing an activexform with delphi 7 using the indy client (v.9) to connect to pop3 over ssl. Unfortunately when I load the activex in the web browser it tells me that it can't find the SSL library (ssleay32, libeay32).<br /> Does anybody know how can I work around this? </p> <p>(or Does anybody know any other method to connect to pop3 over ssl from an application that has to run in an Internet Explorer window?)</p> <p>Michele</p> http://stackoverflow.com/questions/1477413/loading-image-from-url-how-to-capture-the-exception-if-the-image-is-not-there 0 loading image from URL - How to capture the exception if the image is not there Greener 2009-09-25T13:53:19Z 2009-09-25T15:01:54Z <p>My problem relates to the <a href="http://stackoverflow.com/questions/1227646/how-to-get-images-from-url-in-delphi">other question I have asked about loading image from the URL</a>. The code below works. However, I have encountered the problem if I try to get the image (it suppose be there) but apparently was removed. The application does not know and returns the error. Is there a way to prevent it by capturing incoming error. I would appreciate any suggestions. It happens at his line:</p> <pre><code> IdHTTP1.get('http://www.google.com/intl/en_ALL/images/logo.gif',MS); </code></pre> <p>Thanks, Chris</p> <pre><code>uses GIFImg; procedure TForm1.btn1Click(Sender: TObject); var MS : TMemoryStream; GIf: TGIFImage; begin MS := TMemoryStream.Create; GIf := TGIFImage.Create; try IdHTTP1.get('http://www.google.com/intl/en_ALL/images/logo.gif',MS); Ms.Seek(0,soFromBeginning); Gif.LoadFromStream(MS); img1.Picture.Assign(GIF); finally FreeAndNil(GIF); FreeAndNil(MS); end; end; </code></pre> http://stackoverflow.com/questions/1455629/app-using-tidftp-not-migrating-from-delphi-5-to-delphi-2009-corrupt-uploads 0 app using TIdFTP not migrating from Delphi 5 to Delphi 2009...corrupt uploads X-Ray 2009-09-21T17:08:09Z 2009-09-21T19:53:44Z <p>i wrote a Delphi 5 app that uses TIdFTP. it's been working great for years. it's only purpose is to upload an excel file.</p> <pre><code>object ftp: TIdFTP OnStatus = ftpStatus IPVersion = Id_IPv4 AutoLogin = True Host = 'somewhere.ca' Passive = True Password = 'guess' TransferType = ftBinary Username = 'xray' ProxySettings.ProxyType = fpcmNone ProxySettings.Port = 0 end </code></pre> <p>i recently migrated to delphi 2009 since i reloaded my machine and delphi 5 is gone now.</p> <p>the app still looks like it's working but--most of the way through the 1.5 MB file the file becomes corrupt. it looks like bytes have been deleted and the uploaded file is shorter than the original (by about 200 bytes).</p> <p>my first thought was the transfer type so i set it to Binary but beyond that, i don't know.</p> <p>any ideas? </p> <p>thank you! mp</p> http://stackoverflow.com/questions/1422586/delphi-6-and-indy-ssl-connection-not-working 1 Delphi 6 and Indy SSL connection not working tecnotalk 2009-09-14T16:22:05Z 2009-09-17T09:10:37Z <p>Hi,</p> <p>I need to consume a Web Service via SSL. In order to accomplish that I have built a web client in Delphi 6 that uses Indy to read the client certificates and write the soap request via https. The compilated version of the code is a DLL that runs in IIS 5.0. After tested the code in my local machine it works fine (I'm behind a proxy). But after the code is deployed to prod servers (not proxy) the SSL connection fails saying "Error connecting with SSL".</p> <p>Here is my code:</p> <pre><code>var Response: TStringStream; IdHttp: TIdHTTP; IdCnxSLL: TIdConnectionInterceptOpenSSL; XmlSoapDoc: IXMLDocument; begin Response := TStringStream.Create(''); IdHttp := TIdHTTP.Create(nil); IdCnxSLL := TIdConnectionInterceptOpenSSL.Create(nil); XmlSoapDoc := TXMLDocument.Create(nil); with IdCnxSLL do begin IdCnxSLL.SSLOptions.Method := sslvSSLv23; IdCnxSLL.SSLOptions.RootCertFile := IniHttpConnectionData.Values['RootCertFile']; IdCnxSLL.SSLOptions.CertFile := IniHttpConnectionData.Values['CertFile']; IdCnxSLL.SSLOptions.KeyFile := IniHttpConnectionData.Values['KeyFile']; IdCnxSLL.OnGetPassword := IdConInterceptOpenSSLGetPassword; end; with IdHttp do begin if bUseProxy then begin Request.ProxyServer := IniHttpConnectionData.Values['ProxyServer']; Request.ProxyPort := StrToIntDef(IniHttpConnectionData.Values['ProxyPort'], 0); end else begin Host := IniHttpConnectionData.Values['HTTPHost']; Port := StrToIntDef(IniHttpConnectionData.Values['HTTPPort'], 443); end; Request.ContentType := 'text/xml'; Intercept := IdCnxSLL; InterceptEnabled := True; end; try IdHttp.Post(ServiceURL, SoapEnv, Response); except on E:EIdOSSLConnectError do LogError('SSL Connect Error: ' + E.Message); on E:Exception do LogError('Error' + E.ClassName + ' - ' + E.Message); end; </code></pre> <p>I also try this code compiling into an exe program and it works. Is there something else I need to configure/add? </p> <p>Thanks.</p> http://stackoverflow.com/questions/1410527/howto-determine-if-connection-is-still-alive-with-indy 1 Howto determine if connection is still alive with Indy? Smasher 2009-09-11T12:16:50Z 2009-09-13T18:38:37Z <p>I use Indy for TCP communication (D2009, Indy 10).</p> <p>After evaluating a client request, I want to send the answer to the client. I therefore store the TIdContext, like this (pseudocode)</p> <pre><code>procedure ConnectionManager.OnIncomingRequest (Context : TIdContext); begin Task := TTask.Create; Task.Context := Context; ThreadPool.AddTask (Task); end; procedure ThreadPool.Execute (Task : TTask); begin // Perform some computation Context.Connection.IOHandler.Write ('Response'); end; </code></pre> <p>But what if the client terminates the connection somewhere between the request and the answer being ready for sending? How can I check if the context is still valid? I tried</p> <pre><code>if Assigned (Context) and Assigned (Context.Connection) and Context.Connection.Connected then Context.Connection.IOHandler.Write ('Response'); </code></pre> <p>but it does not help. In some cases the program just hangs and if I pause execution I can see that the current line is the one with the if conditions.</p> <p>What happens here? How can I avoid trying to send using dead connections?</p> http://stackoverflow.com/questions/1389701/indy-ftp-transfertype 2 Indy FTP TransferType Tihauan 2009-09-07T14:39:52Z 2009-09-07T17:47:36Z <p>I'm using the IdFTP (Indy 10) component to download some files (zip and txt) from a remote location. Before getting each file I set the TransferType to binary.</p> <pre><code>IdFTP.TransferType := ftBinary; IdFTP.Get(ASource, ADest, AOverwrite); </code></pre> <p>I expect that both text and binary files can be downloaded using the binary mode. However it looks like text files contents is messed up while zip files are downloaded correctly. If I set the TransferType to ASCII for text files it works as expected. How can I detect which TransferType to set for a given file? Is there a common denominator or auto setting?</p> http://stackoverflow.com/questions/1227646/how-to-get-images-from-url-in-delphi 3 How to get images from URL in Delphi Greener 2009-08-04T13:48:41Z 2009-09-02T15:28:54Z <p>Hello, I am looking for any code samples that show how to pull images from URL into Delphi TImage component. </p> <p>Thanks, </p> http://stackoverflow.com/questions/1351181/post-data-to-asp-net-page-using-delphi-and-tidhttp 3 Post Data to ASP .NET page using Delphi and TIdHttp Issam Ali 2009-08-29T11:16:11Z 2009-08-31T12:22:46Z <p>I have an Asp .net page like this simple one <a href="http://issamsoft.com/app2/page1.aspx" rel="nofollow">http://issamsoft.com/app2/page1.aspx</a> and I want to post to it some data and extract data from the response, by using TIdHttp. I tried to do that in Delphi2009 like this:</p> <pre><code>Procedure TForm1.Button1Click(Sender: TObject); Const VIEWSTATE = '/wEPDwUKMjA3NjE4MDczNmRkSxPt/LdmgqMd+hN+hkbiqIZuGUk='; EVENTVALIDATION = '/wEWAwL40NXEDALs0bLrBgKM54rGBtmtdOYy+U7IFq8B25bYT1d4o1iK'; FORMPARAMS = 'TextBox1=Issam&amp;Button1=Button'; URL = 'http://issamsoft.com/app2/page1.aspx'; var http: TIdHttp; lstParams: TStringList; begin http := TIdHTTP.Create(self); lstParams := TStringList.Create; try lstParams.Add('__VIEWSTATE='+VIEWSTATE); lstParams.Add('__EVENTVALIDATION='+EVENTVALIDATION); lstParams.Add(FORMPARAMS); http.Request.ContentType := 'application/x-www-form-urlencoded'; Memo1.Lines.Text := http.Post(url,lstParams); finally http.Free; lstParams.Free; end; end; </code></pre> <p>but TIdhttp always gives an error(HTTP/1.1 500 Internal Server Error.) I read some comments in the idHttp unit talks about problems with http protocol v 1.1 like this one:</p> <blockquote> <p>Currently when issuing a POST, IdHTTP will automatically set the protocol to version 1.0 independently of the value it had initially, This is because there are some servers that don't respect the RFC to the full extent. In particular, they don't respect sending/not sending the Expect: 100-Continue header. Until we find an optimum solution that does NOT break the RFC, we will restrict POSTS to version 1.0.</p> </blockquote> <p>is there something wrong with my code or it's TidHttp Bug? and if the problem is in TIdHttp, is there any workaround? or is there other solution using Indy components?</p> <p>besides. I've made a solution in C# using WebClient and it works very good.</p> <pre><code> private void button1_Click(object sender, EventArgs e) { WebClient myClient = new WebClient(); string viewstate = HttpUtility.UrlEncodeUnicode(@"/wEPDwUKMjA3NjE4MDczNmRkSxPt/LdmgqMd+hN+hkbiqIZuGUk="); string eventvaildation = HttpUtility.UrlEncodeUnicode(@"/wEWAwL40NXEDALs0bLrBgKM54rGBtmtdOYy+U7IFq8B25bYT1d4o1iK"); string postdata = "__VIEWSTATE=" + viewstate + "&amp;" + "__EVENTVALIDATION=" + eventvaildation + "&amp;TextBox1=Issam&amp;Button1=Button"; myClient.Headers.Add("Content-Type", "application/x-www-form-urlencoded"); byte[] responce = myClient.UploadData("http://issamsoft.com/app2/page1.aspx", Encoding.ASCII.GetBytes(postdata)); txtResponse.Text = Encoding.ASCII.GetString(responce); } </code></pre> <p>where i can find (good/trusted) class like WebClient in Delphi? free preferred :)</p> <p>Edit: I hope mechanism of VIEWSTATE,EVENTVALIDATION is clear enough for you, they are hash values generated by server, and they may change(already changed), my orginal project has a piece of code just to extract the current VIEWSTATE,EVENTVALIDATION values, but I omit that part just to make my example simple and clear, so when you want to try the above code you must take VIEWSTATE,EVENTVALIDATION values from the current page source.</p> http://stackoverflow.com/questions/1311484/improving-udp-message-handling 1 Improving UDP message handling IanH 2009-08-21T11:46:43Z 2009-08-25T12:11:35Z <p>I've got a PC program receiving data from 20 custom hardware boxes via UDP. Each of these boxes continually sends UDP messages to a single UDP socket on the PC. The messages all contain 10 - 150 bytes of data, and each unit sends about 20 messages in 12 seconds.</p> <p>Testing shows that some messages are being missed by the PC. Fewer boxes on the network results in fewer missed messages.</p> <p>The long term solution is to buffer data in the hardware, and let the PC retrieve data as required via TCP, but I need to solve/minimise the missing message problem in the short term until that solution can be deployed. Ideas include: - upgrading the PC - filtering out unnecessary messages before transmission - combining separate UDP messages in the hardware into a single bigger one - using multiple sockets in the PC to receive messages</p> <p>I'm looking for feedback on these ideas, plus any we might have missed.</p> <p>The receiving program is a C++Builder program running Indy9.</p> http://stackoverflow.com/questions/1278333/delphi-indy-idtcpclient-read-operation-returning-truncated-data-for-one-specific 0 Delphi Indy IdTcpClient read operation returning truncated data for one specific request Cary Jensen 2009-08-14T14:51:44Z 2009-08-17T21:58:45Z <p>This is an interesting problem that I’ve not been able to solve yet. </p> <p>I am writing a client that communicates across the Internet to a server. I am using the TIdTcpClient Internet Direct (Indy) component in Indy 10 using RAD Studio 2007 native personality.</p> <p>To get data from the server, I issue an HTTP request using SSL over port 443 where my request details are contained in the HTTP message body. So far, so good. The code works like charm, with one exception.</p> <p>There is one request that I am submitting that should produce a response of about 336 KB from the server (the HTTP response header contains Content-Length: 344795). The problem is that I am getting only 320KB back. The response, which is in XML, is clearly truncated in the middle of an XML element. </p> <p>For what it’s worth, the XML is simple text. There are no special characters that can account for the truncation. My TIdTcpClient component is simply reporting that, after receiving the partial response, that the server closed the connection gracefully (which is how every response is expected to be completed, even those that are not truncated, so this is not a problem).</p> <p>I can make nearly identical calls to the same server where the response is also more than a few K bytes, and all of these work just fine. One request I make returns about 850 KB, another returns about 300 KB, and so on. </p> <p>In short, I encounter this problem only with the one specific request. All other requests, of which there are many, receive a complete response.</p> <p>I have talked to the creator of the service, and have supplied examples of my request. He reported that the request is correct. He also told me that when he issues my same request to his server that he gets a complete response.</p> <p>I’m at a loss. Either the creator of the service is mistaken, and there is actually a problem with the response on that end, or there is something peculiar about my request.</p> <p>Is there a solution here that I'm missing? Note that I’ve also used a number of other read mechanisms (ReadString, ReadStrings, ReadBytes, etc) and all produce the same result, a truncation of this one specific response at the 320KB mark. </p> <p>The code is probably not relevant, but I’ll include it anyway. Sorry, but I cannot include the XML request, as it includes proprietary information. (ReadTimeout is set to 20 seconds, but the request returns in about 1 second, so it's not a timeout issue.)</p> <pre> function TClient.GetResponse(PayloadCDS: TClientDataSet): String; var s: String; begin try try s := GetBody(PayloadCDS); IdTcpClient1.Host := Host; IdTcpClient1.Port := StrToInt(Port); IdTcpClient1.ReadTimeout := ReadTimeout; IdTcpClient1.Connect; IdTcpClient1.IOHandler.LargeStream := True; //IdTcpClient1.IOHandler.RecvBufferSize := 2000000; IdTcpClient1.IOHandler.Write(s); Result := IdTcpClient1.IOHandler.AllData; except on E: EIdConnClosedGracefully do begin //eat the exception end; on e: Exception do begin raise; end; end; finally if IdTcpClient1.Connected then IdTcpClient1.Disconnect; end; end; </pre> http://stackoverflow.com/questions/1277159/is-wsaasyncselect-good-enough-could-you-suggest-an-alternative-is-indy-better 1 is WSAASyncSelect good enough? Could you suggest an alternative? Is Indy better? John 2009-08-14T10:29:38Z 2009-08-14T16:57:51Z <p>Hello,</p> <p>I never liked components for winsock programming,I loved it in its natural way,but today my collegue told me to use Indy for my project.Could you tell me if Indy better alternative for my project? -2 TCP servers,2 TCP clients.4 sockets total -The project is a proxy.</p> <p>And now the second question,I read daily that WSAASyncSelect is not good and that's predictable,it's from winsock 1.1.My question is: Suggest something better than AsyncSelect for winsock-by-hand.</p> <p>Thank you.</p> http://stackoverflow.com/questions/1270685/how-to-have-an-ssl-certificate-installed-in-an-indy-server-and-seen-as-trusted 2 How to have an SSL Certificate installed in an Indy Server and seen as trusted? François 2009-08-13T08:06:12Z 2009-08-13T08:46:23Z <p>Using Delphi 2007, Indy 9 to build a standalone Server working in Secure mode. </p> <p>I used SSLBuddy to generate the certificate request, got a root certificate and a standard certificate from GoDaddy, a MyDomain.crt, (I selected the "other" type as web server).<br /> I then used SSLBuddy to generate the key and cert files passed to the TIdServerIOHandlerSSL.SSLOptions with the root cert. </p> <p>The server starts OK and loads the certificate, but from the calling client, I get a warning that my certificate is not from a trusted authority, even if I manually add the (GoDaddy) root certificate to the Trusted Root Certification Authorities. </p> <p>Is this the correct way of doing it or what did I do wrong?<br /> Why is my GoDaddy certificate rejected as untrusted?</p> <p>Any help VERY MUCH appreciated...</p> http://stackoverflow.com/questions/986544/robust-unidirectional-messages-with-indy 1 Robust unidirectional messages with Indy Smasher 2009-06-12T13:05:44Z 2009-08-12T12:47:22Z <p>I have a client application that should send notify messages to an optional server application. The client should not be influenced by whether the server appliction exists or not. It should try to connect to the server application and send the notify message and in case of errors it should just silently ignore all errors and continue work.</p> <p>I'm using Indy for the TCP communication but all attempts to avoid error messages showing up (i.e. when ther server application closes while connected to the client) failed.</p> <p>Is there a way to really make this robust?</p> <p>Current code looks like this:</p> <pre><code>if (not Client.Connected) then begin Client.Host := ServerName; Client.Port := ServerPort; Client.ConnectTimeout := ConnectTimeout; try Client.Connect; except Exit; end; end try Client.IOHandler.WriteLn ('NOTIFYCHANGE "' + Param + '"'); Client.IOHandler.WriteBufferFlush; except try Client.Disconnect; except { ignore errors while disconnecting } end; try Client.Connect; except { ignore errors while connecting } end; end; </code></pre> http://stackoverflow.com/questions/92196/why-does-my-d2009-exe-produce-emails-with-attachments-named-attnnnnn-dat 4 why does my D2009 exe produce emails with attachments named ATTnnnnn.DAT Richard King 2008-09-18T12:43:33Z 2009-08-11T22:11:25Z <p>why does my D2009 exe produce emails with attachments named ATTnnnnn.DAT when the same source code compiled in D2007 produces emails with attachments correctly named with the original file name. I am using the respective Indy libraries that come with D2007 and D2009. Not having the original file name on the attachment prevents users from being able to double click the attachment to open it (typically attachments are Excel spreadsheets). Note: code is identical - just the compiler and Indy libraries vary. The attachment sent by the D2009 exe can be saved and renamed to say zzzz.xls and then opens correctly -- ie the email and attachment go through correctly -- it is just the email attachment file name that is messed up. Someone suggested the attachment headers are corrupted -- has Indy been broken. The code to reproduce is stock standard code that can be found on many websites, but I can post if necessary. Thx in advance.</p> http://stackoverflow.com/questions/1197771/added-the-apptype-console-directive-and-now-my-application-runs-very-slowly-m 1 Added the {APPTYPE CONSOLE} directive and now my application runs very slowly. Moving the mouse makes it run faster. blak3r 2009-07-29T02:21:09Z 2009-07-30T08:53:35Z <p>I am trying to extend a 3rd party application so that it can be invoked via command line in addition to using the windows form GUI (mixed mode is desired). It's a fairly simple program which basically loads a file and then you click a button it starts sending UDP network packets. </p> <p>I need to invoke the application from another and would like to pass in an argument and need to be able to return the ExitCode to the calling app. From what i've read, in order to do so you need to add the compiler directive {APPTYPE CONSOLE}. </p> <p>I did this and my application worked as I wanted it to except sending the network packets slowed down to a crawl. <strong>I found that whenever I moved my mouse around on the form. That the network transfer rate increased significantly. I suspect there is some type of Windows Message queue problem and moving mouse is causing interrupts which in turn is causing the message queue to be processed?</strong> </p> <p>I have googled around and tried calling Application.ProcessMessages and PeekMessages in a Timer with a 1ms interval and that didn't help at all. I found in this <a href="http://www.mikejustin.com/download/HabariOpenMQGettingStarted.pdf" rel="nofollow">user manual for some other application</a> it says that Indy 10 is supported in both APPTYPE CONSOLE and GUI types. Quite frankly this just confuses me as I would have assumed that all network library would work in both modes... but like I said I'm not familiar with Delphi. </p> <p><strong>I am positive that the issue is isolated to a single line in my application and that is whether or not {APPTYPE CONSOLE} is included or not.</strong> </p> <p>Anyone have any ideas?</p> <p>Version Info:<br> Delphi 7 Personal (Build 4.453)<br> Indy 9.0.4<br></p> http://stackoverflow.com/questions/554142/indy-10-idtcpclient-reading-data-using-a-separate-thread 3 Indy 10 IdTCPClient Reading Data using a separate thread? jamiei 2009-02-16T18:41:17Z 2009-07-20T08:28:45Z <p>Hi All,</p> <p><strong>Question:</strong> What I'm looking for is the <em>most typical or best practice</em> way to use a separate thread to receive data using an IdTCPClient in Indy 10. </p> <p><strong>Background:</strong> The below code is a sample of what I'm trying to do with the actual data processing parts removed for clarity. The Idea of the Thread is to receive all data (Variable size with a header declaring the rest of the message length) and to then to parse it (That's what the HandleData procedure does) and trigger an Event Handler depending on the command. </p> <p>The TIdIOHandlerSocket is passed to the thread by the main application which also Writes data to the socket as and when it is required.</p> <pre><code>TScktReceiveThread = class(TThread) private { Private declarations } procedure HandleData; protected procedure Execute; override; public FSocket: TIdIOHandlerSocket; constructor Create(CreateSuspended: boolean); end; procedure TScktReceiveThread.Execute; var FixedHeader: TBytes; begin Assert(FSocket &lt;&gt; nil, 'You must assign the connected socket to the receiving thread'); SetLength(FixedHeader, 2); while not Terminated do begin if not FSocket.Connected then Suspend else begin FSocket.CheckForDataOnSource(10); if not FSocket.InputBufferIsEmpty then begin FSocket.ReadBytes(FixedHeader, SizeOf(FixedHeader), false); // Removed the rest of the reading and parsing code for clarity Synchronize(HandleData); end; end; end; end; </code></pre> <p>As a prefix, I have used another StackOverflow question which deals with the server components of Indy: "<a href="http://stackoverflow.com/questions/544204/delphi-2009-indy-10-tidtcpserver-onexecute-how-to-grab-all-the-bytes-in-the-in">Delphi 2009, Indy 10, TIdTCPServer.OnExecute, how to grab all the bytes in the InputBuffer</a>" to get the basis of what I have so far.</p> <p>Thanks for any help!</p> http://stackoverflow.com/questions/1068452/how-can-i-use-ntlm-authentication-in-a-delphi-soap-web-service-client 1 How can I use NTLM authentication in a Delphi SOAP Web Service client? mjustin 2009-07-01T10:46:12Z 2009-07-08T18:09:39Z <p>For a Microsoft CRM project, we need <a href="http://en.wikipedia.org/wiki/NTLM" rel="nofollow">NTLM authentication</a> in the Delphi 2009 web service client.</p> <p>It looks like <a href="http://www.delphipraxis.net/topic157784.html" rel="nofollow">Indy 10 Tiburon already has experimental NTLM support</a>.</p> <p>How can I activate the NTLM authentication for the THTTPRio component and use the logon information (user name, password, domain) of the destination web service server?</p> <p>Edit: it would also be helpful if there is a way to use other authentication methods than 'Basic', for example <a href="http://en.wikipedia.org/wiki/Digest%5Faccess%5Fauthentication" rel="nofollow">HTTP Digest access authentication</a>.</p> http://stackoverflow.com/questions/801289/emulate-incoming-network-messages-for-indy 0 Emulate incoming network messages for Indy Smasher 2009-04-29T07:39:13Z 2009-07-06T20:59:57Z <p>Is it possible to emulate incoming messages using Indy (if it's of any importance: I'm using Indy 10 and Delphi 2009)? I want to be able to create these messages locally and I want Indy to believe that they come from specific clients in the network. All the internal Indy handling (choice of the thread in which the message is received and stuff like that) should be exactly the same as if the message would have arrived over the network.</p> <p>Any ideas on that? Thanks in advance for any tips.</p>