Server.CreateObject("Access.Application")

Ask a Question related to ASP Components, Design and Development.

  1. #1

    Default Server.CreateObject("Access.Application")

    hi

    i have a big problem. i have an asp file with the following source code....

    ******
    Set r_ = Server.CreateObject ("Access.Application.10")

    s1 = "DoAnything()"

    with r_
    .visible = false
    .OpenCurrentDatabase "D:\SP5\Data\SPIS_LUPK_Vers.mdb"
    sApp = .Eval(s1)
    .CloseCurrentDataBase
    .Quit acQuitSaveNone

    End With

    ******

    my problem is, that the createobject on my iis 15sec. goes....that is not
    normally, or ????

    what is the problem ? IIS settings ? DComCnfg ?? ASP Problem ??? Wrong
    Settings ?

    please help me....

    thanks
    david


    David Di Donato Guest

  2. Similar Questions and Discussions

    1. Server.CreateObject("MSWC.Tools") fails in Windows 2003 server?
      hello all, I hope you all are fine and doing well. I'm finding this error when i do Server.CreateObject("MSWC.Tools") in ASP using interdev. I...
    2. "Server.CreateObject failed" intermittently
      Dear all, I have the same problem as Ed who post his problem in May. Afterward, a kind guy suggest his to call local rather than thru mts. In...
    3. server.createObject("wscript.shell") ... wShell.run ... stopped working...
      I used to be able to run the following ASP code on our corp machine (W2K Server Edition and IIS-5) and successfully send a net-msg to anyone on our...
    4. server.createobject("wscript.shell")
      How about: set wshell = server.createobject("wscript.shell") wshell.run "c:\file.bat " & x set wshell = nothing And then in your batch, use...
    5. Server.CreateObject("ADODB.Stream")
      Does anyone know an alternative to this? I am using a ChiliSoft server and this isn't supported. TIA, Andrew * * * Sent via DevBuilder...
  3. #2

    Default Re: Server.CreateObject("Access.Application")


    "David Di Donato" <david.didonato@webdev.ch> wrote in message
    news:e40PpyqAHHA.4680@TK2MSFTNGP04.phx.gbl...
    > hi
    >
    > i have a big problem. i have an asp file with the following source
    code....
    >
    > ******
    > Set r_ = Server.CreateObject ("Access.Application.10")
    >
    > s1 = "DoAnything()"
    >
    > with r_
    > .visible = false
    > .OpenCurrentDatabase "D:\SP5\Data\SPIS_LUPK_Vers.mdb"
    > sApp = .Eval(s1)
    > .CloseCurrentDataBase
    > .Quit acQuitSaveNone
    >
    > End With
    >
    > ******
    >
    > my problem is, that the createobject on my iis 15sec. goes....that is not
    > normally, or ????
    >
    > what is the problem ? IIS settings ? DComCnfg ?? ASP Problem ??? Wrong
    > Settings ?
    >
    > please help me....
    >
    Access will be expecting to load into a full user environment. However ASP
    barely loads any user context at all (it is after in a service process).
    It's likely that Access has more work to do that it would normally in an
    interactive session.

    Can you not do what you need using ADO?


    > thanks
    > david
    >
    >

    Anthony Jones Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139