Discussion:
How i can add a WebModule at my IW Application ?
(too old to reply)
Enrico Ghezzi
2008-05-28 13:20:42 UTC
Permalink
Hi

From arcana site :

-
Non-Visual Components
MixedMode interop adds a WebModule to your ServerController allowing your
app to respond with custom HTML/XML/SOAP and PageMode forms. Session Helpers
allow you to (almost) transparently pass session information between AppMode
and the web module. This allows you to post data from an external source
such as a PDF file back to your application. Also, you can use IW page mode
to create interactive popup windows for list selection or data entry and
integrate that data back to the user session.
-

Is the TArcIWInteropController component ?

-


i should add a Delphi TWebModule at my IW Application.

i'm looking for MixedMode , but don't found any example for use it.


i have an IW application. for a visual site.
now..
i want add a second use for this iw program.

www.site.com/myiw.exe/LOGMY?NAME=Smith

this code , should , log in db a record , and close all.

Delphi 2007 ENT + IW 9.0.32
Monte Carver
2008-05-28 17:48:11 UTC
Permalink
Select "New WebModule" from Intraweb.
Jason Southwell
2008-05-28 18:09:00 UTC
Permalink
Drop a TWebModuleBridge on your ServerController.
Add a web module to your IW app (select yes or no to the SOAP question).
handle the WebModuleBridge event to return the class name of your web module.
Set the WebModuleBridge to active.
Add actions to your web module or a web service if you selected yes to the
SOAP question.
run
Enrico Ghezzi
2008-05-29 13:37:31 UTC
Permalink
VERY VERY TNX :)
Enrico Ghezzi
2008-05-29 14:03:27 UTC
Permalink
Hi

how i can access to DataModule ( iw ) ,

from my webModule Unit , without session problems ?
Monte Carver
2008-05-29 18:30:44 UTC
Permalink
Sign up for Jason's training session he is offering. His training will provide valuable
insight into such questions.

Regards
Monte Carver
Jason Southwell
2008-05-29 20:38:14 UTC
Permalink
Post by Monte Carver
Sign up for Jason's training session he is offering. His training
will provide valuable insight into such questions.
Yes, thanks. I should have more details on this in the next couple of days.
We are testing some online meeting software tomorrow morning and if all
goes well, we'll make some public announcements.

Jason Southwell
2008-05-29 20:37:26 UTC
Permalink
Post by Enrico Ghezzi
how i can access to DataModule ( iw ) ,
from my webModule Unit , without session problems ?
If you use pooling, it's very simple as you can just lock and unlock a data
module as needed. If you do not use pooling, then you will need to create
a datamodule to use and free it when finished inside each web action (very
poor design BTW but works). Or you can create a common datamodule and a
critical section to lock and unlock access (again poor design but works).
Loading...