| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
4 hours ago
» Replies: 0
» Views: 23
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
Yesterday, 09:03 AM
» Replies: 0
» Views: 28
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
Yesterday, 01:48 AM
» Replies: 0
» Views: 43
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 306
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 152
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 490
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 145
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,001
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 271
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 826
|
|
|
| unfolding header lines in TIdAttachment[File] |
|
Posted by: Boba TC - 06-08-2018, 01:42 AM - Forum: Indy
- Replies (10)
|
 |
First of all, thanks to you guys for having this forum running!
I did try to post on embarcodero but it seems to be cold dead.
My problem is in sending an attachment with TIdSMTP v.10:
Code: TIdMsg *IdMsg;
//...
TIdAttachmentFile *attchmnt=new TIdAttachment(IdMsg->MessageParts, "filename.txt");
attchmnt->FoldLines=false; - ?
attchmnt->UnfoldLines=true; - ?
IdMsg->Send();
this message does arrive to its intended destination with proper attachment, but the receiving server wants
the attachment header lines to be unfolded and header fields to be separated by "; " (semicolon followed
by a space). So, where do I go to satisfy this server? Thanks in advance. Boba TC.
|
|
|
| Use of IWBootstrap and IW templates |
|
Posted by: jeroen.rottink - 06-06-2018, 12:17 PM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
Hi,
The question I have is using IWBootstrap (TIWBSText) with templates. I'm using IW14 so it's not the new integrated IWBootstrap version from IW15.
I use bootstrap-table and the REST method for loading the table. It's all from templates.
Code: <script type="text/javascript">
// connect dbGrid table to bootstrap-table object
$('#DBGRID').bootstrapTable(
{"columns":[
{"field":"product","title":"product"},
{"field":"aantal","title":"aantal"},
{"field":"afmeting","title":"afmeting"},
{"field":"status","title":"status"}
],
"url":"/$iwbs/DBGRID.dataurl",
"classes":"table table-striped table-no-bordered"});
// connect table cell click event handler
$("#DBGRID").off("click-cell.bs.table").on("click-cell.bs.table", function(e, field, value, row) {
ajaxCall("DBGRID.click-cell.bs.table","&row="+row.id, false);
});
</script>
Here the data for the table is fetched from "/$iwbs/DBGRID.dataurl". In the form an eventhandler picks up the request and outputs a json response.
This works if you set TIWServerController.AllowMultipleSessionsPerUser = False. If you set this property to True, the url that is referenced doesn't trigger the eventhandler.
Because I would like a solution that works in both situations I changed the url to "../$iwbs/DBGRID.dataurl" in the template. This works in both situations.
Question: "Is this the correct and preferred way to work with these urls?"
Using IW14.1.3 and Delphi 10.1
|
|
|
| Show old Loading.gif from IW-14.0.63 |
|
Posted by: jorgo2018 - 06-05-2018, 03:08 PM - Forum: IntraWeb General Discussion
- Replies (5)
|
 |
Hello,
how can we show the old Loading.gif from IW-14.0.63?
The spinning wheel of the old gif was much smaller.
We do not want to change the animation-gif of our existing program.
Questions:
1.) Where can I get the old Loading.gif?
Can't find it.
Can not find the new one either.
2.) In which directory should the file be copied?
("C:\..myApp\Win32\Debug\wwwroot\")
3.) I tested in object inspector without success:
IWServerController.CustomLockerAnimationFile = Loading.gif
(ComboBox for CustomLockerAnimationFile has no entrys)
IWServerController.ShowLoadingAnimation = True
Best regards - jorgo
|
|
|
| Hide Registration Information |
|
Posted by: richard@dinopro.com - 06-05-2018, 01:40 AM - Forum: IntraWeb General Discussion
- Replies (4)
|
 |
Hi, Like to know if anyone knows how to hide the information that shows on the web server program other than running it as a service.
There are information to say who this intraweb is registered to. I would like to prevent this from being displayed.
Anyway to do that ?
Rgds,
Richard Lim
|
|
|
| How to use TIdHTTPProxyServer? |
|
Posted by: KPKPKPKP - 06-04-2018, 08:17 AM - Forum: Indy
- Replies (3)
|
 |
Hi everyone...
I want to make a socks proxy server on my windows server!
I have searched about this and found that apps like CCProxy do this for me!
But now i want to make a simple CCProxy like app which acts as proxy server!
I guess that TIdHTTPProxyServer must do this in delphi...
But i do not have aknowlege about this component and how to use it!
Can anyone help me about this...?
Is my mind about this component right or not?!
if not, how to make CCProxy like app in delphi?
|
|
|
|