[HELP] reference to .net dll from the web ?

T

Tiraman

Hi,

i wrote a dll and i added it to the gac on the development server.

i connect to the project (in the development server) via the front page
extensions

and i would like to add a reference to the dll that i wrote which is not

installed in my local computer.

is it possible or should i keep a copy of the dll in my computer ?
 
T

Tiraman

hi,

i just want to develop in front of the development server and not in my
local machine :)

when i am writing an asp or aspx files i can edit them with the VS &
FrontPage extensions and each save or change
is made on the remote server and not on my computer and i would like to have
the same ability with dll's :)



Brad Simon said:
It depends on what you are trying to do. If you want to write a program
that uses that DLL without installing it on the client, you have more work
to do. You either have to use .NET remoting to access it, or a web service
to expose a usable interface to the DLL.
If you simply want to use that DLL in a client app, and it doesn't matter
where the DLL runs (Server or client), then you should deploy the DLL with
the application.
If you want to do something else, more details as to what you are trying
to achieve would be very helpful.
 
T

Tiraman

O.K, Thanks.

Brad Simon said:
I don't THINK it is possible to do it that way, but if it is, I know that
it would be difficult to accomplish this. It would be much easier to just
do everything on the local machine.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top