3 Replies Latest reply on Mar 7, 2012 1:28 AM by ablet

    New missing/unsatisfied dependencies: service jboss.security.security-domain.other

    ablet

      Hi

       

      I have folllowing errors on my console:

       

       

      10:26:40,288 ERROR [org.jboss.as] (MSC service thread 1-2) JBoss AS 7.1.0.CR1b "Flux Capacitor" started (with errors) in 110565ms - Started 9358 of 9595 services (4 services failed or missing dependencies, 230 services are passive or on-demand)

      10:26:40,507 INFO  [org.jboss.as.server] (DeploymentScanner-threads - 2) JBAS015856: Undeploy of deployment "icba10.ear" was rolled back with failure message {"JBAS014771: Services with missing/unavailable dependencies" => ["jboss.web.deployment.default-host./icba10-cbs-servicecontroller-ejb.realmjboss.security.security-domain.otherMissing[jboss.web.deployment.default-host./icba10-cbs-servicecontroller-ejb.realmjboss.security.security-domain.other]","jboss.ws.endpoint.\"icba10.ear\".\"icba10-cbs-servicecontroller-ejb.jar\".ServiceControllerjboss.security.security-domain.otherMissing[jboss.ws.endpoint.\"icba10.ear\".\"icba10-cbs-servicecontroller-ejb.jar\".ServiceControllerjboss.security.security-domain.other]"]}

      10:26:40,507 INFO  [org.jboss.as.controller] (DeploymentScanner-threads - 2) JBAS014774: Service status report

      JBAS014775:    New missing/unsatisfied dependencies:

            service jboss.security.security-domain.other (missing) dependents: [service jboss.web.deployment.default-host./icba10-cbs-servicecontroller-ejb.realm, service jboss.ws.endpoint."icba10.ear"."icba10-cbs-servicecontroller-ejb.jar".ServiceController]

       

       

      I know that it is related to this part of annotation code as if i comment this line then I don't see any errors anymore:

       

      @WebService(name = "ServiceController", endpointInterface = "my.com.infopro.icba10.cbs.soacontroller.service.ServiceControllerRemote")
      
      

       

      Thanks for you help.

        • 1. Re: New missing/unsatisfied dependencies: service jboss.security.security-domain.other
          dlofthouse

          What annotations do you have on the endpoint interface referenced by that annotation?

           

          Also the "other" security domain is included by default in the standard configuration - have you made any modifications to the security subsystem?

          1 of 1 people found this helpful
          • 2. Re: New missing/unsatisfied dependencies: service jboss.security.security-domain.other
            ablet

            Thanks Darran, These are the annotation we have on the endpoint interface:

             

            @WebService

            @SOAPBinding

            @WebMethod

            @WebParam

             

            I have migrated an application from jboss 4.3 to JBoss 7.1.0CR1b ...Regarding to the security domain I  just remember I had some exceptions related to the configuring security for basic authentication and "UsersRolesLoginModule " which the issues were resolved by copying login-config.xml ,  from my jboss 4.3 to the jboss 7 standalone folder and  also users.properties, roles.properites and etc.... Now I am out of office, on Monday i willl go to the office and double check if any changes related to the security domain in configuraion is done.

            • 3. Re: New missing/unsatisfied dependencies: service jboss.security.security-domain.other
              ablet

              Thanks Darran, my standalone-full.xml was missing "other" security-domain, now it deploys fine.

                          <security-domain name="other" cache-type="default">
                              <authentication>
                                  <login-module code="UsersRoles" flag="required"/>
                              </authentication>
                          </security-domain>