Resolution of Dependency failed

Hey everyone. I'm getting an error while using Gallio to debug a unit test with vb.net code. The error does not occur when the program I'm trying to test is debugged using SOAPUI to pass the input in, only during unit testing with gallio.
Set Up
System.TypeInitializationException:
The type initializer for 'CP.Adapter.Tests.ServiceIOCSetup' threw an exception. --->
PA.DPW.Practices.CompositeBlock.Module.ModuleLoadException:
Failed to load module from assembly PA.DPW.eCIS.ServiceGateway.Cis, Version=17.0.0.0, Culture=neutral, PublicKeyToken=null. Error was:
Failed to load module from assembly PA.DPW.eCIS.ServiceGateway.Cis, Version=17.0.0.0, Culture=neutral, PublicKeyToken=null. Error was:
Resolution of the dependency failed, type = "PA.DPW.eCIS.ServiceGateway.Cis.CisEventListener", name = "(none)".
Exception occurred while: while resolving.
Exception is: InvalidOperationException - The current type, PA.DPW.eCIS.Root.Core.Interfaces.ILoggingService, is an interface and cannot be constructed. Are you missing a type mapping?
This is the class that the unit test is calling in it's setup section. It starts with the
Shared Sub New()
constructor but throws the error when it tries
loader.Load(container).
Friend Class ServiceIOCSetup
    ' Make sure we cannot create instances of this class.
    Private Sub New()
    End Sub
    Shared Sub New()
        Dim unityContainer As IUnityContainer = New UnityContainer()
        AddExtensions(unityContainer)
        Dim container As ICompositionContainer = New UnityCompositionContainer(unityContainer)
        LoadServices(container)
        LoadModules(container)
        IocContainerHelper.RootContainer = container
    End Sub
    ''' <summary>
    ''' This is the Main Entry point to register types 
    ''' in the container.
    ''' </summary>
    ''' <remarks>        
    '''  This method works as a bootstrapper in kicking off the
    ''' static constructor for the first call. Subsequent calls to this
    ''' method does nothing.
    ''' </remarks>
    Public Shared Sub EnsureServices()
    End Sub
    ''' <summary>
    ''' Method to add extensions to the container
    ''' </summary>
    ''' <param name="container"></param>
    ''' <remarks></remarks>
    Private Shared Sub AddExtensions(ByVal container As IUnityContainer)
        container.AddNewExtension(Of SimpleEventBrokerExtension)()
        container.AddNewExtension(Of Interception)()
    End Sub
    ''' <summary>
    ''' Load the individual Modules
    ''' </summary>
    ''' <remarks></remarks>
    Private Shared Sub LoadModules(ByVal container As ICompositionContainer)
        container.RegisterInstance(GetType(IServiceLoaderService), New ServiceLoaderService())
        Dim loader As New AppModuleLoaderService()
        loader.Load(container)
    End Sub
    ''' <summary>
    ''' Load all the services used by the BWCs and DAO layers
    ''' </summary>
    ''' <remarks></remarks>
    Private Shared Sub LoadServices(ByVal container As ICompositionContainer)
        container.RegisterInstance(Of IValidationService)(New ValidationService())
        container.RegisterInstance(Of ITracingService)(New TracingService)
        'container.RegisterInstance(Of ILoggingService)(New LoggingService())
        'container.RegisterInstance(Of ILoggingService)("AsyncLoggingService", New AsyncLoggingService)
        container.RegisterInstance(Of IExceptionHandler)(New DefaultExceptionHandler)
        container.RegisterInstance(Of IHttpContextLocatorService)(New HttpContextLocatorService())
        container.RegisterInstance(Of IReferenceTableEnumParser)(New PA.DPW.eCIS.Shell.ReferenceTableEnumParser(New PA.DPW.eCIS.Itasca.RefTableUtility.Parsers.ReferenceTableEnumParser()))
        container.RegisterInstance(Of IReferenceTableService)(New ReferenceTableService())
        container.RegisterInstance(Of IOperationContextStorageProvider)(New EnterpriseServicesOperationContextStorageProvider())
        container.RegisterInstance(Of IAuthorizationOperationContextService)(New AuthorizationOperationContextService(container.Resolve(Of IOperationContextStorageProvider)()))
        container.RegisterInstance(Of IOperationContextMessageStorageService)(New OperationContextMessageStorageService(container.Resolve(Of IOperationContextStorageProvider)()))
        container.RegisterInstance(Of IAuthorizationProvider)(New DefaultAuthorizationProvider())
        container.RegisterInstance(Of INavigationService)(container.Resolve(Of WebNavigationService))
        Dim navigationWorkflow As New CommonFramework.Navigator.Runtime.NavigationServices("NAV_DRIVER")
        container.RegisterInstance(Of INavigationPathFactory)(New NavigationPathFactory(navigationWorkflow))
        container.RegisterInstance(Of INavigationWorkflowScheduler)(New NavigationWorkflowScheduler(navigationWorkflow))
        container.RegisterInstance(Of ISecurityContextLocatorService)(New SecurityContextLocatorService(New ConfigurableSecurityContext()))
        container.RegisterInstance(Of ICaseWorkflowScheduler)(New CaseWorkflowScheduler(navigationWorkflow))
        container.RegisterInstance(Of ISiteMapBuilderService)(New SiteMapBuilderService())
        container.RegisterInstance(Of IValidationService)(New ValidationService())
        container.RegisterInstance(Of ITracingService)(New TracingService)
        'container.RegisterInstance(Of ILoggingService)(New LoggingService)
        'container.RegisterInstance(Of ILoggingService)("AsyncLoggingService", New AsyncLoggingService)
        container.RegisterInstance(Of IExceptionHandler)(New DefaultExceptionHandler)
        ' Navigation-related services
        container.RegisterInstance(Of INavigationService)(container.Resolve(Of WebNavigationService))
        ' Reference table-related services
        container.RegisterInstance(Of IReferenceTableService)(New ReferenceTableService())
        container.RegisterInstance(GetType(IReferenceTableEnumParser), New ReferenceTableEnumParser(New PA.DPW.eCIS.Itasca.RefTableUtility.Parsers.ReferenceTableEnumParser()))
        '  container.RegisterInstance(Of ISecurityContextLocatorService)("ConfigurableSecurityContextService", New SecurityContextLocatorService(New ConfigurableSecurityContext()))
        container.RegisterInstance(Of IAuthorizationProvider)(New DefaultAuthorizationProvider())
        'Operation Context related services
        container.RegisterInstance(Of IOperationContextStorageProvider)(New WebOperationContextStorageProvider())
        container.RegisterInstance(Of ICustomCacheStorageProvider)(New CachingApplicationBlockStorageProvider())
        container.RegisterInstance(Of IOperationContextStorageProvider)(New WebOperationContextStorageProvider())
        container.RegisterInstance(Of ICachingResultService)(New UserLevelCachingService(container.Resolve(Of ICustomCacheStorageProvider)()))
    End Sub
