Uploaded image for project: 'Arquillian'
  1. Arquillian
  2. ARQ-1631

Deployment on isolated WLS managed servers

XMLWordPrintable

    • Icon: Feature Request Feature Request
    • Resolution: Unresolved
    • Icon: Major Major
    • None
    • wls_1.0.0.Alpha2
    • WebLogic Containers
    • None

      If WLS managed servers are clustered then to deploy any APP I need only specify target attr in arquillian.xml and one Deployment method
      But if they are isolated and I need to deploy APP on each managed servers, like in following code
      @Deployment(name = "wls_managed_8001")
      @TargetsContainer("wsl01")
      public static WebArchive createDeployment()

      { WebArchive jar = createWebArchive(WAR_NAME) .addAsManifestResource(MANIFEST_FILE_NAME); return jar; }

      @Deployment(name = "wls_managed_8002")
      @TargetsContainer("wls02")
      public static WebArchive createDeployment2() { WebArchive jar = createWebArchive(WAR_NAME) .addAsManifestResource(MANIFEST_FILE_NAME); return jar; }

      @Test
      @InSequence(1)
      @OperateOnDeployment("wls_managed_8001")
      public void testAddData_wls01() throws Exception

      { // Add some data to APP }

      @Test
      @InSequence(2)
      @OperateOnDeployment("wls_managed_8002")
      public void testCheckData_wls02() throws Exception

      { // Verify if data are propagated }

      But there is NO support for it cause every APP we want to deploy is managed through AdminServer and then it is sending it to managed servers

            Unassigned Unassigned
            vchepeli_jira Vitalii Chepeliuk (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: