| Welcome, Guest |
You have to register before you can post on our site.
|
| Latest Threads |
Intraweb components missi...
Forum: IntraWeb General Discussion
Last Post: valmeras
07-20-2026, 08:29 PM
» Replies: 0
» Views: 43
|
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
07-17-2026, 05:18 PM
» Replies: 6
» Views: 4,513
|
IW 16.1.9 Invalid propert...
Forum: IntraWeb General Discussion
Last Post: Blanca80
07-17-2026, 08:06 AM
» Replies: 7
» Views: 2,121
|
Bootstrap5
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 03:38 AM
» Replies: 2
» Views: 569
|
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 03:14 AM
» Replies: 1
» Views: 210
|
Need Help Integrating Mic...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 02:38 AM
» Replies: 1
» Views: 200
|
Projeto Intraweb
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 02:12 AM
» Replies: 1
» Views: 277
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: Alexandre Machado
07-17-2026, 02:11 AM
» Replies: 7
» Views: 979
|
OpenSSL and concurrent re...
Forum: Indy
Last Post: kbriggs
07-05-2026, 02:41 PM
» Replies: 5
» Views: 585
|
Intraweb + Lazarus
Forum: IntraWeb Dúvidas Gerais
Last Post: vonirpereira
07-03-2026, 06:35 PM
» Replies: 0
» Views: 133
|
|
|
| Not a valid time format? |
|
Posted by: Mikael Nilsson - 06-29-2020, 10:44 AM - Forum: IntraWeb General Discussion
- Replies (11)
|
 |
Hi,
We have moved to new servers.
OS Name Microsoft Windows Server 2016 Standard
Delphi 10.3.3
Intraweb 15.2.3
TMS Intraweb 5.9.10
Using Interbase 2017
Firedac components.
I can't see anything wrong with the date format. Can you?
The problem is that we in on one of the forms we get:
500 - Internal server error.
There is a problem with the resource you are looking for, and it cannot be displayed.
in 99.99% . (sometimes we succeeds to get a result set showing in the TMSgrid.)
Error details:
Exception message : '2020-06-29 12:29:03.4500' is not a valid date and time
Depending on the error condition, it might be possible to restart the application.
Exception class : EConvertError
Exception address : 0676A8F6
Exception Time : 2020-06-29 12:29:36.995
------------------------------------------------------------------------------------------------------------------------
Application Name : isapiXIBwwd.dll
Application Version: 1.0.0.0
Started at : 2020-06-29 12:14:05.802
Running for : 15 minutes 31 seconds
Computer Name : P-W-WWD-WEB01
Compiler Version : 330
------------------------------------------------------------------------------------------------------------------------
IntraWeb Version : 15.2.3
Multi-session : False
Content Path : d:\wwwroot\customerzone.opuscapita.com\wwd\wwwroot\
Session count : 21
Application Path : d:\wwwroot\customerzone.opuscapita.com\wwd\
Active Form : frmWWD (TfrmWWD)
Active Form list : [1] frmLogon (TfrmLogon)
[2] frmWWD (TfrmWWD)
Form list : [1] IWUserSession (TIWUserSession)
[2] frmLogon (TfrmLogon)
[3] frmWWD (TfrmWWD)
Browser Name : Chrome
Browser UserAgent : Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36
Session ID : cPWEejrIa55X0GvdS6Y23OGmkNG
Last Access : 2020-06-29 12:29:36.157
Callback : False
Runtime parameters :
------------------------------------------------------------------------------------------------------------------------
Client IP address : ::1
Request PathInfo : /
Request Method : POST
Request User Agent : Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36
Cookies Count : 1
|
|
|
| erro versao intraweb |
|
Posted by: Orlando M. Utiamada - 06-26-2020, 12:53 PM - Forum: IntraWeb Dúvidas Gerais
- Replies (1)
|
 |
no iw 14 isso funciona, mas no 15 agora ele nao executa o sendfile.
WebApplication.SendFile( gSC.CacheDir +FFileName+'.tmp', True, 'application/txt', arquivodestino);
TIWAppForm(WebApplication.ActiveForm).Release;
TFListaRecibo.Create(WebApplication).Show;
ele passa pela linha do sendfile, executa os proximos e o sendfile nao e executado.
deve ser algum bug do intraweb
existe uma maneira de fazer o dowload e depois ele ir para um determinado formulario. Tentei de varias forma e nao consegui
|
|
|
| Standalone fails each day on VM |
|
Posted by: bruce.eglington@usask.ca - 06-25-2020, 05:20 PM - Forum: IntraWeb General Discussion
- Replies (5)
|
 |
