Need assistance getting policy agent to work.

Hi,
We have the following setup
Windows 2003 Server 64-bit OS
IIS6.0 installed and working on this server.
We just Installed a Policy agent for windows
Policy agent 2.2 for IIS6.0 on Windows 2003
When we try to access the website, we receive the following error pop-up on the server machine.
"IIS Worker process has encountered a problem and needed to close."
"IIS worker process
Error Signature:
szAppName: w3wp.exe   szAppVer: 6.0.3790.1830
szModName: amiis6.dll 
szModVer : 0.0.0.0     offset : 000550aa"We have made sure that the web application is running on its own application pool.
Could this be a problem because of the fact that this is a 64-bit platform we are dealing with?
During installation we had to put the msvcp70.dll and msvcr70.dll files into the windows/SysWOW64 folder instead of the windows/system32 folder this ensured flawless installation.
We could use any help on resolving this issue.
Anyone else face this problem before?

I dont think so but the thing is that if you put any 32 bit DLL's in the
windows/SysWOW32
folder windows 2003 x64 will use them as 32 bit DLL's thats the emulator folder.
Anyways we kind of got the feeling that the problem would be with the
amiis6.dll
which was mentioned in the error.
Have you faced this kind of situatioon before? Or could you suggest any possible solutions.

Similar Messages

  • I need assistance getting Creative Cloud to work. I log in, but no programs appear in box

    I pay monthly for Creative Cloud. I log in the program and the box appears, but no apps. I try opening the other programs and it is asking me to register them with a code. Any assistance would be appreciated.

    BLANK Cloud Screen http://forums.adobe.com/message/5484303 may help
    -and step by step http://forums.adobe.com/thread/1440508?tstart=0
    -and http://helpx.adobe.com/creative-cloud/kb/blank-white-screen-ccp.html
    or
    A chat session where an agent may remotely look inside your computer may help
    Creative Cloud chat support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html

  • Need to get the overtime hours worked for Report

    Dear Experts,
    We have configured Overtime for client and it is working fine.
    But for custom report development we need to get the overtime hours worked.
    We have searched in B2 cluster and not able to identify exact overtime table.
    Request your suggestionsu2026u2026..

    Hi,
    after time elavualtion use t code PT66,  in this t.code double click on the each month(period) then you can get the internal table like ZES, SALDO, ZKO. again double click on the each internal table, you can get the information through the time types.  Like , now you want the overtime hours, 0903, 0904 with this time types you can get the each employee no. of. overtime hours.
    ZL, ZES, SALDO, TIP entries are internal table , you could not get any results from this table with using se11, se16.
    With PT_BAL00 with this report also we can get the overtime hours with the help of time events.
    Good luck
    Devi

  • Uninstall policy agent not working

    I am attempting to uninstall the policy agent for SJS Web Server 6.1 on Solaris. (logged on as root, using a telnet session)
    When I execute the ./uninstall_agent -nodisplay command I am getting a java exception (see below).
    Any ideas on how I can work around this issue; I need to do the uninstall so I can install a new vrsion with a patch.
    Thanks
    Exception in thread "Thread-0" java.awt.HeadlessException:
    No X11 DISPLAY variable was set, but this program performed an operation which requires it.
    at java.awt.GraphicsEnvironment.checkHeadless(GraphicsEnvironment.java:159)
    at java.awt.ScrollPane.<init>(ScrollPane.java:183)
    at java.awt.ScrollPane.<init>(ScrollPane.java:170)
    at com.iplanet.install.panels.common.VerifyPanel.run(VerifyPanel.java:283)
    at com.iplanet.install.panels.common.VerifyPanel.beginDisplay(VerifyPanel.java:235)
    at com.sun.wizards.core.IteratorLayout.setCurrentLeaf(IteratorLayout.java:580)
    at com.sun.wizards.core.IteratorLayout.next(IteratorLayout.java:783)
    at com.sun.wizards.core.WizardTreeManager.nextButtonPressed(WizardTreeManager.java:1198)
    at com.sun.wizards.core.CommandLineConsole.run(CommandLineConsole.java:148)
    at java.lang.Thread.run(Thread.java:595)

    You can use non-GUI based unintallation option, or setup X-Windows (export DISPLAY=1pAddress:0.0) if you prefer GUI.

  • I need help getting this program to work.

    K. I don't pay much attention in my AP Comp Science Class.. but my teacher said if i can get this program to work i get an a for the semester... The program is Metrowerks Codewarrior IDE.. we are running it on windows 98 i think. She said she can't get it to compile.. so i guess it just needs to be able to input simple java programs (i.e. loops, just the regular crap) and compile them and run them...i have no clue what is wrong with it.. it could just need a patch...or we may just be going about it the wrong way...any help would be SUPER appreciated...

    K. I don't pay much attention in my AP Comp Science
    Class.. but my teacher said if i can get this programYou better did.
    to work i get an a for the semester... The program is
    Metrowerks Codewarrior IDE.. we are running it on
    windows 98 i think. She said she can't get it toAtleast be sure of the OS.
    compile.. so i guess it just needs to be able to
    input simple java programs (i.e. loops, just the
    regular crap) and compile them and run them...i have
    no clue what is wrong with it.. it could just need aEven we don't.
    patch...or we may just be going about it the wrong
    way...any help would be SUPER appreciated...Nothing in your thread really speaks of the problem. And since you mentioned homework, there's hardly anyone to be interested in that.
    Regards
    ***Annie***

  • Need help getting this code to work

    I am trying to get this code to work using "if else statment" but it will only do the first part and not do the second part in the else statement. Can anyone help me out? Here is the code:
    var R1 = this.getField("Registration Fees1");
    var R2 = this.getField("Registration Fees2");
    var R3 = this.getField("Registration Fees3");
    var R4 = this.getField("Registration Fees4");
    var R0 = 0
    if (R0 == 0)
      event.value = Math.floor(R1.value);
    else
      event.value = Math.floor(R2.value + R3.value + R4.value);
    I did notice that if I fiddled around this this part:
    if (R0 == 0)
    sometimes I can get the second part to work but not the first. I need it to do either or and this is getting frustrating.
    I might also not even need "var R0 = 0". I put that there for the condition part. If that is what is causing the problem, I can take it out. But then what would the condition be? For this form, the default is 0 and then the calculation follows by user clicking on different prices. The first part is if they want to pay for the full conference and the second part is if they want to pay for either Monday, Tuesday or Wednesday or 2 of the 3 days. Is it possible to get this to work with both parts together? I am still stuck on getting just one or the other working. Any help would be greatly appreciated. Thanks in advance.

    I have posted this on another message board and a user by the name of gkaiseril offered this solution but it hasn't worked either.
    // all four days
    var R1 = this.getField("Registration Fees1").value;
    // Monday
    var R2 = this.getField("Registration Fees2").value;
    // Tuesday
    var R3 = this.getField("Registration Fees3").value;
    // Wednesday
    var R4 = this.getField("Registration Fees4").value;
    var Fee = 0
    event.value = ''; // default value
    if (R1 != 'Off') {
      Fee = Number(R1) + Fee;
    } else {
      if(R2 != 'Off') {
         Fee = Number(Fee) + R2;
      if(R3 != 'Off') {
         Fee += Number(R3);
      if(R4 != 'Off') {
         Fee = Number(R4) + Fee;
    event.value = Fee;

  • Need help getting LCD monitor to work with G4 GeForce4 MX

    I have a G4 that I haven't been using and want to get running again. It has a Nvidia GeForce4 MX video card. I had a huge CRT monitor and want to use a ViewSonic VX1935wm which I got a deal on. When I hook the monitor up it says that the resolution is out of range.
    I can boot with my old monitor and change the connection and then get the LCD to work but only at certain resolutions.
    Do I need to get a new video card, or can I get an adaptor? What kind of card should I get if it needs to be replaced? Or what other kind of monitor would be supported by this video card?
    Here is the webpage for this monitor: http://www.viewsonic.com/products/lcddisplays/xseries/vx1935wm/

    thanks for the links.
    switchResX does something, but it doesn't solve the problem. i can now switch to the "optimum" resolution of 1440x900, 60hz. but when i restart the computer, it still won't work! i continue to get the "out of range" message and have to boot with my crt and then switch cables to do anything. also, the fonts in the finder menus look terrible, you can see the jagged lines.
    displayConfigX won't let me test that high of a resolution without registering the product.. needless to say, i don't want to pay money if the results are going to be the same as with SwitchResX.
    I sent an e-mail to ViewSonic support. Is it typical to have these problems? I am getting more and more confused as I learn more about this.

  • Need to get wireless remote to work with Flash Presentation... HELP!!!

    I know almost nothing about Flash or Powerpoint.  I was given a Flash presentation I need that I'd like to show at meetings using my new wireless remote, but I can't get it to move forward & backward between slides (works fine using arrow keys on the laptop keyboard - Windows XP Pro).  The remote works fine with Powerpoint presentations, so I know the remote is ok.  Is there some setting/command I need to allow my Flash presentation to work with my remote, or do I need a special remote?  I already talked to the remote tech support (Keyspan/TrippLite) and they were totally unfamiliar wirh Flash and simply said that their unit works with Powerpoint as advertised, which was true, but they couldn't help me with Flash presentations.  Can anyone out there help me??  Thanks very much!

    Ok, I'm officially retarded.  I followed the link you gave me, which led to another link about fullscreening (a .zip file) which I decompressed and ran then escaped out of it.  I then looked at the gobbledygook programming language code and I found where it said "trapallkeys" but still haven't the slightest idea how to get my remote to work.  Is there some utility file which I can run which already has this "trapallkeys" function compiled into a nice simple executable that I can run prior to or in conjunction with my Flash presentation which will let my wireless remote controller flip through my slides?  I'm sorry, but please don't expect me to understand what...
    package
    import flash.display.Sprite;
    import flash.display.StageDisplayState;
    import flash.display.StageScaleMode;
    import flash.events.KeyboardEvent;
    import flash.events.MouseEvent;
    import flash.ui.Keyboard;
    import flash.system.fscommand;
    public class FullscreenDemo extends Sprite
    public function FullscreenDemo():void
    fscommand("trapallkeys", "true");
    stage.showDefaultContextMenu = false;
    stage.displayState = StageDisplayState.FULL_SCREEN;
    stage.scaleMode = StageScaleMode.SHOW_ALL;
    stage.addEventListener(KeyboardEvent.KEY_DOWN, onStage_KEY_DOWN);
    quitScreen_mc.visible = false;
    quitScreen_mc.yesBtn_mc.addEventListener(MouseEvent.CLICK, onQuitYes_CLICK);
    quitScreen_mc.noBtn_mc.addEventListener(MouseEvent.CLICK, onQuitNo_CLICK);
    quitScreen_mc.yesBtn_mc.buttonMode = true;
    quitScreen_mc.noBtn_mc.buttonMode = true;
    function onStage_KEY_DOWN(evt:KeyboardEvent):void {
    if (evt.keyCode == Keyboard.ESCAPE) {
    quitScreen_mc.visible = true;
    function onQuitYes_CLICK(evt:MouseEvent):void {
    fscommand("quit");
    function onQuitNo_CLICK(evt:MouseEvent):void {
    quitScreen_mc.visible = false;
    means.  That may be all I need to solve my problem, but it's in a language I just don't understand.  Could you or somebody out there please break this down for a newbie??  Thanks very much!   :-)   :-)

  • I need help getting Mini Bridge to work in PS CS6

    I have already tried deleting the folder and rebooting the computer, I have tried creating a new user account, I have tried uninstalling and reinstalling the entire package and I cannot get Mini Bridge to work at all. It just keeps going to "Mini Bridge waiting for Bridge CS6..." and then never finds anything. I am having this issue on both my Macbook Pro Retina 15 and my MacBook Pro 13 (Early 2011 model). I cannot seem to find any other solutions to this problem online. I also made sure that both Macbooks are fully updated as well as all CS6 software titles. Please help me fix this!
    I also made sure I added it to the exceptions list in the firewall too.

    Moving the discussion to PS forum
    You can also follow the solution suggested in http://helpx.adobe.com/photoshop/kb/error-waiting-for-bridge-cs5.html
    they may help

  • I need help getting my printer to work

    I need help getting my printer to work

    http://h30434.www3.hp.com/t5/Printer-Networking-and-Wireless/Want-Good-Answers-Ask-Good-Questions/td...
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

  • Need help getting guest access to work.

    I have searched and Googled and found very little about enabling temporary guest access on an AEBS.
    What I could find said just type in "the PIN number." OK, what PIN number? It appears that the device seeking access is supposed to supply it somehow and then I type it in while using the Airport Utility. I see no such number on the device. I also tried the "first one to try" method and got nowhere.
    In both cases I was using an iPhone that wanted to use my network. Does this work with iPhones?
    Many thanks,
    -dan

    This thread http://discussions.apple.com/thread.jspa?messageID=4088108&#4088108 looked helpful but I can't get guest access to work for my son's guest using a Dell XP laptop (using Dell wireless management) despite allowing timed access. Neither the PIN nor the first attempt option allowed him on the network without giving him our password.
    It's still not clear if or when this will work. At the very least, the documentation is terrible.

  • Need help getting Apple Extreme to work with Be box

    Anyone able to give an idiots guide to getting Apple Extreme to work with Be Box wireless modem?
    Used to have Orange (Wanadoo) broadband with Livebox wireless router, which i had my AE wired up to and it worked fine. Signed up with Be* and managed to get their wireless router working and communicating with my Mac OK. When i hooked up AE the green light came on but i can't manage to get my Mac to find it.
    Any help would be very appreciated.
    Thanks.

    Hello Orang Hutan. Welcome to the Apple Discussions!
    What is your connectivity goal for the 802.11n AirPort Extreme Base Station (AEBSn)?
    o Connect it directly to the Be Box wireless router via Ethernet, or
    o Connect it wirelessly to the Be Box's wireless network?
    If it is to go the wireless route, do you want the AEBSn to extend the wireless range of the Be Box?

  • I need help getting my Intuos5 to work with Flash CS6

    Can someone give me some help with this? I can't find a single thing on Google that helps me.
    I installed Adobe Flash CS6 recently and I have been using my Intuos5 Large for a long time now with Photoshop CS6. The thing is, with Photoshop, it took forever to get working properly. It turned out that I needed to use the 64-bit version because my 64-bit system and tablet drivers won't work with 32-bit Photoshop.
    Concerning Flash, it's the same problems as Photoshop. It refuses to recognize my tablets functions such as pressure and tilt sensitivity. It also has an annoying lag or lack of response if I do small, quick strokes. I would switch Flash to 64-bit mode, but there isn't one. I can't find the little stroke-like icon in Flash to turn on sensitivity either. I'm really confused. I've tried it with Flash CS5.5 and it's the same thing.
    That's my issue, and I have tried restarting the software and rebooting many times as well. There doesn't seem to be much for options. This all leads to it probably being a 64-bit and 32-bit compatability issue
    I'm running Windows 7 with more than enough power to maintain Flash CS6. It is possible that I may need to update my tablet driver since I did for Photoshop CS6, but it was a pain in the *** getting Photoshop to work until I used 64-bit mode. I may need additional files to mod the software.
    I would really appreciate the help so I can begin to learn animation. It's my passion. Thanks, in advance.
    Here are my relevant specs:
    System Information
    Time of this report: 9/4/2012, 01:32:48
           Machine name: LAPPY_TOPPY
       Operating System: Windows 7 Home Premium 64-bit (6.1, Build 7601) Service Pack 1 (7601.win7sp1_gdr.120503-2030)
               Language: English (Regional Setting: English)
    System Manufacturer: TOSHIBA
           System Model: Satellite L675
                   BIOS: Phoenix SecureCore Version 2.30
              Processor: Intel(R) Core(TM) i5 CPU       M 450  @ 2.40GHz (4 CPUs), ~2.4GHz
                 Memory: 4096MB RAM
    Available OS Memory: 3954MB RAM
              Page File: 2016MB used, 5890MB available
            Windows Dir: C:\windows
        DirectX Version: DirectX 11
    DX Setup Parameters: Not found
       User DPI Setting: Using System DPI
    System DPI Setting: 96 DPI (100 percent)
        DWM DPI Scaling: Disabled
         DxDiag Version: 6.01.7601.17514 64bit Unicode
    Display Devices
              Card name: ATI Mobility Radeon HD 5650
           Manufacturer: ATI Technologies Inc.
              Chip type: ATI display adapter (0x68C1)
               DAC type: Internal DAC(400MHz)
             Device Key: Enum\PCI\VEN_1002&DEV_68C1&SUBSYS_FD001179&REV_00
         Display Memory: 2735 MB
       Dedicated Memory: 1014 MB
          Shared Memory: 1721 MB
           Current Mode: 1600 x 900 (32 bit) (60Hz)
           Monitor Name: Generic PnP Monitor
          Monitor Model: unknown
             Monitor Id: LGD01CA
            Native Mode: 1600 x 900(p) (60.080Hz)
            Output Type: Internal

    If you are moving from an existing Mac to a new Mac the easiest thing to do is connect the two Macs via a Firewire cable and run the Migration assistant. If you are moving files from a Windows platform or you don't want to use the Migration assistant review this article.
    http://docs.info.apple.com/article.html?artnum=300173

  • Need help getting mimeopen -d to work [SOLVED]

    I'm trying to set default applications on a relatively fresh install of Arch.  I know in the past I've been able to just to do something like mimeopen -d file.pdf okular and it has worked, but now I get the following error message
    [ryantr@myhost Downloads]$ mimeopen -d file.pdf okular
    No applications found for mimetype: application/pdf
    [ryantr@myhost Downloads]$ mimeopen -d file.pdf
    No applications found for mimetype: application/pdf
    My guess is that there is a database somewhere that needs updating.  I tried running update-desktop-database but no help.  I know in the past I haven't had to manually edit files for something as common as a pdf.
    What am I missing?  FYI, my DE is Fluxbox.
    Last edited by ryan0270 (2010-12-15 05:23:14)

    Ok, I finally got frustrated enough to look at this again and have it working, although I'm not sure what exactly made it work  Here are the steps I did:
    Looking at the verbose output of update-desktop-database seemed to indicated a directory problem.  The last line says a directory did not exist so I created that...
    [root@user]# update-desktop-database --verbose
    Search path is now: [/usr/share/applications, /usr/local/share/applications]
    File "/usr/share/applications/policytool.desktop" lacks MimeType key
    File "/usr/share/applications/qtconfig.desktop" lacks MimeType key
    File "/usr/share/applications/kde4/Help.desktop" lacks MimeType key
    File "/usr/share/applications/kde4/knetattach.desktop" lacks MimeType key
    File "/usr/share/applications/bssh.desktop" lacks MimeType key
    File "/usr/share/applications/avahi-discover.desktop" lacks MimeType key
    File "/usr/share/applications/dropbox.desktop" lacks MimeType key
    File "/usr/share/applications/jconsole.desktop" lacks MimeType key
    File "/usr/share/applications/bvnc.desktop" lacks MimeType key
    File "/usr/share/applications/pidgin.desktop" lacks MimeType key
    File "/usr/share/applications/assistant.desktop" lacks MimeType key
    Could not create cache file in "/usr/local/share/applications": Error opening directory '/usr/local/share/applications': No such file or directory
    Running update-desktop-database again got rid of the last error message but didn't fix the problem so I manually copied all the Okular related .desktop files from /usr/share/applications/kde4 to /usr/share/applications.  This seemed to fix the problem, although I'm not sure why since the above error message showed problems with other .desktop files inside the kde4 directory so I'm assuming it was scanning correctly.
    But it works now, for whatever reason.

  • Need help getting my MacBook to work a with a D-Link print server

    I'm trying to set up my MacBook Pro running OS X Ver 10.4.11 to print to a HP PSC 2210 All in One printer attached to a D-Link DP-301U print server. I'm actualy a Windows user and set this up and it works fine on the Windows side. My brother in law here is the Mac user and I can't seem to get this going.
    I did install Gimp Print Ver 4.2 and the printer is listed as a support device at their website. But, the printer model doesn't appear in the list when I try and add the IP printer. I did try a LaserJet 4l driver and DeskJet 860c - they don't work. In the print queue, the status says "Network host '<IP address of D-Link> is busy; will retry in 30 seconds."
    Any ideas? D-Link support was horrible, claiming that they don't support Macs - despite what it says on the box.
    Any insights on next steps would be appreciated.
    TIA

    Thanks, Greg. GutenPrint lists it as a supported printer but as I said, I don't see it. I'll try the other site.
    There is some stuff on Macs at teh D-Link site, but its not verry useful. But, re: the queue, name it appears to me that the PS-<servername>-P1 convention comes from a print server with a parallel interface and this is the LPT port name. This is a USB printer and that's why we get the PSC2210 name which I think is the Windows name I gave the Printer. At any rate, the D-Link doc claims that you should leave the queue name blank for a single port server. I beleive that the issue is that this is not a postscript printer which hopefully I can get at the alternate site.
    I am curious why this is different on a Mac than in Windows. If the printer works if direct connected, why does the Mac OS need the special drivers to extend the connection through a network? I'm curious as I mooonlight setting up home networks and I don't want to be a "windows only" solution. Oh, and would this work on the Mac if I had selected an Apple print server or wireless router with printer port built in?
    Thanks again.

Maybe you are looking for

  • Macbook Pro won't work with HP print server n2101?

    Hi all, happy New Year.  I have a new Macbook Pro and I am trying to hook it up to my HP print server n2101 and my HP psc 2210 all-in-one printer.  The mac recognises the server (and vice versa), the mac prints when connected directly to the printer

  • Project "Installer Build Product version" vs exe version

    Hi,  Can someone help me understand why the "Installer Build" in a project has a "product version", which later shows up in the Windows add/remove programs?   I must be missing something because to me it seems very strange that what they call "produc

  • Mass Object Directory Entry assignment

    Hi gurus. I got a bundle of InfoObjects with $TMP package assigned to. Is there any possibility in BI to do mass Object Directory Entry assignment of <my BI package>  instead of $TMP to InfoObjects?

  • Changing the page tab structure in the Dashboard

    Hi, In my project we are integrating the dashboards with the web portal. so we need to have the dashboard page tabs as such in the web portal. Can any one please tell me in which xml file we need to make these changes. Thanks, Kart

  • HR Renewal - MSS My Team

    Hello Experts, From the HR renewal MSS Catalog, under the Actions menu for each employee in My Team, the employee profile does not bring back any data. In the same Actions menu, personal information on behalf of employee is working as expected. What