Once it is done with all this, when not debugging and failing, it calls a translator class which is meant to run this constructor, but if you don't do all of the IOC stuff above, it will throw an error saying that the IOC container is null, hence why I need
it to complete calling the class above. If anyone has any answers, I'd appreciate it.
Private _enumParser As IReferenceTableEnumParser
        Friend Sub New()
            _enumParser = IocContainerHelper.Resolve(Of IReferenceTableEnumParser)()
        End Sub

Man, you are talking Unity here.
https://unity.codeplex.com/discussions
Exception is: InvalidOperationException - The current type, PA.DPW.eCIS.Root.Core.Interfaces.ILoggingService, is an interface and cannot be constructed. Are you missing a type mapping?
It has something to do with the IoC and not Gallio that is deling with dependecy injection and mapping with the IoC I believe.  You should post to the Unity forum

Similar Messages

  • Plain user and systemd: dependency failed for local file system

    I tried to switch to systemd, but ended up in a maintenance console (Enter root password or Ctrl-D to continue):
    Enter password.
    journalctl -b as suggested yields "Dependency failed for local file system".
    I couldn't find a systemd troubleshooting page in the Wiki. So, can someone point me to such a page? Anyone willing to give some hints?
    What I did so far: Did what https://wiki.archlinux.org/index.php/Systemd tells one should do to switch to systemd.
    In the boot menu pressed e, moved one down to the line starting with "kernel", pressed e again, and appended init=/bin/systemd.
    Somewhere I read that "mkinitcpio -p linux" should be issued to make systemd work. No (positive) effects.
    Paul
    P.S.: Shouldn't there be a topic "systemd" in "Pacman Upgrades, Packaging & AUR"?

    skunktrader wrote:
    poseidon wrote:In the boot menu pressed e, moved one down to the line starting with "kernel", pressed e again, and appended init=/bin/systemd.
    According to the wiki you are supposed to append init=/usr/lib/systemd/systemd if you are using the "Mixed systemd/sysvinit/initscripts installation" mode.  In all other configurations you should NOT have an init=.... entry since init becomes a symlink to systemd
    As far as I know, the init= entry doesn't hurt anything - it just isn't necessary.
    EDIT: Of course, it will hurt if the path was wrong...
    Also, at least on my system, /bin/systemd symlinks to /usr/lib/systemd/systemd.
    Last edited by cfr (2012-11-19 23:53:55)

  • RSYSLOG Dependency failed for System Logging Service [SOLVED]

    when i do:
    sudo systemctl start rsyslog
    i get:
    A dependency job for rsyslog.service failed. See 'journalctl -xn' for details.
    so #journalctl -xn
    jul 06 10:21:14 GA-990FXA-UD3 systemd[1]: Reloading.
    jul 06 10:21:22 GA-990FXA-UD3 systemd[1]: Starting Syslog Socket.
    -- Subject: Unit syslog.socket has begun with start-up
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/li … temd-devel
    -- Unit syslog.socket has begun starting up.
    jul 06 10:21:22 GA-990FXA-UD3 systemd[1]: Socket service syslog.service not loaded, refusing.
    jul 06 10:21:22 GA-990FXA-UD3 systemd[1]: Failed to listen on Syslog Socket.
    -- Subject: Unit syslog.socket has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/li … temd-devel
    -- Documentation: http://www.freedesktop.org/wiki/Softwar … e9d022f03d
    -- Unit syslog.socket has failed.
    -- The result is failed.
    jul 06 10:21:22 GA-990FXA-UD3 systemd[1]: Dependency failed for System Logging Service.
    -- Subject: Unit rsyslog.service has failed
    -- Defined-By: systemd
    -- Support: http://lists.freedesktop.org/mailman/li … temd-devel
    -- Documentation: http://www.freedesktop.org/wiki/Softwar … e9d022f03d
    -- Unit rsyslog.service has failed.
    -- The result is dependency.
    Tried official rsyslog and rsyslog-dev from aur. None of them works. I have checked with rsyslogd -d and stops at line "9430.793770992:7ff79a72d740: Checking pidfile '/var/run/rsyslogd.pid'". I also checked the config file with "rsyslog -f /etc/rsyslog.conf -n 1" and is ok.
    Dunno what to do. Totally lost.
    Last edited by polito (2013-07-06 23:00:16)

    Thanks issue solved by this enabling rsyslog service..
    # systemctl enable rsyslog.service
    # journalctl -xn
    -- The start-up result is done.
    Mar 15 12:03:01 XXX CROND[42196]: (root) CMD (/bin/bash  /usr/bin/XXX)
    Mar 15 12:03:35 XXX systemd[1]: Started System Logging Service.
    -- Subject: Unit rsyslog.service has finished start-up

  • Can't set up static IP with systemd: "Dependency failed for"

    I bootstrapped Arch Linux into a free partition from an Ubuntu Server installation. It boots fine, but I can't seem to get the network working.
    My router is weird in that the last number of the IP address has to be over 200 (so 192.168.1.[must be over 200]), so dhcpcd won't really work for me and I need to set up a static IP.
    To do this, I decided to edit the systemd static IP template from this wiki page (leaving "Wireless" in the name but removing the actual wireless line, as I'm using a wired connection): <https://wiki.archlinux.org/index.php/Ne … IP_address>
    Here's my modified script: <http://sprunge.us/BVRA>
    However, when I run "systemctl start newnetwork [what I named the service]", I still can't ping either IP addresses or domain names. When I run "systemctl status newnetwork", I get "Dependency failed for Wireless Static IP Connectivity" and it says that the service is not running.
    I have all of base and base-devel installed, so what could be the problem? It seems like the only other people who have encountered that systemd error message have had significantly different problems.
    For what it's worth, I used this method to bootstrap the system: <https://wiki.archlinux.org/index.php/In … _Archlinux>
    Thanks ahead of time for any help.

    Welcome to the forums.
    You can actually use dhcpcd to assign a static address too with the "-S" option.
    My first guess for your error would be that the interface is not "eth0" (though the error message seems odd for that, yes).
    Whats the output when you bring the connection up manually (description right above the wiki .service file you link)?

  • Certain resolutions make jobs fail w/ watermark on in Compressor 3

    Compressor FCS3 on OSX 10.6.8 - turns out that certain frame sizes can prevent jobs from running along with a watermark filter.
    I had an H.264 setting with resize to 854x480 (essentially 480p 16:9 with square pixels). Whenever I tried to add a watermark it would fail ("3x crash service down", quicktime error -50). It worked fine without the watermark.
    I tried different file locations, files, codecs, and Digital Rebellion's Compressor Repair. It wasn't that. As soon as I changed the resize to something else like 864x486 (with watermark), everything worked.

    Ok I had the same problem. After upgrading to 3.0 and rebooting my first gen iPhone it would not go pass the initial apple logo.
    I tried restoring it but iTunes would not even detect it.
    After doing some research I tried putting the iPhone in DFU mode and that did the trick. iTunes detected it and I was able to restore it. I'm downgrading to 2.2 since many first gen users are having problems with the 3.0 firmware.
    Here are the instructions to put the phone in DFU mode:
    Steps to put iPhone in DFU mode
    1. Connect your iPhone to your computer.
    2. Turn iPhone off.
    3. Hold power and home together for 10 seconds (exactly).
    4. Release power but keep holding home until the computers beeps (observed on a PC) as a USB device is recognized.
    5. A few seconds later iTunes should detect your iPhone.
    Good luck!
    J

  • Resolution to x220 failing to sleep

    For many months I was having a problem where my laptop would not sleep properly.  About 1 out of every 5 times that I slept the computer it would appear off with the screen blanked and keyboard unresponsive, but the fan would come on and the unit would get very hot.  This was very annoying because I'd have no other choice but to do a hard power reset on the device, and occasionally I'd put the laptop into my bag without noticing the problem.  Then I'd later find either a laptop completely drained of battery, or an extremely hot laptop in my bag.
    This problem was occurring on both my wife's and my laptops (both x220 units), so it was not an isolated issue.  I suspect however this was caused in part because I had enabled UEFI boot on both systems.
    I recently discovered through much trial and error that disabling the "ThinkPad PM Service" resolves the problem.  Unfortunately this seems to remove the ability to turn off the WiFi/Bluetooth/WWAN via Fn+F5, but I view that as an acceptable tradeoff for myself.
    A diagnostic note in case anyone at Lenovo wants to look into this: Prior to discovering that disabling this service solved the problem, I attached a kernel debugger to see what the system state looked like during one of these sleep failures.  I was surprised to find that all of my processes which were running before the initiation of the sleep transition were still running, so I suspect the failure happens early in the sleep process shortly after the screen and keyboard are turned off. 
    Also, the WiFi and Bluetooth lights retain their state, and the disk light still blinks on occasionally whenever some program initiates disk access.

    Hello,
    Maybe there is some information stored by the operating system that might be of use.
    If you open an elevated Command Prompt (filename: CMD.EXE) and issue "powercfg -lastwake" and "powercfg -waketimer" commands, do they display any useful information about what the latest event was that woke the X220 up, and what events might cause the X220 to wake up?
    Regards,
    Aryeh Goretsky
    I am a volunteer and neither a Lenovo nor a Microsoft employee. • Dexter is a good dog • Dexter je dobrý pes
    S230u (3347-4HU) • X220 (4286-CTO) • W510 (4318-CTO) • W530 (2441-4R3) • X100e (3508-CTO) • X120e (0596-CTO) • T61p (6459-CTO) • T43p (2678-H7U) • T42 (2378-R4U) • T23 (2648-LU7)
      Deutsche Community   Comunidad en Español Русскоязычное Сообщество

  • Unknown Status: the dependency service or group failed to start AFTER upgrading to WIN10

    EDITED: Need some help with SATELLITE P50-BP/N: PSPNSU-00M004  First, after upgrading to win10, the bluetooth stopped working.did play around the device manager, checked the intel wireless 7260 driver and found a USB decriptor error.after thinking and eating and drinking, I thought that maybe I need to install the latest chipset driver for win8.Download the driver from intel's website. . . . . . then pooof bluetooth started to work again..... NOW..... Another problem came in, function keys stopped working but only from f1-f4. I reinstalled TVAP and good, my keys are back. Then another one came in, my wifi stopped working saying it has Unknown Status. so I see now this message that the dependency failed to start. tried to runnetsh winsock reset

    EDITED: Need some help with SATELLITE P50-BP/N: PSPNSU-00M004  First, after upgrading to win10, the bluetooth stopped working.did play around the device manager, checked the intel wireless 7260 driver and found a USB decriptor error.after thinking and eating and drinking, I thought that maybe I need to install the latest chipset driver for win8.Download the driver from intel's website. . . . . . then pooof bluetooth started to work again..... NOW..... Another problem came in, function keys stopped working but only from f1-f4. I reinstalled TVAP and good, my keys are back. Then another one came in, my wifi stopped working saying it has Unknown Status. so I see now this message that the dependency failed to start. tried to runnetsh winsock reset

  • Can't start Peer Name Resolution Protocol

    I can't start the service 'Peer Name Resolution Protocol' which is required for HomeGroups.
    There are 3 Peer services on my machine. One is running (Peer Networking Identity Manager). The other one (Peer Networking Grouping) is not because it depends on 'Peer Name Resolution Protocol' which fails to start.
    Both Homegroup services are started and I have IPV6 enabled on my NIC and in my LAN properties.
    The event log has this:
    'The Peer Name Resolution Protocol cloud did not start because the creation of the default identity failed with error code: 0x80630801.'
    Using the Event ID web search it leads me to this:
    Event ID 102 — PNRP Protocol
    I tried what they suggested (it's for Vista) but to no avail.  Perhaps some Permission got borked.  Is there a way to recreate the RSA folder and sub-folders with correct Permissions or perhaps it's some other type of problem?
    I do notice I have a lot of entries in "C:\ProgramData\Microsoft\Crypto\RSA\MachineKeys"
    Any help in getting this Service started will be appreciated.

    Hi,
    This issue can occur by corrupted PNRP service. You can perform the following steps to troubleshoot the issue.
    1. Please download the correct Network Connection registry file from the link below:
    http://cid-6df3bca839e981ef.skydrive.live.com/self.aspx/.Public/PRNP.txt
    2. There will be the PRNP.txt file. Please right click it and rename it to PRNP.reg file.
    3. Double click the PRNP.reg file and click Yes to import the file.
    Note: To avoid unexpected situation, please back up the computer registry before importing the registry file.
    4. Then, please verify the Peer Name Resolution Protocol service and other failure service again.
    a. Click "Start", go to run, type "services.msc" (without quotation marks) in the open box and press Enter.
    Note: If you are prompted for an administrator password or confirmation, type your password, or click Continue.
    b. Right click the "Peer Name Resolution Protocol" service and choose Properties.
    c. Click on the "Log On" tab, please ensure the option "Local System account" is selected and the option "Allow service to interact with desktop" is unchecked.
    d. Click on the "General" tab; make sure the "Startup Type" is "Automatic". Then please click the button "Stop" under "Service Status" to stop the service.
    e. Then please click the button "Start" under "Service Status" to start the service.
    f. Click OK.
    What's the result?
    If the issue persists, please also perform the suggestions from the following article.
    Home Group Issues
    Thanks,
    Novak

  • Resolution decreases/Font enlargers and GDM hangs on driver install

    Hello archers, forgive my newness to ArchLinux and Linux itself but here's my question.
    I followed the beginners guide but it seems my system just refuses proprietary drivers for some reason. I can only maintain a stable DE and resolution when I install nouveau driver. I own a GTX 460m so I attempted to install nvidia-96xx-dkms. Why? I'm almost positive the nouveau video driver is impeding me from playing dota 2 as I can do this on my Windows dual boot without lag. Problem is when I rebooted from installing the drivers and gnome I am greeted with the following statements upon enabling gdm:
    [    OK    ]   Stopped Getty on tty1.
                      Starting GNOME Display Manager...
                      Stopping User Manager for UID 0...
    [    OK    ]   Stopped User Manager for UID 0.
    [    OK    ]   Removed slice user-0.slice.
    [    OK    ]   Started GNOME Display Manager.
                      Starting Accounts Service...
                      Starting Authorization Manager
    [    OK    ]   Started Authorization Manager
    [    OK    ]   Started Accounts Service
    -------------- Here I wait a minute and a half followed by this: ---------------------------
    [    TIME   ]  Timed out waiting for device sys-subsystem-net-devices-PI.device.
    [ DEPEND ] Dependency failed for Automatic wireless network con...etctl profiles.
    [    OK     ] Reached target Multi-User System.
    [    OK     ] Reached target Graphical Interface.
    [    OK     ] Reached target Network.
    This follows an infinite hang that goes nowhere. How do I fix this problem? My shell is bloated and my DE won't load. I've repeated my steps about 4 times to the point i've written each command out on install. Any help would be greatly appreciated.

    To bring this thread to a close here is what I discovered. It would seem that the resolution problem I kept having with my console was NORMAL as indicated in https://wiki.archlinux.org/index.php/NV … resolution. The problem I had with the nvidia driver not giving a mouse and locking up had to do with no configuring after installing. This was quickly remedied with a simple command:
    nvidia-xconfig
    Unfortunately this stuggle was in vain as this still imposed a considerable performance hit in regular gnome activities from booting and startup into the DE to lag in hitting the windows key for arranging the open windows. The nvidia driver gave me a significant boost in rendering of dota 2 but still contained lag even in offline matches unreliant upon the network. Terribly disappointing as when I dual boot back into Windows I don't have any type of rendering lag. Either its configured terribly wrong or linux is imposing more resources for the same gaming experience.
    Needless to say I reverted back to nouveau. Hope this log will help anyone else struggling through this type of driver problem.

  • Application Server 10g R2: opmn start all failed

    Hi,
    I have sat up a test domain according to the guidelines from Claus Jandausch "Oracle for Windows and .NET". Everything worked fine until we started the manual configuration of the Single Sign On support on the application server. Even after we have undone all manual changes in the configuration files, we are not able anymore to make opmn startall. We always get a messages like this:
    Error
    --> Process (pid=0)
    oid dependency failed
    OID
    failed to start a managed process because a dependency check failed
    Log:
    none
    It is not possible to start the OID anymore.
    Has anybody any idea, how to solve this?
    Thanks a lot,
    Christopher

    Yes, I have. I have recreated the original state of
    - opmn.xml
    - jazn-data.xml
    - web.xml
    - orion-application.xml
    - policy-properties
    by using copies of the original files.
    I also have undone my changes to the sqlnet.ora.
    After that I started >dcmctl updateconfig -ct ohs and got this error message:
    ADMN-202046
    The OracleAS Repository API threw an exception when obtaining the connect string
    to the Metadata Repository
    Resolution:
    Check the exception thrown by the Repository API for resolution information.
    Some common causes of this problem are as follows:
    OID is not running or unavailable
    the ias.properties file is misconfigured with incorrect OID connection i
    nformation
    OID permissions are incorrectly defined
    Base Exception:
    oracle.ias.repository.schema.SchemaException
    Unable to establish connection to the Oracle Internet Directory Server ldap://tn
    -s-as.osis-tnet.com:3060/. Base Exception : javax.naming.CommunicationException:
    tn-s-as.osis-tnet.com:3060 [Root exception is java.net.ConnectException: Connec
    tion refused: connect]
    oracle.ias.repository.schema.SchemaException: Unable to establish connection to
    the Oracle Internet Directory Server ldap://tn-s-as.osis-tnet.com:3060/. Base Ex
    ception : javax.naming.CommunicationException: tn-s-as.osis-tnet.com:3060 [Root
    exception is java.net.ConnectException: Connection refused: connect]
    at oracle.ias.repository.directory.DirectoryReader.connect(DirectoryRead
    er.java:124)
    at oracle.ias.repository.IASSchema.getDBConnect(IASSchema.java:523)
    at oracle.ias.repository.IASSchema.getDBConnect(IASSchema.java:725)
    at oracle.ias.repository.SchemaManager.getDBConnect(SchemaManager.java:4
    05)
    at oracle.ias.sysmgmt.persistence.SeedDbAccess.getDBConnect(Unknown Sour
    ce)
    at oracle.ias.sysmgmt.persistence.PersistenceManager.getSeedInfo(Unknown
    Source)
    at oracle.ias.sysmgmt.persistence.PersistenceManager.<init>(Unknown Sour
    ce)
    at oracle.ias.sysmgmt.persistence.PersistenceManager.<init>(Unknown Sour
    ce)
    at oracle.ias.sysmgmt.task.TaskMaster.initRepository(Unknown Source)
    at oracle.ias.sysmgmt.task.TaskMaster.<init>(Unknown Source)
    at oracle.ias.sysmgmt.task.InstanceManager.sysInit(Unknown Source)
    at oracle.ias.sysmgmt.task.InstanceManager.init(Unknown Source)

  • RAID 0 failing on reboot [SOLVED]

    I'm new to Arch and I'm setting up a NAS and I'm stuck on the RAID setup.
    I have an SSD (sdb) for the filesystem (non-RAID) and I'm trying to set up my two 2TB hdds, sda1 and sdc1 in a RAID 0 software array via the Arch Raid wiki.  These drives were pulled out of my old HTPC, but were not previously in a RAID setup.
    The NAS is currently headless (kinda), so I've been doing the setup through ssh.  When I got to the part of the Raid setup that says to securely wipe the drives, my ssh session ended before this was completed. I don't think this has any effect on my problem, I just thought I'd mention it.
    I completed the "Build the array" step:
    # mdadm --create --verbose --level=5 --metadata=1.2 --chunk=256 --raid-devices=5 /dev/md/<raid-device-name> /dev/<disk1> /dev/<disk2> /dev/<disk3> /dev/<disk4> /dev/<disk5>
    When I tried the next step, updating the mdadm.conf file it said the file was busy.
    I skipped this step and formatted the array successfully, and was able to mount it and copy files to it.
    The next step said "If you selected the Non-FS data partition code the array will not be automatically recreated after the next boot."  I used GPT partition tables with the fd00 hex code, so I felt comfortable skipping that step.
    I also skipped the next step, Add to kernel image. I don't know why, but my files were copying over just fine, so I guess I figured I was done.
    Then I rebooted and it goes into emergency mode.
    After reading up on my problem, I learned more about this process, and I figured my problem was one of the steps I skipped.  So I went back and finished the remaining steps, albeit out of order.
    The first thing I did was update my configuration file.  So from the looks of it, that should be done before putting the filesystem on it.  Do I have to re-format?  I definitely want to avoid that.
    When I read about this problem I thought for sure it was the mkinitcpio hooks that I was missing, so I added mdadm_udev to the HOOKS section of mkinitcpio as well as ext4 and raid456 to the MODULES section, per the wiki.  Then I regenerated the initramfs image and rebooted but the problem remains.
    Here's what I copied from the output of the boot process:
    The first hint of a problem occurs during boot:
    A start job is running for dev-disk-by\x2duuid-5e553f3d:c258f28b:d07571ea:ff289d13.device
    Then it times out:
    Timed out waiting for device dev-disk-by\x2duuid-5e553f3d:c258f28b:d07571ea:ff289d13.device
    Dependency failed for /mnt/nas.
    Dependency failed for Local File Systems.
    And drops me to emergency mode.
    Here's the relevant excerpts from journalctl -xb:
    kernel: md: bind<sda1>
    kernel: md: bind<sdc1>
    kernel: md: raid0 personality registered for level 0
    kernel: md/raid0:md127: md_size is 7814053888 sectors.
    kernel: md:RAID0 configuration for md127 – 1 zone
    kernel: md: zone0=[sda1/sdc1]
    kernel: zone-offset= 0KB, device-offset= 0KB, size=3907026944KB
    kernel:
    kernel: md127: detected capacity change from 0 to 4000795590656
    kernel: md127: unknown partition table
    so it looks like the kernel sees the RAID, right?
    systemd[1]: Job dev-disk-by\x2duuid-5e553f3d:c258f28b:d07571ea:ff289d13.device/start timed out.
    systemd[1]: Timed out waiting for device dev-disk-by\x2duuid-5e553f3d:c258f28b:d07571ea:ff289d13.device.
    --Subject: Unit dev-disk-by\x2duuid-5e553f3d:c258f28b:d07571ea:ff289d13.device has failed
    --The result is timeout.
    Systemd[1]: Dependency failed for /mnt/nas.
    -- Unit mnt-nas.mount has failed.
    -- The result is dependency.
    systemd[1]: Dependency failed for Local File Systems.
    -- Subject: Unit local-fs.target has failed
    -- Unit local-fs.target has failed.
    -- The result is dependency.
    Any help is apprecated.
    Last edited by lewispm (2013-08-27 11:42:59)

    jasonwryan wrote:What shows up in /proc/mdstat? Before and after manually assembling the array?
    Here's after assembling the array, since it works now:
    $ cat /proc/mdstat
    Personalities : [raid6] [raid5] [raid4] [raid0]
    md127 : active raid0 sda1[0] sdc1[1]
    3907026944 blocks super 1.2 256k chunks
    unused devices: <none>
    jasonwryan wrote:You should stick with mdadm_udev; the alternative is no longer supported...
    I switched back, and its still working with the /dev/md127 in fstab.
    fukawi2 wrote: suggests your /etc/mdadm.conf file isn't right.
    Here's /etc/mdadm.conf:
    ARRAY /dev/md/nas metadata=1.2 name=lewis-nas:nas UUID=5e553f3d:c258f28b:d07571ea:ff289d13
    and the output of
    mdadm --detail --scan
    is identical, since the wiki directed me to generate the mdadm.conf file like this:
    mdadm --detail --scan > /etc/mdadm.conf
    but the array is /dev/md127, not /dev/md/nas,is that the sticking point?  Is it the UUID?  If so, how can I check?

  • HTTP.SYS fails to load after ProLiant NIC driver update on Server 2008 R2

    Hi team,
    This has been driving me crazy for a week and I can't find any reference to solving the problem in Technet or any forums...
    I have a ProLiant ML350G5 server that I installed Server 2008 R2 on and migrated all my domain AD, DNS, File Services, Shares and files from SBS2003 (end of life, so let's take that out of the network) - Exchange and SharePoint were not being used so Standard
    server 2008 was the choice seeing that the server hardware is 4 years old...
    Everything went well, migration was successful, AD was primary and active.
    Then (stupidly) I decided I'd better install all the updated drivers and management software from HP. The NIC is showing as an HP NC373i which is a Broadcom BCM5708C. I updated the FLASH in that card (HP utility) and updated the driver to the latest version
    7.8.52.0 along with a bunch of other updates all handled by HP's Support Solutions Framework (msi).
    After the reboot required, I noticed that the Print Spooler (set to Automatic) didn't start, neither did IIS or Web Services...
    Trying to manually start them gives the error that a dependency failed. Now Print Spooler only uses HTTP (no longer a "service" but integrated into the kernel for multiple http connections on the same port and controlled using netsh http command
    prompt...) DCOM and RPC. The last 2 are running, so that leaves HTTP as the culprit.
    The Event Log shows that HTTP failed to load as "the services cannot be started. Either because it is disabled or because
    it has no enabled devices associated with it"
    From an administrator cmd prompt, net start http gives the same failure error.
    netsh http show servicestate returns "The handle is invalid" - it's not seeing http at all...
    OK. If you've read this far, thank you - keep going...
    Here's my thinking... Updating the NIC driver has "broken" the association with HTTP.SYS - How to I get that association back?
    I uninstalled anything http related, IIS, BITS, Web, Printing Services. Reboot after reboot and still no HTTP. I deleted http.sys from \windows\system32\drivers and did sfc to get windows to give me a clean one. Reboot, still doesn't load so it's not a damaged
    http.sys.
    I uninstalled EVERYTHING ProLiant, uninstalled the NIC, deleted the bxnd60a.sys driver so Windows would use it's own, rebooted, let it load NIC drivers, set the IP's up again, reboot - still no http.sys loading...
    I've tried older versions of drivers from Broadcom, the latest version of drivers, still in the same hole...
    Does anyone know how I can get HTTP.SYS to associate with the NIC? Can I do anything in the registry to achieve this? Do I have to do a System State Backup (is that the only way to preserve the AD and DNS?) scrub the server and start from scratch and then
    restore the System State to get my AD and DNS back? If I do that will it bring the http.sys fault back?
    I'm really at a loss - please, someone, please help...

    Hi team,
    This has been driving me crazy for a week and I can't find any reference to solving the problem in Technet or any forums...
    I have a ProLiant ML350G5 server that I installed Server 2008 R2 on and migrated all my domain AD, DNS, File Services, Shares and files from SBS2003 (end of life, so let's take that out of the network) - Exchange and SharePoint were not being used so Standard
    server 2008 was the choice seeing that the server hardware is 4 years old...
    Everything went well, migration was successful, AD was primary and active.
    Then (stupidly) I decided I'd better install all the updated drivers and management software from HP. The NIC is showing as an HP NC373i which is a Broadcom BCM5708C. I updated the FLASH in that card (HP utility) and updated the driver to the latest version
    7.8.52.0 along with a bunch of other updates all handled by HP's Support Solutions Framework (msi).
    After the reboot required, I noticed that the Print Spooler (set to Automatic) didn't start, neither did IIS or Web Services...
    Trying to manually start them gives the error that a dependency failed. Now Print Spooler only uses HTTP (no longer a "service" but integrated into the kernel for multiple http connections on the same port and controlled using netsh http command prompt...)
    DCOM and RPC. The last 2 are running, so that leaves HTTP as the culprit.
    The Event Log shows that HTTP failed to load as "the services cannot be started. Either because it is disabled or because it has no enabled devices
    associated with it"
    From an administrator cmd prompt, net start http gives the same failure error.
    netsh http show servicestate returns "The handle is invalid" - it's not seeing http at all...
    OK. If you've read this far, thank you - keep going...
    Here's my thinking... Updating the NIC driver has "broken" the association with HTTP.SYS - How to I get that association back?
    I uninstalled anything http related, IIS, BITS, Web, Printing Services. Reboot after reboot and still no HTTP. I deleted http.sys from \windows\system32\drivers and did sfc to get windows to give me a clean one. Reboot, still doesn't load so it's not a damaged
    http.sys.
    I uninstalled EVERYTHING ProLiant, uninstalled the NIC, deleted the bxnd60a.sys driver so Windows would use it's own, rebooted, let it load NIC drivers, set the IP's up again, reboot - still no http.sys loading...
    I've tried older versions of drivers from Broadcom, the latest version of drivers, still in the same hole...
    Does anyone know how I can get HTTP.SYS to associate with the NIC? Can I do anything in the registry to achieve this? Do I have to do a System State Backup (is that the only way to preserve the AD and DNS?) scrub the server and start from scratch and then restore
    the System State to get my AD and DNS back? If I do that will it bring the http.sys fault back?
    I'm really at a loss - please, someone, please help...

  • [Solved] Suspend to Disk: systemd-hibernate.service Fails

    Howdy-ha, folks.  I know this looks pretty mundane, but for the life of me I can't get hibernation to work.  Each time I run systemctl hibernate the screen will go blank as though preparing to suspend, then come back on; journalctl shows the same error messages:
    PM: Cannot find swap device, try swapon -a.
    PM: Cannot get swap writer
    Failed to start Hibernate.
    Dependency failed for Hibernate.
    Service sleep.target is not needed anymore. Stopping.
    Unit systemd-hibernate.service entered failed state.
    This happens when swap is mounted, and "swapon" says as much.  I've been working on this for about four hours now, and none of what I've found seems to pertain to my situation (most of the "solutions" were "Increase partition size').
    What I've tried:
    - Three different kernels---linux-ck custom build and linux-ck-sandybridge from graysky's repo (both with BFQ and CFQ: see below), as well as the stock Arch kernel
    - A 2 Gb swap file at /swapfile on my SSD;
    - A 4 Gb swap partition on /dev/mmcblk0 (an SD card, and my preferred method/location, if possible);
    - An 8 Gb swap partition on HDD /dev/sdb2
    Reasons for wanting hibernate rather than suspend-to-RAM:
    - Maximize battery life.
    - There's some kind of issue with Linux-ck and suspending to RAM; it'll work once, then freeze in a kernel panic the second time, forcing a hard reset.  The stock kernel suspends to RAM, but still won't hibernate
    - I put a lot of time into building a custom Linux-ck kernel, and would rather not have to start the configuration over with the stock kernel if possible.
    I'm working with limited space on my boot drive and, as mentioned, increasing the amount of swap has no bearing on this.  The resulting phenomenon and error messages are the same, regardless of size and medium.  I've exhausted my ideas on where to look, and what to even look for.  Thanks a lot to everyone in advance (especially you,karol; don't think I don't see you lurking back there )
    Last edited by ANOKNUSA (2013-11-17 05:32:14)

    I rebooted, so trying to recreate the same situation:
    $ free -h
    total used free shared buffers cached
    Mem: 7.7G 7.2G 525M 0B 32M 2.3G
    -/+ buffers/cache: 4.8G 2.9G
    Swap: 3.7G 0B 3.7G
    top reports nearly the same thing:
    top - 20:00:13 up 22 min, 1 user, load average: 0.12, 0.22, 0.14
    Tasks: 155 total, 1 running, 154 sleeping, 0 stopped, 0 zombie
    %Cpu(s): 0.1 us, 0.3 sy, 0.1 ni, 99.5 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
    KiB Mem: 8061380 total, 7500096 used, 561284 free, 34432 buffers
    KiB Swap: 3872236 total, 0 used, 3872236 free, 2417172 cached
    htop, however, reports about 1.5 Gb more free RAM.  After reboot, swappiness is still set to 100 with the same results.
    EDIT:
    ANOKNUSA wrote: I'll test it again with the other locations mentioned in the OP, and get back to you.
    Even though I rebooted, I haven't done this yet, so ignore it for the moment.
    Last edited by ANOKNUSA (2013-08-28 01:06:10)

  • Agent determination failed in Standard Workflow.

    Hi Experts,
    I am new to workflow and we are trying to implement the standard HCM process of Transfer.
    The worflow is giving this error.
    Error when processing node "000000032"
    which further says Agent determination failed for step "000000032"
    Pls help and guide what can be done to resolve it.
    We have checked the Org Structure.
    Regards,
    SV

    Hi,
    Thank you for your reply,
    Which std workflow you are using ?
    We are using the WF WS17900427.
    Are you using portal to trigger the workflow and webdynpro screen for approval or adobe form for approval ?
    Yes
    If the agend resolution is getting failed. What role number ?
    Rule ID 17900012.
    Have your tested individually from PFAC t-code. Is it giving the correct agent from there. check from there.
    Testing individually (onclick of Stimulate rule resolution).
    Runtime Error MOVE_CAST_ERROR
    Exception     CX_SY_MOVE_CAST_ERROR
    Regards,
    Sanjyoti.

  • [SOLVED] Network bridge fails to start after systemd update

    Hello,
    After rebooting with the upgraded systemd (208-11 -> 210-2) by bridge could not start.
    journal
    Mar 06 00:08:45 myhost systemd[1]: Job sys-subsystem-net-devices-enp2s0.device/start timed out.
    Mar 06 00:08:45 myhost systemd[1]: Timed out waiting for device sys-subsystem-net-devices-enp2s0.device.
    Mar 06 00:08:45 myhost systemd[1]: Dependency failed for My network bridge with DHCP.
    Mar 06 00:08:45 myhost systemd[1]: Starting Network.
    Mar 06 00:08:45 myhost systemd[1]: Reached target Network.
    # cat /etc/systemd/system/[email protected]
    .include /usr/lib/systemd/system/[email protected]
    [Unit]
    Description=My network bridge with DHCP
    BindsTo=sys-subsystem-net-devices-enp2s0.device
    After=sys-subsystem-net-devices-enp2s0.device
    # cat /etc/netctl/br0
    Description="My network bridge with DHCP"
    Interface=br0
    Connection=bridge
    BindsToInterfaces=(enp2s0)
    IP=dhcp
    Commenting out BindsTo and After in the unit file allows to start the service, but it would still throw an error
    Mar 06 00:14:05 myhost systemd[1]: Starting My network bridge with DHCP...
    Mar 06 00:14:05 myhost network[732]: Starting network profile 'br0'...
    Mar 06 00:14:05 myhost kernel: Bridge firewalling registered
    Mar 06 00:14:05 myhost systemd-udevd[739]: Could not apply link config to br0
    I never renamed interfaces, it was always the system-assigned enp2s0.
    What could have become wrong?
    Last edited by aya (2014-03-11 14:31:31)

    aya wrote:I do use a custom kernel and I did not have CONFIG_FHANDLE enabled. I wish it was posted as an announcement or something.
    From the 210 release announcement:
    systemd 210 announcement wrote:
    Heya,
    And here's the next release 210:
    http://www.freedesktop.org/software/sys … 210.tar.xz
    <snip>
    Oh, and one reminder that kinda got lost when we announced 209: you have
    to enable CONFIG_FHANDLE in your kernel to use systemd >= 209
    successfully, otherwise udev won't find any devices.
    <snip>

Maybe you are looking for

  • Field Char(255) for texts in accounting line item

    Hi Experts, I need a field with type/len char(255) for texts in accounting line item. I know I can use Long Text (EENO_DYNP-ZEILE) but it is not shown in TCode FAGLL03 and that is my need. Please help me. Best regards, Itajaci Júnior

  • Division wise profitability

    hi gurus, my clients want to assess their profitability division wise. i am confused as to what should be the character and the value fields.. since i dont see any option in both the forms saying " division" is that i hav to create it.. i wud really

  • ST22 Dump Analysis

    How to use ST22 to analyse dump analysis in a ABAP program ?

  • Need Help on Sybase ASE upgrde from 15.0.1 to 15.7 on Solaris 10.10

    Hi all, I am very new to this place, I am looking for a good step by step resources for upgrading sybase 15.0.1 to 15.7 1. I can do this up-gradation directly or I need to upgrade first 15.0.3 and then 15.7? 2. How to extract gz files on the server a

  • Release strategy for Schedule Lines

    Hi, The requirement is MRP should not run for Line item unless it is released by an authorized user. Logically availability check has to happen at the time release of the requirement line for the consideration of realistic manufacturing time. Also, u