Setting user permissions when running commands

Here's a doosey,
Looking to implement a system which will run "commands" being recieved from the network from a bunch of different users. I want the users to have different permissions depending on their username. I'm thinking the backing store as being an LDAP database. (easy update over the network, no using the policy editor, etc).
Anyone got any advice, experience, existing products which do this? I"m looking at java.security.Profile and java.security.AccessController, java.security.ProtectionDomain and rolling my eyes. Kinda difficult.
Am I barking up the wrong/right tree?
Any ideas?
Many thanks
Keith

I think I understand what you're saying, however i'm using the LDAP database to store the user's permissions (exactly like a policy file). So I"m not using LDAP to handle the authentication, just the data.
It's the process of what you call "assigning the secuirty level" that I wanted to do...
I think I've found what I'm looking for - JAAS. First I implent a java.security.Policy (in particular the getPermissions(ProtectionDomain domain) method). Then create my own java.security.Principal (containing the username) and associate that with a java.security.auth.Subject then use the Subject.doAs method.
IN the command code then I do a AccessController.checkPermission(Permission ) method which will throw an exception if the permission is not found.
I think this is it anyway.

Similar Messages

  • Process.Start - getting different output when running command using this method than I am if I run same command in CMD prompt

    Hi
    Creating an application to analyze .dmp files - all working well except this odd issue
    If I open command prompt and enter this command:-
    kd -z C:\Windows\MiniDump\042414-24632-01.dmp -c "!analyze -v"
    Then it works and shows me all the output I need (shown at bottom of post)
    If I run same command in VB.net using following code - then it doesn't give the same output - the bits I need at the end created by the !analyze -v switch don't appear
    Any ideas why it is not seeing the switch correctly - setting a breakpoint and checking contents of startinfo seems to be showing correct cmd line i.e. "kd -z C:\windows\minidump\042414-24632-01.dmp -c "!analyze –v;q""
    Dim myprocess As New Process()
    myprocess.StartInfo.FileName = "C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x86\kd"
    myprocess.StartInfo.Arguments = "-z C:\windows\minidump\042414-24632-01.dmp -c ""!analyze –v;q"""
    myprocess.StartInfo.UseShellExecute = False
    myprocess.StartInfo.RedirectStandardOutput = True
    myprocess.StartInfo.CreateNoWindow = True
    myprocess.Start()
    TextBox1.AppendText(myprocess.StandardOutput.ReadToEnd())
    Output when run from cmd prompt:-
    C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x86>kd -z C:\Windows\MiniDump\042414-24632-01.dmp -c "!analyze -v;q"
    Microsoft (R) Windows Debugger Version 6.3.9600.17298 X86
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Windows\MiniDump\042414-24632-01.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    Symbol search path is: *** Invalid ***
    * Symbol loading may be unreliable without a symbol search path. *
    * Use .symfix to have the debugger choose a symbol path. *
    * After setting your symbol path, use .reload to refresh symbol locations. *
    Executable search path is:
    * Symbols can not be loaded because symbol path is not initialized. *
    * The Symbol Path can be set by: *
    * using the _NT_SYMBOL_PATH environment variable. *
    * using the -y <symbol_path> argument when starting the debugger. *
    * using .sympath and .sympath+ *
    Unable to load image \SystemRoot\system32\ntkrnlpa.exe, Win32 error 0n2
    *** WARNING: Unable to verify timestamp for ntkrnlpa.exe
    *** ERROR: Module load completed but symbols could not be loaded for ntkrnlpa.exe
    Windows 7 Kernel Version 7601 (Service Pack 1) MP (4 procs) Free x86 compatible
    Product: WinNt, suite: TerminalServer SingleUserTS
    Built by: 7601.18205.x86fre.win7sp1_gdr.130708-1532
    Machine Name:
    Kernel base = 0x82e3e000 PsLoadedModuleList = 0x82f874d0
    Debug session time: Thu Apr 24 13:36:18.672 2014 (UTC + 1:00)
    System Uptime: 0 days 0:00:38.703
    * Symbols can not be loaded because symbol path is not initialized. *
    * The Symbol Path can be set by: *
    * using the _NT_SYMBOL_PATH environment variable. *
    * using the -y <symbol_path> argument when starting the debugger. *
    * using .sympath and .sympath+ *
    Unable to load image \SystemRoot\system32\ntkrnlpa.exe, Win32 error 0n2
    *** WARNING: Unable to verify timestamp for ntkrnlpa.exe
    *** ERROR: Module load completed but symbols could not be loaded for ntkrnlpa.exe
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    ************* Symbol Loading Error Summary **************
    Module name Error
    ntkrnlpa The system cannot find the file specified
    You can troubleshoot most symbol related issues by turning on symbol loading diagnostics (!sym noisy) and repeating the
    command that caused symbols to be loaded.
    You should also verify that your symbol search path (.sympath) is correct.
    * Bugcheck Analysis *
    Use !analyze -v to get detailed debugging information.
    BugCheck 50, {afa99150, 0, 88c557d7, 0}
    *** WARNING: Unable to verify timestamp for mssmbios.sys
    *** ERROR: Module load completed but symbols could not be loaded for mssmbios.sys
    *** WARNING: Unable to verify timestamp for mfehidk.sys
    *** ERROR: Module load completed but symbols could not be loaded for mfehidk.sys
    *** WARNING: Unable to verify timestamp for HipShieldK.sys
    *** ERROR: Module load completed but symbols could not be loaded for HipShieldK.sys
    ***** Kernel symbols are WRONG. Please fix symbols to do analysis.
    *** Either you specified an unqualified symbol, or your debugger ***
    *** doesn't have full symbol information. Unqualified symbol ***
    *** resolution is turned off by default. Please either specify a ***
    *** fully qualified symbol module!symbolname, or enable resolution ***
    *** of unqualified symbols by typing ".symopt- 100". Note that ***
    *** enabling unqualified symbol resolution with network symbol ***
    *** server shares in the symbol path may cause the debugger to ***
    *** appear to hang for long periods of time when an incorrect ***
    *** symbol name is typed or the network symbol server is down. ***
    *** For some commands to work properly, your symbol path ***
    *** must point to .pdb files that have full type information. ***
    *** Certain .pdb files (such as the public OS symbols) do not ***
    *** contain the required information. Contact the group that ***
    *** provided you with these symbols if you need this command to ***
    *** work. ***
    *** Type referenced: nt!_KPRCB ***
    *** Either you specified an unqualified symbol, or your debugger ***
    *** doesn't have full symbol information. Unqualified symbol ***
    *** resolution is turned off by default. Please either specify a ***
    *** fully qualified symbol module!symbolname, or enable resolution ***
    *** of unqualified symbols by typing ".symopt- 100". Note that ***
    *** enabling unqualified symbol resolution with network symbol ***
    *** server shares in the symbol path may cause the debugger to ***
    *** appear to hang for long periods of time when an incorrect ***
    *** symbol name is typed or the network symbol server is down. ***
    *** For some commands to work properly, your symbol path ***
    *** must point to .pdb files that have full type information. ***
    *** Certain .pdb files (such as the public OS symbols) do not ***
    *** contain the required information. Contact the group that ***
    *** provided you with these symbols if you need this command to ***
    *** work. ***
    *** Type referenced: nt!_KPRCB ***
    *** Either you specified an unqualified symbol, or your debugger ***
    *** doesn't have full symbol information. Unqualified symbol ***
    *** resolution is turned off by default. Please either specify a ***
    *** fully qualified symbol module!symbolname, or enable resolution ***
    *** of unqualified symbols by typing ".symopt- 100". Note that ***
    *** enabling unqualified symbol resolution with network symbol ***
    *** server shares in the symbol path may cause the debugger to ***
    *** appear to hang for long periods of time when an incorrect ***
    *** symbol name is typed or the network symbol server is down. ***
    *** For some commands to work properly, your symbol path ***
    *** must point to .pdb files that have full type information. ***
    *** Certain .pdb files (such as the public OS symbols) do not ***
    *** contain the required information. Contact the group that ***
    *** provided you with these symbols if you need this command to ***
    *** work. ***
    *** Type referenced: nt!_KPRCB ***
    Probably caused by : mfehidk.sys ( mfehidk+377d7 )
    Followup: MachineOwner
    1: kd> kd: Reading initial command '!analyze -v;q'
    * Bugcheck Analysis *
    PAGE_FAULT_IN_NONPAGED_AREA (50)
    Invalid system memory was referenced. This cannot be protected by try-except,
    it must be protected by a Probe. Typically the address is just plain bad or it
    is pointing at freed memory.
    Arguments:
    Arg1: afa99150, memory referenced.
    Arg2: 00000000, value 0 = read operation, 1 = write operation.
    Arg3: 88c557d7, If non-zero, the instruction address which referenced the bad memory
    address.
    Arg4: 00000000, (reserved)
    Debugging Details:
    ***** Kernel symbols are WRONG. Please fix symbols to do analysis.
    *** Either you specified an unqualified symbol, or your debugger ***
    *** doesn't have full symbol information. Unqualified symbol ***
    *** resolution is turned off by default. Please either specify a ***
    *** fully qualified symbol module!symbolname, or enable resolution ***
    *** of unqualified symbols by typing ".symopt- 100". Note that ***
    *** enabling unqualified symbol resolution with network symbol ***
    *** server shares in the symbol path may cause the debugger to ***
    *** appear to hang for long periods of time when an incorrect ***
    *** symbol name is typed or the network symbol server is down. ***
    *** For some commands to work properly, your symbol path ***
    *** must point to .pdb files that have full type information. ***
    *** Certain .pdb files (such as the public OS symbols) do not ***
    *** contain the required information. Contact the group that ***
    *** provided you with these symbols if you need this command to ***
    *** work. ***
    *** Type referenced: nt!_KPRCB ***
    *** Either you specified an unqualified symbol, or your debugger ***
    *** doesn't have full symbol information. Unqualified symbol ***
    *** resolution is turned off by default. Please either specify a ***
    *** fully qualified symbol module!symbolname, or enable resolution ***
    *** of unqualified symbols by typing ".symopt- 100". Note that ***
    *** enabling unqualified symbol resolution with network symbol ***
    *** server shares in the symbol path may cause the debugger to ***
    *** appear to hang for long periods of time when an incorrect ***
    *** symbol name is typed or the network symbol server is down. ***
    *** For some commands to work properly, your symbol path ***
    *** must point to .pdb files that have full type information. ***
    *** Certain .pdb files (such as the public OS symbols) do not ***
    *** contain the required information. Contact the group that ***
    *** provided you with these symbols if you need this command to ***
    *** work. ***
    *** Type referenced: nt!_KPRCB ***
    *** Either you specified an unqualified symbol, or your debugger ***
    *** doesn't have full symbol information. Unqualified symbol ***
    *** resolution is turned off by default. Please either specify a ***
    *** fully qualified symbol module!symbolname, or enable resolution ***
    *** of unqualified symbols by typing ".symopt- 100". Note that ***
    *** enabling unqualified symbol resolution with network symbol ***
    *** server shares in the symbol path may cause the debugger to ***
    *** appear to hang for long periods of time when an incorrect ***
    *** symbol name is typed or the network symbol server is down. ***
    *** For some commands to work properly, your symbol path ***
    *** must point to .pdb files that have full type information. ***
    *** Certain .pdb files (such as the public OS symbols) do not ***
    *** contain the required information. Contact the group that ***
    *** provided you with these symbols if you need this command to ***
    *** work. ***
    *** Type referenced: nt!_KPRCB ***
    ADDITIONAL_DEBUG_TEXT:
    You can run '.symfix; .reload' to try to fix the symbol path and load symbols.
    MODULE_NAME: mfehidk
    FAULTING_MODULE: 82e3e000 nt
    DEBUG_FLR_IMAGE_TIMESTAMP: 4d2e1e3e
    READ_ADDRESS: GetPointerFromAddress: unable to read from 00000000
    GetPointerFromAddress: unable to read from 00000000
    unable to get nt!MmSpecialPoolStart
    unable to get nt!MmSpecialPoolEnd
    unable to get nt!MmPagedPoolEnd
    unable to get nt!MmNonPagedPoolStart
    unable to get nt!MmSizeOfNonPagedPoolInBytes
    afa99150
    FAULTING_IP:
    mfehidk+377d7
    88c557d7 0fb70c06 movzx ecx,word ptr [esi+eax]
    MM_INTERNAL_CODE: 0
    CUSTOMER_CRASH_COUNT: 1
    DEFAULT_BUCKET_ID: WIN7_DRIVER_FAULT
    BUGCHECK_STR: 0x50
    CURRENT_IRQL: 0
    ANALYSIS_VERSION: 6.3.9600.17298 (debuggers(dbg).141024-1500) x86fre
    LAST_CONTROL_TRANSFER: from 82e7eaa8 to 82ecb879
    STACK_TEXT:
    WARNING: Stack unwind information not available. Following frames may be wrong.
    ad0baf90 82e7eaa8 00000000 afa99150 00000000 nt+0x8d879
    ad0bafa8 88c557d7 badb0d00 00000000 88c4ceb0 nt+0x40aa8
    ad0bb040 88c4f97d 001a99b0 afa91000 00000000 mfehidk+0x377d7
    ad0bb090 88c52b16 00770220 ad0bb0fc 00000010 mfehidk+0x3197d
    ad0bb0bc 98d5fb73 ae770220 ad0bb0fc 00000010 mfehidk+0x34b16
    ad0bb140 98d5fc43 ae738c30 98d6b62a aace7220 HipShieldK+0xb73
    ad0bb168 98d6b882 ad0bb19c 00000000 98d77b44 HipShieldK+0xc43
    ad0bb1b8 98d631a9 00000bd4 0000102c ad0bb208 HipShieldK+0xc882
    ad0bb330 88c47795 00000bd4 0000102c ad0bb401 HipShieldK+0x41a9
    ad0bb400 88c22b57 0000102c ad0bb460 85b3dee0 mfehidk+0x29795
    ad0bb41c 88c232c6 ad0bb430 0000000c 8c4b6ce0 mfehidk+0x4b57
    ad0bb43c 830a5acb adb6b9b8 0000102c ad0bb460 mfehidk+0x52c6
    ad0bb4f4 830adaf8 adb16030 01b6b9b8 ad0bb550 nt+0x267acb
    ad0bbc00 82e7b8c6 038ae710 038ae6ec 02000000 nt+0x26faf8
    ad0bbc34 77a470f4 badb0d00 038ae3dc 00000000 nt+0x3d8c6
    ad0bbc38 badb0d00 038ae3dc 00000000 00000000 0x77a470f4
    ad0bbc3c 038ae3dc 00000000 00000000 00000000 0xbadb0d00
    ad0bbc40 00000000 00000000 00000000 00000000 0x38ae3dc
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    mfehidk+377d7
    88c557d7 0fb70c06 movzx ecx,word ptr [esi+eax]
    SYMBOL_STACK_INDEX: 2
    SYMBOL_NAME: mfehidk+377d7
    FOLLOWUP_NAME: MachineOwner
    IMAGE_NAME: mfehidk.sys
    BUCKET_ID: WRONG_SYMBOLS
    FAILURE_BUCKET_ID: WRONG_SYMBOLS
    ANALYSIS_SOURCE: KM
    FAILURE_ID_HASH_STRING: km:wrong_symbols
    FAILURE_ID_HASH: {70b057e8-2462-896f-28e7-ac72d4d365f8}
    Followup: MachineOwner
    quit:
    output when run in my app:-
    Microsoft (R) Windows Debugger Version 6.3.9600.17298 X86
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Windows\MiniDump\042414-24632-01.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    Symbol search path is: *** Invalid ***
    * Symbol loading may be unreliable without a symbol search path. *
    * Use .symfix to have the debugger choose a symbol path. *
    * After setting your symbol path, use .reload to refresh symbol locations. *
    Executable search path is:
    * Symbols can not be loaded because symbol path is not initialized. *
    * The Symbol Path can be set by: *
    * using the _NT_SYMBOL_PATH environment variable. *
    * using the -y <symbol_path> argument when starting the debugger. *
    * using .sympath and .sympath+ *
    Unable to load image \SystemRoot\system32\ntkrnlpa.exe, Win32 error 0n2
    *** WARNING: Unable to verify timestamp for ntkrnlpa.exe
    *** ERROR: Module load completed but symbols could not be loaded for ntkrnlpa.exe
    Windows 7 Kernel Version 7601 (Service Pack 1) MP (4 procs) Free x86 compatible
    Product: WinNt, suite: TerminalServer SingleUserTS
    Built by: 7601.18205.x86fre.win7sp1_gdr.130708-1532
    Machine Name:
    Kernel base = 0x82e3e000 PsLoadedModuleList = 0x82f874d0
    Debug session time: Thu Apr 24 13:36:18.672 2014 (UTC + 1:00)
    System Uptime: 0 days 0:00:38.703
    * Symbols can not be loaded because symbol path is not initialized. *
    * The Symbol Path can be set by: *
    * using the _NT_SYMBOL_PATH environment variable. *
    * using the -y <symbol_path> argument when starting the debugger. *
    * using .sympath and .sympath+ *
    Unable to load image \SystemRoot\system32\ntkrnlpa.exe, Win32 error 0n2
    *** WARNING: Unable to verify timestamp for ntkrnlpa.exe
    *** ERROR: Module load completed but symbols could not be loaded for ntkrnlpa.exe
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    ************* Symbol Loading Error Summary **************
    Module name Error
    ntkrnlpa The system cannot find the file specified
    You can troubleshoot most symbol related issues by turning on symbol loading diagnostics (!sym noisy) and repeating the
    command that caused symbols to be loaded.
    You should also verify that your symbol search path (.sympath) is correct.
    * Bugcheck Analysis *
    Use !analyze -v to get detailed debugging information.
    BugCheck 50, {afa99150, 0, 88c557d7, 0}
    *** WARNING: Unable to verify timestamp for mssmbios.sys
    *** ERROR: Module load completed but symbols could not be loaded for mssmbios.sys
    *** WARNING: Unable to verify timestamp for mfehidk.sys
    *** ERROR: Module load completed but symbols could not be loaded for mfehidk.sys
    *** WARNING: Unable to verify timestamp for HipShieldK.sys
    *** ERROR: Module load completed but symbols could not be loaded for HipShieldK.sys
    ***** Kernel symbols are WRONG. Please fix symbols to do analysis.
    *** Either you specified an unqualified symbol, or your debugger ***
    *** doesn't have full symbol information. Unqualified symbol ***
    *** resolution is turned off by default. Please either specify a ***
    *** fully qualified symbol module!symbolname, or enable resolution ***
    *** of unqualified symbols by typing ".symopt- 100". Note that ***
    *** enabling unqualified symbol resolution with network symbol ***
    *** server shares in the symbol path may cause the debugger to ***
    *** appear to hang for long periods of time when an incorrect ***
    *** symbol name is typed or the network symbol server is down. ***
    *** For some commands to work properly, your symbol path ***
    *** must point to .pdb files that have full type information. ***
    *** Certain .pdb files (such as the public OS symbols) do not ***
    *** contain the required information. Contact the group that ***
    *** provided you with these symbols if you need this command to ***
    *** work. ***
    *** Type referenced: nt!_KPRCB ***
    *** Either you specified an unqualified symbol, or your debugger ***
    *** doesn't have full symbol information. Unqualified symbol ***
    *** resolution is turned off by default. Please either specify a ***
    *** fully qualified symbol module!symbolname, or enable resolution ***
    *** of unqualified symbols by typing ".symopt- 100". Note that ***
    *** enabling unqualified symbol resolution with network symbol ***
    *** server shares in the symbol path may cause the debugger to ***
    *** appear to hang for long periods of time when an incorrect ***
    *** symbol name is typed or the network symbol server is down. ***
    *** For some commands to work properly, your symbol path ***
    *** must point to .pdb files that have full type information. ***
    *** Certain .pdb files (such as the public OS symbols) do not ***
    *** contain the required information. Contact the group that ***
    *** provided you with these symbols if you need this command to ***
    *** work. ***
    *** Type referenced: nt!_KPRCB ***
    *** Either you specified an unqualified symbol, or your debugger ***
    *** doesn't have full symbol information. Unqualified symbol ***
    *** resolution is turned off by default. Please either specify a ***
    *** fully qualified symbol module!symbolname, or enable resolution ***
    *** of unqualified symbols by typing ".symopt- 100". Note that ***
    *** enabling unqualified symbol resolution with network symbol ***
    *** server shares in the symbol path may cause the debugger to ***
    *** appear to hang for long periods of time when an incorrect ***
    *** symbol name is typed or the network symbol server is down. ***
    *** For some commands to work properly, your symbol path ***
    *** must point to .pdb files that have full type information. ***
    *** Certain .pdb files (such as the public OS symbols) do not ***
    *** contain the required information. Contact the group that ***
    *** provided you with these symbols if you need this command to ***
    *** work. ***
    *** Type referenced: nt!_KPRCB ***
    Probably caused by : mfehidk.sys ( mfehidk+377d7 )
    Followup: MachineOwner
    Darren Rose

    Try it by opening the Cmd prompt as the actual process and passing the Filename and its arguments as the arguments of the Cmd process.  If you notice there is a "-C" before the Filename and Arguments in this example.  The "-C"
    tells the cmd to execute the commands and then close itself.  You can also use a "-K" which tells the cmd to execute the commands and keep itself open.  Being you are not showing the cmd window you don`t want to keep it opened because the
    user can`t close it so, that is why i used "-C".
     I don`t have the program so, you can just experiment to see what it does.  Maybe you should try using "-K" and show the cmd window by commenting out the CreateNoWindow line so you can see what is in the cmd window while testing.
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    Dim filepath As String = """C:\Program Files (x86)\Windows Kits\8.1\Debuggers\x86\kd"""
    Dim args As String = " -z C:\windows\minidump\042414-24632-01.dmp -c ""!analyze –v;q"""
    Dim p As New Process
    With p.StartInfo
    .FileName = "cmd.exe"
    .Arguments = "-c " & filepath & args
    .UseShellExecute = False
    .CreateNoWindow = True
    .RedirectStandardOutput = True
    End With
    p.Start()
    TextBox1.Text = p.StandardOutput.ReadToEnd
    End Sub
    If you say it can`t be done then i`ll try it

  • Failed to accept user input when run report on Web

    I've testing a report with one input parameter. It's a date with default current date. It is done by using SQL 'select sysdate from dual;' has been added to before form trigger. User is allowed to input any date other than the default sysdate before submitting the report. The report works fine when run in report builder, but it's failed to accepted user input date when called through web browser. The report still uses the current date as SQL parameter rather than user input date.
    Can anyone help me to fix this bug?
    The report is develped by Oracle 9i and is saved and run in .rdf format.

    I created a report with a user defined parameter p_date of DATE type. In the layout model, I created a field with p_date as data source. In the before form trigger, I put
    'select sysdate into :p_date from dual;
    I run the report through rwservlet:
    http://host:port/reports/rwservlet?report=datetest.rdf&destype=cache&desformat=html&userid=scott/tiger@orcl&paramform=yes
    In the html parameter form, I change the date from default current date to a future date and that date is shown in the final report.
    So I can't reproduce the bug.
    One thing you can try it to turn on reports server trace file, see what command line is sent to reports server when you submitting the parameter form.
    Thanks,
    -Shaun

  • Secondary monitor on 20"iMac, How to set portrait orientation when running

    How do you set the display rotation in Windows XP?
    I have a secondary monitor (wall-mounted at 90 degrees to normal) that OS X handles just fine (the display preference window provides a rotate function). However, when running Windows XP, the secondary monitor is still available, but I can not find a setting that will rotate the display. I downloaded the Apple Boot Camp ATI driver from AMD's site and the driver version went from 8.39 to 8.43. Still no visible way to rotate the secondary display. I then upgraded Boot Camp to 2.1 after which the ATI driver version went to 8.45. Still no rotate functionality.
    I have tried using the ALT-OPTION-ARROW key with no success (recommended on some obscure Windows XP forum). I also downloaded the Apple Boot Camp Crystal Control Center from the AMD site, but it would not execute after installation (this upon yet another obscure recommendation).
    I also have Windows XP on my MacBook. It uses an NVIDIA driver and it will allow display rotation.
    Any help or advice is appreciated.

    Updating my original post:
    I have resolved the issue. The ATI Catalyst Control Center app (I meant Catalyst, not Crystal in my original post) needs Microsoft's .NET Framework 2.0, which was not included in my original Windows XP installation.
    After downloading and installing the .NET Framework 2.0 package and reinstalling the Catalyst Control Center app, I am now able to rotate the secondary monitor display to the portrait orientation.
    I use the secondary monitor primarily viewing on-line documentation while working with an application on the primary screen. The portrait orientation provides a much better environment for reading documentation as I can view 2+ pages at the same time.

  • Opening xls or doc file with MS Office sets user permissions to no access.

    We have a problem with MS Office and permissions. Basically, opening an MSOffice file removes that user's permissions, not just for that file, but for the entire fileserver. Going back to the server as Admin and resetting the permissions does not take effect immediately, but at some seemingly random point later that same day. The Win XP users also find themselves locked out of using the files sometimes, when one user opens the file the permissions seem to change to give that user ownership and others only Read Only access. I have not experienced this problem, but I do not use MS Office.
    We run a mixed PC and Mac office. We have a Mac miniserver with Snow Leopard Server. Client computers use Win XP, or OS X Leopard 10.5.8. Previously we were running the same clients from a G5 PowerMac running Tiger server. This also had problems with permissions changing themselves after opening MSOffice for Mac 2004 files, but nothing quite as bad as this.
    We also have had problems with MSOffice crashing when for some reason the sharepoints disconnected themselves.
    Any suggestions please? This is the kind of issue that will force a change away from Mac... sadly I will be in a minority if I cannot find a fix.
    TIA
    Message was edited by: Basilisk

    Further Info:
    We appear to have both oplock and Strict Locking enabled, as well as AFP and SMP in operation. Of these two protocols, we have to keep SMB so the PCs can access the files; AFP we could give up if necessary, although that makes connection times slow on the Macs.
    I read that if we enable both AFP and SMB our data could be corrupted, but it didn't say what would happen to file permissions, nor how we could prevent multiple users accessing the same file simultaneously if we switched the locking off.

  • Runtime Error setting the 'Environment' when running with TWO executables

    Hello,
    I'm using XML DB for the very first time, so this problem may be easy to solve.
    I'm currently running a test with TWO separate C# Console executables.
    One executable correctly sets up the Xml Environment, Manager, and Container and simply adds XML documents to the database.
    The second executable simply is supposed to run some XQuery commands. I use the same Environment, Manager, and Container code to do the initialization. However, I'm having trouble with setting up the 'Environment' in this executable. I get the following error:
    DbEnv::open: DB_RUNRECOVERY: Fatal error, run database recovery, exception code = DATABASE_ERROR
    On this line of code:
    Sleepycat.Db.Environment env = new Sleepycat.Db.Environment(envdir, envconf);
    I've only seen code examples that run in a SINGLE executable. I'd really like to access the XML DB from multiple threads/executables, but am having trouble.
    Can there be multiple 'Environments' and 'Managers' for the one XML Db?
    Will provide more data if needed, and thanks for any help!
    Matt

    I guess you addressing this in the wrong forum. I see tags like "sleepycat" and "C#", probably thats why nobody replied.

  • Backend BW roles for users needed when running reports in infoview?

    Hello all,
    We are using SAP BI Queries as the sources of our universes, the user is going to logon to infoview to run report in webi. We have created some access levels in CMC to restrict users, the question is - the user will still need some kind of backend BW roles to have access to the BI query that is developed in BW system right? That way the user can fetch data?
    Let me know
    Thanks in advance.

    Hi,
    If you are using SAP Authentication and Single sign on option in universe connection, the users must have sufficient roles to access SAP BW database.
    if not, the only user login which you create during connection creation having roles to access to BW database is enough. In this case, the user can login to Infoview using any user and can access the report if he has priveleges to the report.
    Hope this helps!

  • Hide user/pwd when  running sqlplus job via HOST cmd in oracle forms

    I have a oracle procedure that returns the run_command string. Ex . ‘sqlplus ui/pwd @report.sql’. The run_command string returned by the procedure is run via the HOST command in oracle Forms.
    HOST(run_command) submits the job but it exposes the ui and pa that is used in the run_command string. On UNIX, if I do ps –ef | grep sqlplus after the job is submitted by the HOST command, I can see the ui/pwd in the run_command.
    How can I submit the job via HOST command without exposing the ui/pwd ?
    Thanks
    GP

    Of course, the Operating System Authenticated account method should only be used if you are running this job on the machine with that's running the Oracle instance. You absolutely do not want to turn on remote authentication. If you're not on the same machine, I would suggest you put the credentials in a file and secure it with filesystem privileges. I generally use a single generic script initiator that logs on and then runs some other script specified on the command line. Something like ...
    username/password
    @&1Note: the extra "--/--" lines ensure that the script fails with invalid login if the credentials are wrong but they get interpreted as comments if the logon succeeds.

  • JAVA_HOME not set when running a task via CRON

    On my Solaris 11 server I have created an entry in the root user CRON tab to launch a groovy based application every weekend. The application runs fine under a non-root user. When run by CRON however, the following error message gets emited:
    groovy: JAVA_HOME not set and cannot find javac to deduce location, please set JAVA_HOME
    Which is weird, as I have the following lines at the end of my /etc/profile file:
    JAVA_HOME=/usr/jdk/instances/jdk1.7.0
    export JAVA_HOME
    GROOVY_HOME=/usr/local/bin/groovy-2.1.3
    export GROOVY_HOME
    PATH=${PATH}:${GROOVY_HOME}/bin:${JAVA_HOME}/bin
    export PATH
    Please advice me where to look for the cause of this problem.
    Thank you in advance,
    Dusan

    I have the following command
          /usr/local/bin/groovy-2.1.3/bin/groovy /usr/local/bin/backup/prune_old_backups.groovy
    How do I add the JAVA_HOME variable into it?
    Thank you,
    Dusan

  • How to run tests in Firefox when running script using runScript.bat

    I am trying to run OATS script from commandline without opening Openscript IDE(eclipse). I use the following command to execute my script:
    runScript "<scriptpath>/<scriptName>.jwg"The script starts to execute and launches IE. I wanted to run my test on Firefox but it always launches IE even if Firefox is my default browser.
    If I run my script from Openscript IDE it honours the Browser settings in View > OpenScript preferences... OpenScript > General > Browsers. When running thorugh cmd line, these settings are not taken into account as Eclipse preferences settings are applicable only for the workspace selected for the IDE.
    Any thought on how to set these preferences when running scripts using runScript.bat file?
    Thanks,
    Manish Khatre

    Hello
    You need to pass the value/parameters (preferences) to the command line as documented in the OpenScriptUserGuide.pdf.
    Something like
    -browser.type type
    Specify the browser type to use for script playback
    where type is one of the following (use exact case
    and no spaces):
    ■ InternetExplorer
    ■ Firefox
    The default is InternetExplorer
    JB

  • [solved] hook to run commands when user logs in? (before bash profile)

    Is there any way to run commands when a user logs in but before the bash profile is sourced?
    For example, I have a user account with a home directory on /tmp. When the user logs in, the home directory might not exist so there will be no .bash_profile to source. I want to run a script to create the directory if necessary and copy some files into it. How can that be done?
    I thought of putting something in /etc/profile or /etc/profile.d/, but I would like to run something before the user's shell and environment become active.
    I can use /etc/rc.local to do what I want, but I would prefer a hook to ensure that everything is set right when the user logs in.
    Any ideas?
    *edit*
    Solution
    In my case, I found that I could write my own shell script and set it as a login shell. In the script, I can configure everything I need before launching the interactive shell, then clean up anything after it exits.
    Last edited by Xyne (2011-12-10 19:34:07)

    Thanks, dammannj. PAM could probably do what I need but I think I have found a simpler solution (see original post).

  • Sudo command hangs when run as winbind user

    Hi,
    It even hangs when running:
    $ sudo
    or
    $sudo -V
    So nothing to do with my sudo config - have reverted /etc/sudoers back to default. Even control-c does not work and the process needs to be killed as root, using another session.
    The command works fine when ran as a local user. It is only when running as a winbind user that there's a problem.
    Any help on what tools can be used to find out what's happening while the command is hanging would be much appreciated. Or even better any ideas on how to stop it hanging would be even better!
    Can provide any config files if they help anyone.......
    Many Thanks,
    Richard

    *** UPDATE ***
    It seems the version of sudo (v1.8*) supplied with Solaris 11 is not compatible with Winbind users.
    Workaround:
    Compile version 1.7* to /usr/local/bin and add this to the beginning of $PATH

  • User kicked out of PS when running Query to excel

    Hi,
    Just to note, I am actually a developer and doesnt know a thing about configurations or any PS tech admin knowledge regarding installation and setting up Psoft. So please be patient with me since im starting this just now and only starting to gain knowledge in this are.
    Just to give an overview, currently we are supporting US psoft and I am located in malaysia tranferring the servers here at our end. we are on UAT right now and having trouble with the psoft application itself and from I see it, it can be caused by how it is installed. Because the US env (server in US) is working perfectly but the M'sia env are having errors (server in M'sia). Just to remind that its the same env only installed in different location, you can call it parallel testing if you like.
    Now with the problem, when the user tries to run a query in the Query manager and doing "run to excel", the user gets kicked out of PeopleSoft online and giving just the literal "Error" message. And when I look at the PSQRYSRV dump file (just learned it yesterday), can't really understand what it says. I try googling it but to no success.
    Does anybody can help me with this? TIA!
    DUMP FILE:
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ==================================================================================
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) PSQRYSRV crash dump at 2009-06-08 17.06.06.000000
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Database=HRUS/ORACLE; ToolsRel=8.44.10; AppsRel=HRMS 8.80.01.000/SP 1; AppServer=//psfapp01:7000; Server=PSQRYSRV; Domain=HR8PRD1; Platform=HP/UX
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Exception Code=0000000b; SIGSEGV: Segmentation violation
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Call stack:
    = begin trace Tue Jun 9 06:06:30 GMT 2009 on 10159
    == process 10159
    -- process 10159
    == dumps
    going to run gdb -nx batch command 10310/commands /proc/10159/exe 10159
    /opt/psoft/hr8prd/bin/psprocinfo[7]: gdb: not found.
    === gdb 10159
    --- gdb 10159
    -- dumps
    - end trace Tue Jun 9 06:06:30 GMT 2009 on 10159
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Customized definitions --
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RDM(JOB/ENG)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RDM(JOB_LBR_GBL_SBR/ENG)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RDM(Z_CC_TBL_LANG/ENG)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RDM(Z_COST_CNTR_TBL/ENG)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RDM(Z_EMPLOYEES/ENG)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RDM(Z_EMPLOYEES_SBR/ENG)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RDM(Z_JOB/ENG)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RDM(Z_LOC_ORG_TBL/ENG)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RDM Definitions: Total=47 Customized=8 In-Use=0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) QDM( /TO_US_EXPRESS/ENG)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) QDM Definitions: Total=1 Customized=1 In-Use=0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) MNDM Definitions: Total=1 Customized=0 In-Use=0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) SRM Definitions: Total=1 Customized=0 In-Use=0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) CRM Definitions: Total=10 Customized=0 In-Use=0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) SSM Definitions: Total=7 Customized=0 In-Use=1
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) CLM Definitions: Total=1 Customized=0 In-Use=0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) UPM(PSHC)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) UPM Definitions: Total=1 Customized=1 In-Use=0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) URL(PPM_MONITOR/ENG)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) URL Definitions: Total=1 Customized=1 In-Use=0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) PRDM(EMPLOYEE/ENG)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) PRDM Definitions: Total=1 Customized=1 In-Use=0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Request Object
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) HTTPMethod : POST
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Protocol : HTTP/1.1
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Scheme : http
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ServerName : psfapp01.apis.dhl.com
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ServerPort : 8000
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ContentURI : http://psfapp01.apis.dhl.com:8000/psc/hr8prd_2/
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RequestURI : /psc/hr8prd_2/EMPLOYEE/HRMS/q/
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) PathInfo : /hr8prd_2/EMPLOYEE/HRMS/q/
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) QueryString : ICQryName=TO_US_EXPRESS
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) FullURI : http://psfapp01.apis.dhl.com:8000/psc/hr8prd_2/EMPLOYEE/HRMS/q/
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RelativeURL : True
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) LogoutURL : http://psfapp01.apis.dhl.com:8000/psp/hr8prd_2/EMPLOYEE/HRMS/?cmd=logout
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ResetTimeoutURL : http://psfapp01.apis.dhl.com:8000/psp/hr8prd_2/EMPLOYEE/HRMS/?cmd=resettimeout
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) BrowserType : IE
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) BrowserVersion : 6.0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) BrowserPlatform : WINNT
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ExpireMeta : <script language='JavaScript'>
    var totalTimeoutMilliseconds = 3600000;
    var warningTimeoutMilliseconds = 3300000;
    var timeOutURL = 'http://psfapp01.apis.dhl.com:8000/psp/hr8prd_2/EMPLOYEE/HRMS/?cmd=expire';
    var timeoutWarningPageURL = 'http://psfapp01.apis.dhl.com:8000/psc/hr8prd_2/EMPLOYEE/HRMS/s/WEBLIB_TIMEOUT.PT_TIMEOUTWARNING.FieldFormula.IScript_TIMEOUTWARNING';
    </script>
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ByPassSignOn : False
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Timeout : 3600
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) WarningTimeout : 3300
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) AuthTokenDomain : .dhl.com
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RemoteHost : 7.248.9.197
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RemoteAddr : 7.248.9.197
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) CharSet : UTF-8
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) GetHelpURL(...) : http://psfapp01.apis.dhl.com:8050/PSOL/htmldoc/f1search.htm?ContextID=%CONTEXT_ID%&LangCD=%LANG_CD%
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) GetContentBody() :
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) GetHeader(...) :
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) User-Agent : Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322; .NET CLR 2.0.50727)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Referer : http://psfapp01.apis.dhl.com:8000/psc/hr8prd_2/EMPLOYEE/HRMS/q/?ICAction=ICQryNameExcelURL=PUBLIC.TO_US_EXPRESS
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Host : psfapp01.apis.dhl.com:8000
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Cookie : psfapp01-apis-dhl-com-8000-PORTAL-PSJSESSIONID=KtZGKjVkQvcJ7dtMnfZ2GXF21GTMy2W2!1326557168; http%3a%2f%2fpsfapp01.apis.dhl.com%3a8000%2fpsp%2fhr8prd%2femployee%2fhrms%2frefresh=list:|||; PS_LOGINLIST=http://psfapp01.apis.dhl.com:8000/hr8prd; SignOnDefault=PSHC; PS_TOKENEXPIRE=8_Jun_2009_23:06:10_GMT; ExpirePage=http://psfapp01.apis.dhl.com:8000/psp/hr8prd/; PS_TOKEN=AAAApAECAwQAAQAAAAACvAAAAAAAAAAsAARTaGRyAgBObwgAOAAuADEAMBSPf+/Tr6qoaRnDIxX4SMQ3HizizwAAAGQABVNkYXRhWHicJYpdCkBAGEXPIFmAbZCR32fEk6Ykj7MEG7Q41/hunU73fsBtojjBoIuejxmOg40pZWFnzZnVXFLPqcVrcw01lTJSiF3gIFqllLeipQ/+5/t/AY0yC8k=; HPTabName=DEFAULT
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Content-Type : application/x-www-form-urlencoded
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Content-Length : 219
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Connection : Keep-Alive
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Cache-Control : no-cache
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Accept-Language : en-us
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Accept-Encoding : gzip, deflate
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Accept : image/gif, image/x-xbitmap, image/jpeg, image/pjpeg, application/vnd.ms-excel, application/vnd.ms-powerpoint, application/msword, application/x-shockwave-flash, */*
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) GetCookie(...) :
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) SignOnDefault : PSHC
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) PS_TOKENEXPIRE : 8_Jun_2009_23:06:10_GMT
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) PS_TOKEN : AAAApAECAwQAAQAAAAACvAAAAAAAAAAsAARTaGRyAgBObwgAOAAuADEAMBSPf+/Tr6qoaRnDIxX4SMQ3HizizwAAAGQABVNkYXRhWHicJYpdCkBAGEXPIFmAbZCR32fEk6Ykj7MEG7Q41/hunU73fsBtojjBoIuejxmOg40pZWFnzZnVXFLPqcVrcw01lTJSiF3gIFqllLeipQ/+5/t/AY0yC8k=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) PS_LOGINLIST : http://psfapp01.apis.dhl.com:8000/hr8prd
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) psfapp01-apis-dhl-com-8000-PORTAL-PSJSESSIONID: KtZGKjVkQvcJ7dtMnfZ2GXF21GTMy2W2!1326557168
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) http%3a%2f%2fpsfapp01.apis.dhl.com%3a8000%2fpsp%2fhr8prd%2femployee%2fhrms%2frefresh: list:|||
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) HPTabName : DEFAULT
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ExpirePage : http://psfapp01.apis.dhl.com:8000/psp/hr8prd/
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) GetParameter(...) :
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) PSHome : hr8prd_2
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Portal : EMPLOYEE
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Node : HRMS
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) InputKeys_bind2 : 06/08/2009
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) InputKeys_bind1 : 06/07/2009
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ICYPos : 0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ICXPos : 0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ICType : Query
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ICStateNum : 1
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ICResubmit : 0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ICQryName : TO_US_EXPRESS
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ICFocus : InputKeys_bind2$prompt
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ICElementNum : 2
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ICChanged : -1
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ICAction : #ICQryDownloadExcelFrmPrompt
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ContentType : q
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ContentID :
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) PeopleCode Globals
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &global_DN : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &bConfigRead : Bool=False
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &bDynamicRole : Bool=False
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &host : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &cnctDN : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &cnctPWD : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &dirProd : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &scope : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &base : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &authAttr : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &defaultUserId : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &authMethod : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &sslYN : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &anonYN : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &authNMap : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &g_strDefaultTab : Str=DEFAULT
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &g_sTraceName : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &g_sFilter : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &g_sCommand : Str=
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &menuNum : Str=46
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) &gQueryRec : Record=NULL
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Current Service=ICQuery; Return code=0; Ok=True
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Component=; Market=; Page=xyzzy; Process flags=700431c0; Mode=0081
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Build Keylist
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Current Keylist
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Begin Component
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Page xyzzy IdxCount=2
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Field InputKeys.bind1 type=editbox occ=(1,1,1) use=0000 rect=(0,0,0,0)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) IdxList: scrl=(-1,-1,-1) rec=0 field=0
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Field InputKeys.bind2 type=editbox occ=(1,1,1) use=0000 rect=(0,0,0,0)
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) IdxList: scrl=(-1,-1,-1) rec=0 field=1
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) End Component
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Begin Scrolls
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Begin level 0[row 0] occcnt=1 activecnt=1 hiddencnt=0 scrlcnt=0 flags=0000 nrec=1
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) RecordsEventSet 00000000 SubscrollsEventSet 00000000
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Rec InputKeys (recdefn 00f5a8e0) keyrec=-1 keyfield=-1
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) EventSet 00000000
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) Row 0 at 00ecef58.
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) CRecBuf InputKeys(00f423f8) fields=2 changed new lvl0 needsinit
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) bind1(001fc498)='2009-06-07'; changed (was '') updated key used
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) bind2(001fc4e4)='2009-06-08'; changed (was '') updated key used
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) End level 0[row 0]
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) End Scrolls
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) User ID=PSHC; Browser=IE/6.0; OpSys=WINNT;
    PSQRYSRV.10159 [06/09/09 06:06:30 [email protected] (IE 6.0; WINNT) ICQuery](0) ==================================================================================
    }

    Hi,
    We have the same issue as yours.
    Did you solve it already?
    If yes, would you mind to share your soloution to us?
    Thanks,
    Richard

  • Permissions will not set, even after using terminal commands?

    Hey,
    I found a thread on here for using the terminal to type in commands for the user permissions and for the PSIX permissions on Leopard (10.5) server.  These commands are supposed to clean the server of all underlying(hidden) permissions that you cant see and then you are supposed to be able to then set the permissions again and finally, to hit "Propagate Permissions" so that all the permissions set for the shared volume then get farmed out to all sub files/folders.  This did not work when I tried it in the terminal, it said "Command not found" even after I typed in the admin password.  Is there anyone out there who can tell me the actual way to fix the old permissions and get new ones set?
    The story is:  We had an old server on a G4 when i first took control of the server, I took the shared hard drive out of the G4 and inserted it into a G5 and started using it with the leopard server.  the permissions did not really need to be set on that volume because they had carried over from the last time they were shared.  But we recently just got a Drobo unit for our server and I recently transferred all the shared files and folders over to the new volume, but ever since I cant get the permissions to farm out to all the stations, it shows me that its done on the server.  But when I go to access the files I am able to delete faculty folders where I had set the permissions to "read only" so I am wondering if there is a streamlined way of going about this or if I should just start from scratch and use all brand new HDD's?
    Please Help!

    Hi ..
    Try the tips mentioned here > Mini-tutorial: Force-deleting stubborn or problematic files in Mac OS X

  • Running Commands against a list of users in a csv (O365)

    Hi All, I posted this in the
    O365 forum but was advised to post here instead.
    I am trying to run some post deployment scripts on a list of users who have been migrated to O365. The list is from a csv.
    Here is what I currently have, at the moment I am just trying to run Get Commands and then once I am happy I will when run the deployment Set commands.
    So I have a csv file that loks like this:
    UserPrincipleName
    [email protected]
    [email protected]
    I have tried running the following, but the results I get show me results for every mailbox on our O365 organisation, not the 2 in my csv file.
    Just so you know I can confirm  I am connected to the O365 Powershell session:
    Import-CSV "C:\emails.csv" | ForEach-Object {Get-Mailbox | fl}
    I have also tried this and I get the same results:
    $list = Import-Csv "C:\emails.csv"
    foreach($entry in $list) {
    $User = $entry.User
    Get-Mailbox -id $User
    Any help would be greatly appreciated.

    Hi All, I posted this in the
    O365 forum but was advised to post here instead.
    I am trying to run some post deployment scripts on a list of users who have been migrated to O365. The list is from a csv.
    Here is what I currently have, at the moment I am just trying to run Get Commands and then once I am happy I will when run the deployment Set commands.
    So I have a csv file that loks like this:
    UserPrincipleName
    [email protected]
    [email protected]
    I have tried running the following, but the results I get show me results for every mailbox on our O365 organisation, not the 2 in my csv file.
    Just so you know I can confirm  I am connected to the O365 Powershell session:
    Import-CSV "C:\emails.csv" | ForEach-Object {Get-Mailbox | fl}
    I have also tried this and I get the same results:
    $list = Import-Csv "C:\emails.csv"
    foreach($entry in $list) {
    $User = $entry.User
    Get-Mailbox -id $User
    Any help would be greatly appreciated.
    Import-CSV
    "C:\emails.csv" |
    ForEach-Object
    {Get-Mailbox $_| fl}

Maybe you are looking for

  • BED value not appearing in J1IIN

    Hi Experts, Currently I am into an implementation project and I am configuring CIN.My tax procedure is TAXINN. But after doing all the configuration, while doing J1IIN, BED value in invoice is not appearing in BED field (J1IIN Screen). However Edu Ce

  • Clean install and time machine

    I'd like to reformat my hard drive and do a clean install of leopard. I've backed up my drive with time machine and I'm wondering if it is possible to recover all my third party applications etc etc including passwords and settings without having to

  • How to stop the thread?

    Hi, How to stop the thread in java. This is my program. import java.net.InetAddress; public class ThreadPing extends Thread {      ThreadPing(String pingIP)           super(pingIP);           start();      public void run()           try           St

  • Maximum No. of Partitions in a Table?

    Hi, What is the Maximum no.of partitions in a table? Best Regards, Naresh Kumar C.

  • Is there a new MacBook Air being released late August?

    I am reading on MacRumors and other sites that there may already be new MBA shipping by late August with "new chassis design" and "new chipsets." Is there any truth to this? If so I may wait, but I can get a fairly good deal at Best Buy on a latest g