If you were asking for help with something rather trivial, like overloaded 
functions, I could probably give you what you needed in a single reply and I 
would be happy to do so.  However, what you are asking for is "Internet Apps 
101", which requires mastering several new concepts and Delphi IDE tools.  If 
you can pay me a reasonable rate per hour, I can teach you how to create an 
internet app, which will run on your desktop, not in a browser, yet still use 
the browser HTML protocol and support multiple clients across the internet, who 
can access and update a remote database on your web server machine.  I am no 
expert on web stuff, in general, but I have successfully created my own 
internet app of this type.  I use D7 Enterprise because I have it, it works 
well, and I cannot afford to buy a newer version.  I create a Datasnap Remote 
Data Module, connected to a local ODBC Data Source, using ADO.  The Datasnap 
server is an EXE that runs as a service on the web server machine.  Internet 
clients send requests for data to the application server, which is the Datasnap 
remote data module.  The client EXE uses client datasets and never has a live 
connection to the server.  All, or at least most (99%) of the SQL is executed 
on the SQL server.  I use Firebird, but you can use any SQL RDBMS for which you 
have necessary drivers to connect via ADO.  To be able to follow my 
instructions to create such an app, you will need a domain name and a dedicated 
box (XP Pro or better) for the server.  I use Windows IIS for the web server.  
I haven't been able to get this to work with Apache yet; however, I know it 
can.  For initial development, you will also need at least one machine OUTSIDE 
your server's network and, later when you test concurrency issues, you'll need 
at least two machines outside your server's network. You will also need an 
enterprise version of Delphi with Datasnap.  I use D7 Ent,  If you were to use 
D7 Ent, we would probably encounter fewer problems.  Let me know what hourly 
rate you can pay and we'll go from there.  Sorry I can't do this for free.  I 
would like to; however, I am unemployed and must conserve the use of my time 
and money.  I hope you understand and I hope I haven't committed some kind of 
Yahoo Group sin by asking for payment.  Regards, Sam Hunt  [email protected]

--- In [email protected], "jumpsfromplanes" <kgmcco...@...> wrote:
>
> 
> 
> --- In [email protected], "Martijn" <mcvanderkooij@> wrote:
> >
> > 
> > > Im sorry, but web-based applications are not my business at all 
> > > (Databases are).
> > > 
> > > But in this community are many developers who are willing to help you, 
> > > I'm sure.
> > > 
> > > >       Thanks for your email and care about other people.Can you help 
> > > > me.How to make web based application using delphi.I already have 
> > > > knoweledge in win32 apllication delphi 7 and delphi 2009.Please help to 
> > > > make web based application using our own web server.I am waiting for 
> > > > good reply.
> > 
> > Did you take a look at Intraweb? Using this you can create a web 
> > application.
> 
> 
> Agreed. Intraweb (IW) is a good Delphi/web app development method.
> 
> I have also done lots of PHP programming, with Delphi client/server apps 
> controlling the database that PHP uses to display the database records. I 
> prefer MySQL, since it is compatible with both PHP and Delphi - and its free 
> :-)
> 
> IW is a bit easier to design web sites with than PHP, since you don't have to 
> do so much raw HTML coding. You use Delphi to lay out the look and feel of 
> the web site, rather than code the HTML yourself in PHP.
> 
> If you are going the Intraweb route, Look into Arcana EliteSuite and TMS 
> Intraweb components. EliteSuite is freeware. TMS you have to pay for.
> 
> Intraweb has *some* components, but is a bit clunky looking, out of the box. 
> Both the above component libraries build on the Intraweb components and look 
> a lot nicer.
> 
> I did an tradeshow online ticket ordering system with IW and Elitesuite. I 
> did a statistics site with TMS and IW.
> 
> Intraweb can run on IIS or Apache. I run my web apps on Apache, using ISAPI 
> DLLs.
> 
> Good luck with your project!
> 
> Best regards,
> 
> Kevin G. McCoy
>


Reply via email to