473,324 Members | 2,456 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,324 software developers and data experts.

Make a DLL

Hello,

How can I make a ASP-file to a .DLL?
The idea is to protect the source from others who use the same IIS.
Can I make a ASP-file that calls a .DLL - file with all functionality, or
how does it work?

If you could point me in the right direction I would be happy.

Regards,

/Mikael S
Jul 19 '05 #1
3 4846
Do you know VB or any other language that will let your create components?
You can make a whole site out of nothing but compiled components if you
like. It's a bit challenging, but you can do it. OWA 2000 is a nice
inspiration for that.

Also see here: http://www.aspfaq.com/show.asp?id=2163

Ray at work

"Mikael" <mi****@slk.nu> wrote in message
news:Ol**************@TK2MSFTNGP10.phx.gbl...
Hello,

How can I make a ASP-file to a .DLL?
The idea is to protect the source from others who use the same IIS.
Can I make a ASP-file that calls a .DLL - file with all functionality, or
how does it work?

If you could point me in the right direction I would be happy.

Regards,

/Mikael S

Jul 19 '05 #2
In Delphi 5, File/New -> Web Server Application creates an ISAPI application
(for IIS), NSAPI application (similar for Netscape Server) or CGI
application. You do not need a Microsoft compiler.

I recommended ISAPI. A CGI application can be compiled on an even wider
range of compilers, but basically it's a command line thing and you have to
parse the HTTP request and provide the HTTP response including all headers
yourself.

Delphi 7 has many more options, including the option, I believe, of creating
a .Net web service if you also get an additional beta version plug-in.
Delphi 8 has, I believe, .Net support built-in. Again, there is no longer a
need for a Microsoft compiler.

Of course, this is not really "making an ASP into a DLL", it is rewriting
your code.

Paul

"Mikael" <mi****@slk.nu> wrote in message
news:uq**************@tk2msftngp13.phx.gbl...
Thank you for your fast reply.
The link you sent was great, I am reading some info from microsofts site
now.

I know asp-programming very well, but only in .asp-IIS-environment. Not in
VB-compilers.
We have Borland 7 Enterprise at my office, and I can install VB6 I think. It is maybe better with a microsoft compiler, since the .dll will be used with IIS.

Regards,

/Mikael S

"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> skrev i meddelandet news:OP**************@TK2MSFTNGP11.phx.gbl...
Do you know VB or any other language that will let your create components?
You can make a whole site out of nothing but compiled components if you
like. It's a bit challenging, but you can do it. OWA 2000 is a nice
inspiration for that.

Also see here: http://www.aspfaq.com/show.asp?id=2163

Ray at work

"Mikael" <mi****@slk.nu> wrote in message
news:Ol**************@TK2MSFTNGP10.phx.gbl...
Hello,

How can I make a ASP-file to a .DLL?
The idea is to protect the source from others who use the same IIS.
Can I make a ASP-file that calls a .DLL - file with all functionality,

or how does it work?

If you could point me in the right direction I would be happy.

Regards,

/Mikael S



Jul 19 '05 #3
http://msdn.microsoft.com/library/en...l/404track.asp


"Mikael" <mi****@slk.nu> wrote in message
news:uq**************@tk2msftngp13.phx.gbl...
Thank you for your fast reply.
The link you sent was great, I am reading some info from microsofts site
now.

I know asp-programming very well, but only in .asp-IIS-environment. Not in
VB-compilers.
We have Borland 7 Enterprise at my office, and I can install VB6 I think. It is maybe better with a microsoft compiler, since the .dll will be used with IIS.

Regards,

/Mikael S

"Ray at <%=sLocation%>" <myfirstname at lane34 dot com> skrev i meddelandet news:OP**************@TK2MSFTNGP11.phx.gbl...
Do you know VB or any other language that will let your create components?
You can make a whole site out of nothing but compiled components if you
like. It's a bit challenging, but you can do it. OWA 2000 is a nice
inspiration for that.

Also see here: http://www.aspfaq.com/show.asp?id=2163

Ray at work

"Mikael" <mi****@slk.nu> wrote in message
news:Ol**************@TK2MSFTNGP10.phx.gbl...
Hello,

How can I make a ASP-file to a .DLL?
The idea is to protect the source from others who use the same IIS.
Can I make a ASP-file that calls a .DLL - file with all functionality,

or how does it work?

If you could point me in the right direction I would be happy.

Regards,

/Mikael S



Jul 19 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: Robert Blaha | last post by:
Hi, I'm runnig Linux/Mandrake9.0-Dolphin and try to update Apache 2.0.46 and PHP 4.3.2. Apache is OK bu with PHP I've problem. I unpacked distribution, run ../configure > configure.vysl, make...
0
by: pptran | last post by:
Hi, I am pretty new to building and installing Perl. Can someone help explain the severity of the following Perl 5.8.4 build error message? ==================================================...
2
by: Glenn | last post by:
Hi, I'm using cygwin and am trying to install DBI-mSQL and am getting errors on make .. any idea how to fix this (TIA): cpan> install DBD::mSQL Running install for module DBD::mSQL Running...
9
by: Joel Rodrigues | last post by:
Hi, I get the following error when I run make on Mac OS X v 10.1.5 Any ideas ? ---------------------------------------------------------- ar: illegal option -- s usage: ar -d archive file ......
8
by: Seeker | last post by:
Hello, In using Solaris Pro Compiler to compile Pro*C code. I am getting this error: make: Fatal error in reader: parser_proc_online.mk, line 26: Badly formed macro assignment Based on other...
28
by: Steven Bethard | last post by:
Ok, I finally have a PEP number. Here's the most updated version of the "make" statement PEP. I'll be posting it shortly to python-dev. Thanks again for the previous discussion and suggestions!...
7
by: Steven Bethard | last post by:
I've updated PEP 359 with a bunch of the recent suggestions. The patch is available at: http://bugs.python.org/1472459 and I've pasted the full text below. I've tried to be more explicit about...
10
by: Johs | last post by:
I have a source file called project.c. In the same folder I have a Makefile containing: CC=gcc CFLAGS=-g project: project.c $(CC) $(CFLAGS) project.c -o project
4
by: jalqadir | last post by:
Now that I am trying to install Debian from a CD, I found that the network card was not supported, I read that some dude had found a driver for the NIC in a MSI-M662 laptot, I myself don't know...
0
by: DolphinDB | last post by:
Tired of spending countless mintues downsampling your data? Look no further! In this article, you’ll learn how to efficiently downsample 6.48 billion high-frequency records to 61 million...
0
by: ryjfgjl | last post by:
ExcelToDatabase: batch import excel into database automatically...
1
isladogs
by: isladogs | last post by:
The next Access Europe meeting will be on Wednesday 6 Mar 2024 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM). In this month's session, we are pleased to welcome back...
0
by: jfyes | last post by:
As a hardware engineer, after seeing that CEIWEI recently released a new tool for Modbus RTU Over TCP/UDP filtering and monitoring, I actively went to its official website to take a look. It turned...
0
by: ArrayDB | last post by:
The error message I've encountered is; ERROR:root:Error generating model response: exception: access violation writing 0x0000000000005140, which seems to be indicative of an access violation...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
1
by: Shællîpôpï 09 | last post by:
If u are using a keypad phone, how do u turn on JavaScript, to access features like WhatsApp, Facebook, Instagram....
0
by: af34tf | last post by:
Hi Guys, I have a domain whose name is BytesLimited.com, and I want to sell it. Does anyone know about platforms that allow me to list my domain in auction for free. Thank you
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 3 Apr 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome former...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.