Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 95,550
» Latest member: mu88clubnet
» Forum threads: 2,423
» Forum posts: 11,367

Full Statistics

Online Users
There are currently 675 online users.
» 4 Member(s) | 667 Guest(s)
Applebot, Bing, Google, Yandex, JohnWoods, mu88clubnet, usaboxmakers, xoso66ipcom

Latest Threads
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
3 hours ago
» Replies: 2
» Views: 167
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 57
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 367
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 86
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 1,889
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 233
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 705
Looking for UI Design Tip...
Forum: Delphi General Discussion
Last Post: chrisjordon232
08-06-2026, 05:17 AM
» Replies: 0
» Views: 261
TIWjQDBGrid DateFormat
Forum: IntraWeb General Discussion
Last Post: brushbuny
08-05-2026, 03:31 AM
» Replies: 2
» Views: 1,661
Simply convert PeerIp to ...
Forum: Indy
Last Post: DidierMenant
08-04-2026, 03:50 PM
» Replies: 2
» Views: 393

 
Smile Intraweb installs , but does not appear in Delphi
Posted by: KristofVR - 05-14-2018, 07:50 PM - Forum: IntraWeb General Discussion - Replies (3)

Hi,

I am a licenced user for Intraweb 14.0.25 .
I recently upgraded my PC from Win7 to Win10 (better late then never  Tongue )  , so I had to reinstall Delphi XE5 + Intraweb.

For this, I first did the removal tool, and afterwards the new installation . This installation runs without any conflicts.  

But in the end, when I open Delphi XE5,  Delphi does not appear to notice that Intraweb has been installed.

No projects can be created (File-> new -> other -> Intraweb is missing).  The startup Delphi screen does not show me that intraweb has been installed.

What could the problem be here ?


Best regards,
Kristof

Print this item

  How to install SSL in intraweb
Posted by: morhous - 05-14-2018, 08:33 AM - Forum: IntraWeb General Discussion - Replies (5)

Hello i search through internet all day and night and no good about how to install ssl
May i get some step by step guide from you guys. Thank you for your time

Print this item

  OPC Client in IntraWEB
Posted by: luis.j.gutierrez@inn2.cl - 05-13-2018, 04:30 PM - Forum: IntraWeb General Discussion - Replies (5)

I have a Windows application that communicates with an OPC server using DCOM / COM communication, all managed in a thread.

My question is, can I move that thread to Intraweb (14.2.7), to be managed by the  Server Session (or a DataModule)? ... My idea to run the thread, read data from an OPC and share it  among all the users that access certain page in the WEB Browser.  Or it could be in conflict with the Intraweb Environment?

Thanks in advance for your help ... Regards

Lg

Print this item

  indy 10.5457 delphi 5 ftp problems
Posted by: richspi - 05-13-2018, 04:01 AM - Forum: Indy - Replies (1)

getting av that has been described as a delphi 5 bug with array parameters. Code worked in 10.0.52.  
Can supply simple program that fails if that will help
We needed to upgrade to 10.5412 to fix another issue but that broke ftp in a second program.  
Upgraded to 5457 hoping for a fix, still broken.
Tried the stack frames optimization work around but still seeing problem.  
In another forum rlebeau indicated that there is an ugly workaround.
May we please get access to the workaround otherwise we are forced to compile some programs with 10.0.52 and others with 10.5457 and, even more difficult,  remember when to switch

Also had to comment out some getstring code to get Indy to install...there was conditional compile code but it still didn't compile, any fix for that?

Thanks for your help,  we appreciate all that you do for Indy
rich

Print this item

  IntraWeb 17 Plays Nice with 15
Posted by: kudzu - 05-11-2018, 08:14 PM - Forum: IntraWeb General Discussion - No Replies

https://www.atozed.com/2018/05/intraweb-...s-with-15/

Print this item

  IntraWeb 17 Plays Nice with 15
Posted by: kudzu - 05-11-2018, 08:14 PM - Forum: IntraWeb 17 - No Replies

https://www.atozed.com/2018/05/intraweb-...s-with-15/

Print this item

  Roadmaps Updated with ETAs
Posted by: kudzu - 05-11-2018, 08:02 PM - Forum: IntraWeb General Discussion - No Replies

https://www.atozed.com/2018/05/roadmaps-...with-etas/

Print this item

  Unable to upload to correct FTPS folder if FTP site also exists
Posted by: Vintner - 05-10-2018, 03:37 PM - Forum: Indy - Replies (1)

Hello

I'm using Indy 10.6.0.516 on Delphi XE7.

I can get FTPS to upload to the correct folder using port 990 if there is no FTP site on the same IP. However, as soon as I set up an FTP site on port 21, then FTPS uploads now go to the FTP folder rather than the FTPS one.

Is it possible for Indy to work with FTPS when there are both FTP and FTPS sites on the same host? 

Here is my code:

Code:
               If IdFTP1.Connected then
                  IdFTP1.Disconnect;

               IdFTP1.Host:=FTP_HOST;
               IdFTP1.Port:=FTP_PORT; //990
               IdFTP1.Username:=FTP_USERID;
               IdFTP1.Password:=FTP_PASSWORD;
               IdFTP1.Passive:=True;

               IdSSLIOHandlerSocketOpenSSL1.Host:=FTP_HOST;
               IdSSLIOHandlerSocketOpenSSL1.Port:=FTP_PORT; //990
               IdSSLIOHandlerSocketOpenSSL1.DefaultPort:=FTP_PORT;

               IdSSLIOHandlerSocketOpenSSL1.SSLOptions.Method:=sslvSSLv23; 
               IdFTP1.IOHandler:=IdSSLIOHandlerSocketOpenSSL1;
               IdFTP1.UseTLS:=utUseExplicitTLS;

               IdFTP1.DataPortProtection:=ftpdpsPrivate;
               IdFTP1.Connect;
               IdFTP1.ChangeDir(FTP_FOLDER);

               IdFTP1.Put(zipSourceFile, zipDestinationFile);

Many thanks

Print this item

  How to pass email datetime to the New TIdImap4.AppendMsg method?
Posted by: edwinyzh - 05-10-2018, 08:44 AM - Forum: Indy - Replies (3)

Hello,

In the old version of Indy 10 (a few years back), the TIdImap4.AppendMsg allows  me to pass the UTC datetime of the email, but I don't know since when the parameter list of that method has changed.

I have noticed the AAlternativeHeaders: TIdHeaderList parameter, I guess I can set the email date using this parameter? If yes, how? Thanks.

Print this item

  ISAPI & ComInitialization
Posted by: JalcoJohn - 05-09-2018, 01:58 PM - Forum: IntraWeb General Discussion - Replies (2)

I've an app that has ComInitialization set to ciMultiThreaded and it all works fine on my installation of IIS (Version 8). however, when I deploy it to my Client's server running the same version of IIS I get the error 'Cannot change thread mode after it is set'.  If I change it to ciNormal it seems to work OK.

So the question is, has IIS got some setting somewhere that controls COM on the face of it both systems look the same and is there any harm in leaving it at ciNormal?

Any help much appreciated.

Regards
John

Print this item