DLL Shared on Network

cdonke

New member
Joined
Aug 14, 2008
Messages
2
Programming Experience
3-5
I need to develop a COM to use with VB6...

The DLL will receive the data, populate a dataset, and write a XML.

The only thing, is that i must be shared on network... And I really don't want to have to registrer it computer by computer...

I got this 'header" on my file:

Imports System.Runtime.InteropServices
Imports System.Data
Imports System.IO


Namespace Armas


<InterfaceType(ComInterfaceType.InterfaceIsIDispatch)> _
Public Interface IArmas
Property Sinarm() As String
Property Registro() As String
Property Caminho() As String
Sub InserirDados()
Sub EscreveXML()
End Interface


<ClassInterface(ClassInterfaceType.None)> _
Public Class Armas
Implements IArmas

(...)

Is it wrong? Is it possible?? Any URL, at least, to where I can find it...

tks in advance,
Christiano.
 
There is no way to register it only on ther server, is there?

Locally, the COM is working just fine...



what do you mean with managed library?? Is it the registered ones??

How do I configure the client security? caspol??


tks...
christiano.
 
There is no way to register it only on ther server, is there?
No.
what do you mean with managed library??
.Net is managed, not .Net (COM) is not managed, at least not .Net managed.
How do I configure the client security? caspol??
Yes. Not necessary for COM strangely, though CLR still runs it.
 
Back
Top