Skip to content
Snippets Groups Projects
Commit ffb22f03 authored by Patient NTUMBA's avatar Patient NTUMBA
Browse files

Update set-invocation-address service

parent 6316830d
No related branches found
No related tags found
No related merge requests found
......@@ -18,14 +18,14 @@ public class Generator {
RunTimeCompiler compiler = new RunTimeCompiler(sourceFilesPath,Constants.generatedCodePath,classesOptions);
compiler.compile();
File sourceDir = new File(sourceFilesPath);
// for(File f: sourceDir.listFiles()){
//
// if(f.getName().endsWith("java")){
//
// f.delete();
// }
//
// }
for(File f: sourceDir.listFiles()){
if(f.getName().endsWith("java")){
f.delete();
}
}
PathResolver.setClassPath(Constants.generatedCodePath);
}
......
......@@ -11,8 +11,8 @@ public class BaseServiceClient {
public static void main(String[] args) {
String bd_wsdl = "http://localhost:8825/BaseService/setinvaddr?wsdl";
String bc = "http://localhost:8825/BaseService/setinvaddr";
String bd_wsdl = "http://localhost:8834/BaseService/setinvaddr?wsdl";
String bc = "http://localhost:8834/BaseService/setinvaddr";
List<String> urls = new ArrayList<String>();
BaseService service;
try{
......
......@@ -295,7 +295,6 @@ public class VsbManager {
Generator generator = new Generator();
generator.compileGeneratedClasses(classesOptions);
VsbOutput vsbOutput = generator.generateWar(warGenerator, busProtocol);
return vsbOutput;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment