Results 1 to 9 of 9

Thread: DCOM problem - "exporter not found" - help!!

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Feb 2001
    Location
    LoCal
    Posts
    280
    I've got the datacentric portion of my application as an ActiveX EXE that I have installed and registered on a server in our network.

    I have installed the 'client' portion of the application on two client machines: one physically on the network and the other connected via PPTP VPN (W2K connecting to NT4).

    One the local machine (physically connected to the network) the client application runs fine. It is able to find the server and interacts with it via DCOM the way it's supposed to.

    The 'remote' client, however, runs into problems. When the client tries to access the server it kicks off the application (I've verified this portion). However, it just kind of sits there and eventually I get a message that says 'Automation Error: the object exporter specified was not found'.

    According to MSDN I'm supposed to make sure my client configuration references the server properly (ie. <server.domain>) which it does.

    Any ideas!!! I'm stumped.
    Achichincle

    VB6 (VSEE SP5, W2KPro)
    ASP
    HTML

  2. #2
    Is DCOM installed on the VPN Client?

  3. #3

    Thread Starter
    Hyperactive Member
    Join Date
    Feb 2001
    Location
    LoCal
    Posts
    280
    Yep. DCOM is installed and enabled on both machines.
    Achichincle

    VB6 (VSEE SP5, W2KPro)
    ASP
    HTML

  4. #4
    Do you know the line of code that the app is crappping out on?

  5. #5

    Thread Starter
    Hyperactive Member
    Join Date
    Feb 2001
    Location
    LoCal
    Posts
    280
    Chipcrap,

    No I don't. I don't think I can run the app from the IDE since the components need to be registered to work with DCOM and point at the right server. I don't know how to identify where the app is err'ing out.

    Any suggestions?

    Thanks.
    Achichincle

    VB6 (VSEE SP5, W2KPro)
    ASP
    HTML

  6. #6

    Thread Starter
    Hyperactive Member
    Join Date
    Feb 2001
    Location
    LoCal
    Posts
    280
    ~nudge~
    Achichincle

    VB6 (VSEE SP5, W2KPro)
    ASP
    HTML

  7. #7
    Sorry-The IDE will run fine on your client machine-just install VB and run the source to see what line its crapping on

  8. #8

    Thread Starter
    Hyperactive Member
    Join Date
    Feb 2001
    Location
    LoCal
    Posts
    280
    Chipcrap,

    Thanks. I'm trying that now. BTW I didn't mean to ~nudge~ you, I was just trying to push the post up and see if I got any other responses. Thanks for your help!
    Achichincle

    VB6 (VSEE SP5, W2KPro)
    ASP
    HTML

  9. #9

    Thread Starter
    Hyperactive Member
    Join Date
    Feb 2001
    Location
    LoCal
    Posts
    280
    Well... that didn't work. The program is crapping out when I try to execute a method on a component that is created via DCOM on the server. It apparently creates an instance of the component without any problems, but it's crapping out when it tries to execute a method that loads data into the component.

    Code:
    Dim objAddressTypes as clsTextList
    
    ' this works
    Set objAddressTypes = CreateObject("MyActiveXServer.clsTextList", "RemoteServer")
    
    ' this craps out!
    objAddressTypes.Load "addresstypes"
    I'm gonna add some logging functionality to the server so that I can observe what is happening but.... we'll see how it goes.
    Achichincle

    VB6 (VSEE SP5, W2KPro)
    ASP
    HTML

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width