| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 225 online users. » 1 Member(s) | 221 Guest(s) Applebot, Bing, Google, hi88vipp10com
|
| Latest Threads |
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: Gregory_Twedt
06-24-2026, 04:40 AM
» Replies: 5
» Views: 697
|
VCL conversion
Forum: Delphi General Discussion
Last Post: tobenschain
06-20-2026, 05:00 AM
» Replies: 0
» Views: 102
|
TIWjQDBGrid changing UI
Forum: IntraWeb General Discussion
Last Post: BoostedCruiser
06-08-2026, 02:02 AM
» Replies: 36
» Views: 70,562
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: Fabrizio Conti
06-04-2026, 09:14 AM
» Replies: 3
» Views: 523
|
Access Violation When Val...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
06-03-2026, 08:47 AM
» Replies: 2
» Views: 541
|
Bootstrap5
Forum: IntraWeb General Discussion
Last Post: geraldtatum
06-02-2026, 06:24 AM
» Replies: 1
» Views: 440
|
weakpackageunit contains ...
Forum: IntraWeb General Discussion
Last Post: rlebeau
05-26-2026, 04:56 PM
» Replies: 4
» Views: 591
|
Custom 404 handler
Forum: IntraWeb General Discussion
Last Post: CfawesDwale
05-21-2026, 08:02 AM
» Replies: 0
» Views: 277
|
PopUp Menu
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
05-13-2026, 04:35 AM
» Replies: 4
» Views: 8,242
|
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
05-13-2026, 03:32 AM
» Replies: 3
» Views: 4,148
|
|
|
| upgrade IW 14 to 15, and beyond |
|
Posted by: chiswilson - 11-09-2018, 12:11 AM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
Hi all,
I am looking to update my old IW14 (from late 2015) to the latest IW 15 Ultimate so I can do SSL, among other things.
Should I assume its fairly easy to move an IW14 project into IW15?
Any gotcha's I should know about?
Im still on Delphi 2010.
I know I'll have to update my TMS component pack but thats only like 40 euro apparently.
Also, AtoZed... Im just wondering... has it been decided, is the upcoming IW17 going to support Delphi 2010?
thanks.
|
|
|
| (Indy) Web application get page error |
|
Posted by: xinyiman - 11-07-2018, 10:42 AM - Forum: Indy
- Replies (3)
|
 |
Hi, I use indy for my project combined with lazarus where I need a web server. Everything seems to work, but when I try to read the contents of a web page with a token in json, I get (not always errors). In particular. This:
HTTP / 1.1 200 OK Connection: close Content-Length: 397
This is the link to the lazarus forum where I have already posted the problem and where you can find an example to replicate the error. You will see that I tried to read it synapse, but only out of curiosity, to see if the error was replicable. I'm interested in solving the problem related to indy so I remove synapse dependencies from my project.
http://forum.lazarus-ide.org/index.php/t...n.html#new
Thank you
|
|
|
| [SOLVED] GStack.LocalAddress returns empty |
|
Posted by: capslock - 11-05-2018, 12:38 AM - Forum: Indy
- Replies (4)
|
 |
I'm using Indy 10 + fpc + lazarus to build a cross platform app.
GStack.LocalAddress returns the IP address at Windows, but returns empty at Linux, and GStack.LocalAddresses.Count = 0. The machine has an ip address, checked by ifconfig.
Anybody help me?
Thanks,
Gustavo
|
|
|
| AV on FinalizeDataOperations - Delphi5 |
|
Posted by: GrahamRola - 10-31-2018, 01:44 PM - Forum: Indy
- Replies (1)
|
 |
Delphi 5
Indy 10 5473
I call List in ftp component and it returns the appropriate data.
when the FinalizeDataOperation; is called I get an AV read of address 0xea5278ed.
I Put a breakpoint at the begin of GetResponse and looked at
the call stack (shown below);
What could possible be causing the AEncoding to be anything other
than Nil?
Couple of other things of note.
When I place mouse over AAAllowedResponses it only shows (226) not ([226, 225, 250]);
There are 9 calls to GetResponse before this final call that all show Nil in AEncoding
Code: procedure TIdFTP.FinalizeDataOperation;
...
end else begin
//ftp.marist.edu returns 250
GetResponse([226, 225, 250]); // call that generates AV
end;
end;
Code: function TIdTCPConnection.GetResponse(const AAllowedResponses: array of Int16;
AEncoding: IIdTextEncoding = nil): Int16;
begin // break point inserted here
GetInternalResponse(AEncoding);
Result := CheckResponse(LastCmdResult.NumericCode, AAllowedResponses);
end;
Call Stack
TIdTCPConnection.GetResponse((...),Pointer($55E4E3) as IIdTextEncoding)
|
|
|
| Issue with nested frames in IW15 |
|
Posted by: magosk - 10-30-2018, 09:44 AM - Forum: IntraWeb General Discussion
- Replies (5)
|
 |
We have discovered an issue in one of our web applications that slipped through our initial tests when migrating from IW 14.2 to IW 15. When you have a frame inside another frame, it seems like the HTML naming convention in IW15 has changed so that a control from the innermost frame gets its full HTML name from the outermost frame + the control name (rather than from the innermost frame + the control name). In most cases this does not matter, but we have a frame (call it ParentFrame) which contains two instances of another frame (call them ChildFrame1 and ChildFrame2). The problem is that the two child frames contains controls (an edit and two links in each) that will end up with identical HTML names, which has the effect that the link OnClick event handlers only work in one of the child frames. Any ideas on how to solve my problem? I cannot change the HTMLName property as it is read-only. Just for testing, I experimented with changing the control names in ChildFrame2 at runtime (although I know there are strong warnings against doing this in Delphi), and while I could get the link OnClick handlers to trigger this way, the text from the edit control is not properly extracted.
|
|
|
| Issue with List of Objects |
|
Posted by: jgilmour - 10-30-2018, 06:42 AM - Forum: CrossTalk General Discussion
- Replies (1)
|
 |
Hi All,
I am currently evaluating Crosstalk for our companys use, and am having an issue with generating one of our .NET DLL classes.
Crosstalk correctly creates the base classes, but the class also has a property that is a list of objects that is not generating.
ie It creates base classes of TagReport and Tag. TagReport should contain a List of Tag objects but this appears to not be generating.
On Crosstalk generate screen I get a message "Type: TagReport. Property: Tags. skipping Generic Type"
Am I missing any required types for mscorlib in order to generate lists or something?
Am currently using Trial version 2.0.27
Cheers
|
|
|
|