Good day
I have several standalone (Indy style) programs which have run for years but need to move them to virtual machine environments. For some reason they fail every day. Has anybody else encountered this and what does one need to do for them to continue running in a virtual server environment?
Thanks
Bruce
Maybe I should add that I use Delphi 10.3 with IW 15.1.18
|
|
|
| Capturing HTML POST with Delphi? (Indy) |
|
Posted by: HalilHanBadem - 06-25-2020, 05:03 PM - Forum: Indy
- Replies (2)
|
 |
Hello,
I want to get the post value that I send in html with delphi. I am using idHTTPServer. My goal is to get the data sent by POST. But there is a problem. I send it as "form-data" with a tool like the picture below. Capturing the POST request. Unfortunately, when I make the same request as HTML, it doesn't see POST. How do I achieve this?
Code: procedure TForm1.serviceCommandGet(AContext: TIdContext;
ARequestInfo: TIdHTTPRequestInfo; AResponseInfo: TIdHTTPResponseInfo);
var
receiveStream: TStream;
begin
if ARequestInfo.URI = '/test.php' then
begin
if ARequestInfo.Command = 'POST' then
begin
receiveStream := ARequestInfo.PostStream;
if Assigned(receiveStream) then
begin
LOG.Lines.Add(ReadStringFromStream(receiveStream));
end;
AResponseInfo.ResponseNo := 200;
end;
end;
end;
HTML POST Request (Delphi doesn't see that request. My goal is to get that wish.)
Code: <form method="post" action="http://localhost:99/test.php">
<input type="hidden" name="test" value="04545">
<input type="submit" value="send"/>
</form>
![[Image: z5dqN.png]](https://i.stack.imgur.com/z5dqN.png)
It captures POST, which is in form-data format.
but does not see the POST request sent via HTML.
|
|
|
| Problem with Render at Intraweb 15.2.3 |
|
Posted by: Rolphy Reyes - 06-22-2020, 03:42 PM - Forum: IntraWeb General Discussion
- Replies (13)
|
 |
Hi!!
First, let me said that the new property RenderAsync and the method RefreshAsyncRender are fabulous.
A lot method in the application pass from Sync to Async style.
Now, let me explain my problem. Is normal that the application has the Master/Detail relationship within.
Based on that, my form has the following:
- A TFrame serving as a header to indicate where the user is logged in and other information (align to Top).
- A TFrame with multiple buttons, to carry out the different operations of the CRUD and a TDataSource that serves to enable / disable depending on the state of the TDataSet associated with the TDatSource. All CRUD operations are done in the OnClick (submit) event (align to Top under the other frame).
- Several DB-controls in the form (TIWDBLookupComboBox, TTIWDBAdvEdit, TIWDBCheckBox, TTIWDBAdvDateEdit), those control are connected to the TQuery master.
- TTIWDBAdvWebGrid connected to the TQuery detail.
- TIWModalWindow
- IWregion with several controls Non-Db and an IWButton (for adding the record to the TQuery detail); which is call by the TIWModalWindow.
I think this is an standard way of a common Form with a Master/Detail relationship.
Now the process is as follows:
- The user clicks on the add button of the TFrame.
- The user fill all of the DB-Controls place on the TForm.
- The user clicks on the button that show the TIWModalWindow
- The user fill all of the non DB-Controls of the TIWModalWindow
- The user clicks on the save button of the TIWModalWindow, in that moment the TQuery master calls the Post method (saving the data directly in the database) and putting in Edit mode the TQuery master then the TQuery detail calls the Post method (getting the value of the primary key field of the TQuery master, saving the data directly in the database too).
After that, the user clicks on the Save button of the TFrame, this button have some validation of the data and generate other data then calls the Post method of the TQuery master. All this process of this button in on the OnClick event (submit); the previously stored data from the TQuery Master "disappears" from the DB-controls and the validations say that information is missing and therefore the call to the Post method fails.
All of this works perfectly on Intraweb 15.1.22 and fails on 15.2.3.
I don't have an example on hand where I can show this behavior but I do see this in the actual application in both my development and production environment.
Do you understand what I just said?
Many thanks!
|
|
|
|