[jboss-jira] [JBoss JIRA] Closed: (JBAS-6119) org.jboss.web.WebService ignores system property "java.rmi.server.codebase
Dimitris Andreadis (JIRA)
jira-events at lists.jboss.org
Tue Oct 21 03:40:20 EDT 2008
[ https://jira.jboss.org/jira/browse/JBAS-6119?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]
Dimitris Andreadis closed JBAS-6119.
------------------------------------
Fix Version/s: (was: JBossAS-5.0.0.GA)
Resolution: Duplicate Issue
Assignee: Dimitris Andreadis
That was fixed some time ago in JBAS-4892.
> 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
> Assignee: Dimitris Andreadis
> Priority: Minor
>
> 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