This commit is contained in:
Lucio Lelii 2009-01-12 23:23:16 +00:00
parent e73be6cb2f
commit 2e3aa632c0
2 changed files with 4 additions and 1 deletions

View File

@ -90,6 +90,7 @@ public class DeployVRE implements Runnable{
@Override
protected String makeCall(VREManagerPortType mbportType)
throws Exception {
System.out.println("makeCall called");
try{
AddResourcesParameters arp= new AddResourcesParameters();
System.out.println("fin qui ci sono 1");
@ -114,7 +115,7 @@ public class DeployVRE implements Runnable{
attempt++;
}while (!isDeploymentStatusFinished(report) && attempt<10);
}catch(Exception e){e.printStackTrace(); throw e;}
return null;
return "";
}
};

View File

@ -41,6 +41,7 @@ public abstract class VREManagerServiceHandler<T, P> extends GCUBEServiceHandler
@Override
protected List<EndpointReferenceType> findInstances() throws Exception {
System.out.println("findinstance called");
try{
ISClient client = GHNContext.getImplementation(ISClient.class);
GCUBERIQuery query = client.getQuery(GCUBERIQuery.class);
@ -58,6 +59,7 @@ public abstract class VREManagerServiceHandler<T, P> extends GCUBEServiceHandler
protected void interact(EndpointReferenceType arg0) throws Exception{
VREManagerPortType mbpt= null;
System.out.println("interact called");
try{
VREManagerServiceAddressingLocator mbsal= new VREManagerServiceAddressingLocator();
mbpt= mbsal.getVREManagerPortTypePort(arg0);