[jboss-jira] [JBoss JIRA] Created: (JBAS-6119) org.jboss.web.WebService ignores system property "java.rmi.server.codebase

Ron Sigal (JIRA) jira-events at lists.jboss.org
Tue Oct 21 03:21:20 EDT 2008


org.jboss.web.WebService ignores system property "java.rmi.server.codebase
--------------------------------------------------------------------------

                 Key: JBAS-6119
                 URL: https://jira.jboss.org/jira/browse/JBAS-6119
             Project: JBoss Application Server
          Issue Type: Bug
      Security Level: Public (Everyone can see)
    Affects Versions: JBossAS-5.0.0.CR2
            Reporter: Ron Sigal
            Priority: Minor
             Fix For: JBossAS-5.0.0.GA


In WebService.createService()

      if (codebase == null);  <-- extraneous ";"
      {
         codebase = "http://" + getHost() + ":" + getPort() + "/";
         System.setProperty("java.rmi.server.codebase", codebase);
      }

should be

      if (codebase == null)
      {
         codebase = "http://" + getHost() + ":" + getPort() + "/";
         System.setProperty("java.rmi.server.codebase", codebase);
      }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the jboss-jira mailing list