Navigation Menu

Skip to content

Commit

Permalink
Changed default port to 8080
Browse files Browse the repository at this point in the history
  • Loading branch information
Jennifer Hickey committed Dec 19, 2009
1 parent 85cac1d commit bab68b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/org/hyperic/hq/hqapi1/tools/Command.java
Expand Up @@ -193,7 +193,7 @@ protected HQApi getApi(OptionSet s) {
if (s.hasArgument(OPT_PORT)) {
port = (Integer)s.valueOf(OPT_PORT);
} else {
port = Integer.parseInt(clientProps.getProperty(OPT_PORT, "7080"));
port = Integer.parseInt(clientProps.getProperty(OPT_PORT, "8080"));
}

String user = (String)s.valueOf(OPT_USER);
Expand Down
2 changes: 1 addition & 1 deletion xsd/HQApi1.wadl
Expand Up @@ -12,7 +12,7 @@
<wadl:include href="HQApi1.xsd"/>
</wadl:grammars>

<wadl:resources base="http://localhost:7080/hqu/hqapi1/">
<wadl:resources base="http://localhost:8080/hqu/hqapi1/">

<wadl:resource path="user/get.hqu">
<wadl:doc title="HQApi User get command">
Expand Down

0 comments on commit bab68b1

Please sign in to comment.