CLOUDSTACK-1444. Fix EC2 Query API to support latest ec2 api version 2012-08-15

[Support for EC2 API version 2012-08-15]
This commit is contained in:
Likitha Shetty 2013-06-28 09:46:23 +05:30
parent cefd70e711
commit f74b243460
2 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,7 @@
managementServer=127.0.0.1
cloudAPIPort=8080
cloudstackVersion=2.2.0
WSDLVersion=2010-11-15
WSDLVersion=2012-08-15
keystore=xes.keystore
keystorePass=apache

View File

@ -208,7 +208,7 @@ public class EC2RestServlet extends HttpServlet {
}
String keystore = EC2Prop.getProperty( "keystore" );
keystorePassword = EC2Prop.getProperty( "keystorePass" );
wsdlVersion = EC2Prop.getProperty( "WSDLVersion", "2010-11-15" );
wsdlVersion = EC2Prop.getProperty( "WSDLVersion", "2012-08-15" );
version = EC2Prop.getProperty( "cloudbridgeVersion", "UNKNOWN VERSION" );
String installedPath = System.getenv("CATALINA_HOME");