Two IIS 6 on 2K3 issues

Ask a Question related to Windows Server, Design and Development.

  1. #1

    Default Two IIS 6 on 2K3 issues

    Hi, all.

    I'm migrating a distributed app from 2K to 2K3, and I'm well into the "last
    10%". The architecture has a web server and a COM component server, using
    MSI to install the registration info onto the web server.

    The process flow is as follows:
    1. client posts an XML request to an ASP page on the web server.
    2. web server validates the XML and stores it in an MSMQ, on the web
    server.
    3. web server creates the beginning-of-process COM component, and invokes
    it.
    4. stuff happens on the COM server (that's been tested by direct
    invocation, and it works)
    5. results are returned to the web server from the call
    6. if the call is successful, the item is removed from the queue, and the
    client gets his answer

    The web server can see and create objects on the COM server when I do it
    logged in as me. However, I'm getting the following two errors:

    1. "The queue does not exist or you do not have sufficient permissions to
    perform the operation. " when I try to open the storage queue

    2. "-2147221164 006~ASP 0196~Cannot launch out of process component~Only
    InProc server components should be used. If you want to use LocalServer
    components, you must set the AspAllowOutOfProcComponents metabase setting.
    Please consult the help file for important considerations." when I try to
    create the beginning-of-process object.

    I've given the iwam_machinename user rights to the queues, and to the COM
    proxies. What am I missing?

    Thanks in advance.

    Brian


    Brian Knopp Guest

  2. Similar Questions and Discussions

    1. CSS Issues
      For our site, we use a custom tag that defines the header and footer for the page. In the header the stylesheets are called. The problem is, in...
    2. IE Issues
      Hello, This is a little off topic but I do need some help. I have had IE 6 for about a month now (just got a new computer in June and have been...
    3. FH 9 issues
      Can you add a border to a photo in FH9 once it's inserted into a project...or do you have to go back to the original in another app (FW 4) and add...
    4. [PHP-DEV] ZTS issues
      From: Michael Sisolak Here's the updated patch for that stuff http://www.ctindustries.net/patches/zts-php5-20031120.diff.txt Also fixes an...
    5. XP PRO has WEP issues
      Kerby Krien wrote: Disable Wireless Zero Configuration service. Enter the WEP passcode and key cyphers manually. Q
  3. #2

    Default Re: Two IIS 6 on 2K3 issues

    I know quite a few security changes have been made between IIS6 and COM on
    Windows Server 2003, though I'm no expert on it.

    FYI: microsoft.public.inetserver.iis is a better place to ask this
    question.

    --
    //David
    IIS
    This posting is provided "AS IS" with no warranties, and confers no rights.
    //
    "Brian Knopp" <bknopp@fnis.com> wrote in message
    news:eWdogBvXEHA.3716@TK2MSFTNGP11.phx.gbl...
    Hi, all.

    I'm migrating a distributed app from 2K to 2K3, and I'm well into the "last
    10%". The architecture has a web server and a COM component server, using
    MSI to install the registration info onto the web server.

    The process flow is as follows:
    1. client posts an XML request to an ASP page on the web server.
    2. web server validates the XML and stores it in an MSMQ, on the web
    server.
    3. web server creates the beginning-of-process COM component, and invokes
    it.
    4. stuff happens on the COM server (that's been tested by direct
    invocation, and it works)
    5. results are returned to the web server from the call
    6. if the call is successful, the item is removed from the queue, and the
    client gets his answer

    The web server can see and create objects on the COM server when I do it
    logged in as me. However, I'm getting the following two errors:

    1. "The queue does not exist or you do not have sufficient permissions to
    perform the operation. " when I try to open the storage queue

    2. "-2147221164 006~ASP 0196~Cannot launch out of process component~Only
    InProc server components should be used. If you want to use LocalServer
    components, you must set the AspAllowOutOfProcComponents metabase setting.
    Please consult the help file for important considerations." when I try to
    create the beginning-of-process object.

    I've given the iwam_machinename user rights to the queues, and to the COM
    proxies. What am I missing?

    Thanks in advance.

    Brian



    David Wang [Msft] 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