| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 1124 online users. » 7 Member(s) | 1113 Guest(s) Applebot, Bing, Google, Yandex, 789club1info, ganabetorgmx, go8fcocom2, hay88rrscom, kg77netph, kuwinicu1vn, sunwinyokohama1
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 128
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 120
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 133
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 419
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 213
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 587
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 203
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,163
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 335
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 945
|
|
|
| assembly error |
|
Posted by: jjlopez - 06-03-2018, 05:42 PM - Forum: CrossTalk General Discussion
- Replies (8)
|
 |
Hi, I'm trying the demo version of CrossTalk to check if I can use it , and after adding couple of .Net dll, I cannot open the crosstalk dialog anymore, as I'm getting the following error:
[System.Reflection.TargetInvocationException]: Exception has been thrown by the target of an invocation.
[System.Exception]: Assembly not found: C:\projects\testing\clover\..\..\..\Program Files (x86)\Clover\CloverSDK\CloverConnector\CloverConnector.dll
No changes at all in folders, and all files are in the same paths.
I just added the .dll, and after restarting Delphi (Berlin 10.1), I cannot go ahead.
How can be this issue fixed.
Thanks!
|
|
|
| Issues with TLS 1.2 |
|
Posted by: DEKETO - 06-01-2018, 07:36 PM - Forum: IntraWeb General Discussion
- Replies (4)
|
 |
We have an application written in Delphi XE2 + IntraWeb 14.1.12. The IWServerController "SSL Version" is set to TLSv12, and "SSL Versions" is set to [TLSv12]. If an end user turns off TLS 1.0 and TLS 1.1 in their browser settings, leaving TLS 1.2 turned on, the program SHOULD work just fine, but it doesn't.
Using Internet Explorer as an example, this is what the end user sees:
---
This page can’t be displayed
Turn on TLS 1.0, TLS 1.1, and TLS 1.2 in Advanced settings and try connecting to (web address) again. If this error persists, it is possible that this site uses an unsupported protocol or cipher suite such as RC4 (link for the details), which is not considered secure. Please contact your site administrator.
---
Obviously *something* is still trying to use TLS 1.0 or 1.1 - any ideas as to what the problem could be? This affects all of our customer sites, and we need everything to be TLS 1.2 for e-commerce security compliance.
Many thanks for any help you can provide.
|
|
|
| TIWFileUploader |
|
Posted by: Mikey29 - 06-01-2018, 02:18 PM - Forum: IntraWeb General Discussion
- Replies (8)
|
 |
Hello,
I would like to simulate a mouse clic event on a TIWFileUploade component…
I should use the OnAsyncClick… :
IWFileUploader1.OnAsyncClick(IWFileUploader1, EventsParams);
For the sender I use the IWFileUploader1 name of the component, But for the EventsParams, I Don't know what to use …
If place a Stringlist I've created It return me an error…
It is possible to simulate a mouse clic for this compents ? If yes, where I can found a sample, Please ?
With Best regards,
Mikey
|
|
|
| Button Back |
|
Posted by: l.Restif - 05-30-2018, 12:03 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Hi,
how is it possible to use the back button in an intraweb application?
Is there a way to tell the serveur controller via an ajax callback which form is the current when the last page is reloaded from the cache?
The current page has to correspond to the current form in the intraweb session.
|
|
|
| IWCanvas |
|
Posted by: UdoBausch - 05-28-2018, 09:23 AM - Forum: IntraWeb General Discussion
- Replies (4)
|
 |
I want to implement some grafic-objects in my IntraWeb-Application
Last year you announced a IWCanvas component in V14 In my distribution of V14.2.7 I am missing this
– using this it will be perfect for me ( - I made some handcrafted examples - )
But I could not place it in the <Body>-part of the IWForm (extra code I can place in IWForm.JavaScript, but this appears out of HTML-<Body>, but it is usable also)
For me IWCanvas only needs to have the following the following properties:
Name:String
FiendlyName:String
Height:String
Width:String
ContextName:String
JavaScript: TStringList
If it is possible to place it in a IWRegion we can use this to define
Left
Top
IWCanvas.RenderHTML should create
<canvas id="RainbowStrokeStyleSample1" width=320px height=120px> </canvas>
<script> //JavaScript
var context = document.getElementById('RainbowStrokeStyleSample1').getContext('2d');
// 1. set strokeStyle to a linear gradient value
var rainbowGradient = context.createLinearGradient (0, 60, 320, 60);
rainbowGradient.addColorStop (0, 'red');
rainbowGradient.addColorStop (0.25, 'yellow');
rainbowGradient.addColorStop (0.5, 'green');
rainbowGradient.addColorStop (0.75, 'blue');
rainbowGradient.addColorStop (1, 'violet');
context.strokeStyle = rainbowGradient;
// 2. draw a kind of half cirlce on the left
context.beginPath();
context.moveTo (60, 10);
context.lineTo (60, 110);
context.bezierCurveTo (0, 110, 0, 10, 60, 10);
context.stroke();
context.closePath();
// 3. draw a rectangle on the right top
context.strokeRect (80, 10, 230, 30);
// 4. set the text font and write 'Hello!' on the right bottom of the canvas
context.font = '60pt sans-serif';
context.strokeText ('Hello!', 80, 110);
</script>
Currently I need no Events for IWCanvas – but if events are inherited it can be useful too
I think it should not be not very complicated for you to implement IWCanvas in IntraWEB.V14
Please give me feedback about this proposal to enable me to plan my next steps- If you need some tester – I am willing to do this job
-
Or do you have an idea to solve this in an alternative way ?
Thankyou in advance
|
|
|
| Safari: No Cookies Notification |
|
Posted by: AllBars - 05-25-2018, 07:27 PM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
There is something about web development that makes explaining everything so difficult.
The problem I have is this:
I have a wix website (allbars.net) which embeds my intraweb app in (presumably) an iFrame - It is just a link to the url of the intraweb app (https://allbarsbooking.net)
In general this works well, in Chrome, Firefox and Edge, going to allbars.net/Booking my app shows as expected.
In safari on mac, iPad, iPhone however it just shows the blank wix page.
The reason is that Safari defaults to 'cookies only for pages I visit' and as the intraweb app is embedded, Safari doesn't think I haven't explicitly visited it, hence, no cookies for you.
If I go directly to https://allbarsbooking.net it works and subsequently visiting allbars.net/Booking also works fine
In the app I am seeing the "Cookies are disabled in your browser" exception, and I can trap and handle this. But Intraweb isn't returning anything to the browser to indicate that there is something wrong, so I can't work out how to advise the safari user of what to do to fix the problem.
I had thought to just put text on the wix page background, but the Intraweb app is mostly transparent, so doesn't hide the text.
Any ideas?
|
|
|
|