Quantcast
Channel: VMware Communities : All Content - vRealize Orchestrator
Viewing all 10285 articles
Browse latest View live

get vCenter VM from vCAC VM

$
0
0

I couldn't find an action for this and it doesn't seem to be  a property of the vCAC vm.  It sure would be nice if it were.  I snagged this code from one of the workflows in the vCAC plugin that does what I would like so I figured I would repost here.  I also attached an action.  Takes a vCAC:VirtualMachine input and returns a VC:VirtualMachine out.

 

var sdkConnections = VcPlugin.allSdkConnections;

System.log(sdkConnections.length + " sdk Connections found...");

for each (var sdkConnection in sdkConnections) {

  try {

  vCenterVm = sdkConnection.searchIndex.findByUuid(null, vCACVm.vmUniqueID, true, false);

  } catch(e) {System.log("Error for SDK connection " + sdkConnection.name + " : " + e);}

  if (vCenterVm != null) {

  System.log("Resolved vCenter VM " + vCenterVm.name);

  return vCenterVm;

  break;

  }

}


unable to find valid certification path to requested target

$
0
0

What possibly could I be missing? vRO 7.1; Added remote's SSL server cert in CA keystore according to vRO configuration on inventory tab in my client. Trying to exec a simple scriptable step:

 

var url = new URL("https://remote:port/");

System.log(url.getContent());

 

Getting this:

 

HTTP GET error : sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

 

Are there any quirks with running something like this? Seems like an obvious error but I can't figure out how to fix it

Can't Authenticate the vRealize Orchestrator Client

$
0
0

I am perplexed here. According to everything I have come across, my configuration is solid, and yes I have restarted the server, services, the whole nine yards!

 

VCOCapture.PNG

VCOCapture2.PNG

VCOCapture3.PNG

 

I went in to the logs and found the following after trying to authenticate for the hundredth time.

 

2015-09-14 20:36:36.888+0000 [http-bio-10.10.19.98-8281-exec-7] ERROR {} [DefaultVerifier] User LDAP-USER-['ckuhns'] - DOMAIN.org\ckuhns doesn't have necessary rights 'View', required to execute operation on (VSOServer, _ROOT).

2015-09-14 20:36:36.889+0000 [http-bio-10.10.19.98-8281-exec-7] ERROR {} [VcoFactoryServiceFacadeProxy] ch.dunes.util.NotAuthorizedException: [0002]User 'DOMAIN\ckuhns' is not authorized!

2015-09-14 22:22:50.938+0000 [http-bio-10.10.19.98-8281-exec-3] ERROR {} [DefaultVerifier] User LDAP-USER-['administrator'] - DOMAIN.org\administrator doesn't have necessary rights 'View', required to execute operation on (VSOServer, _ROOT).

2015-09-14 22:22:50.939+0000 [http-bio-10.10.19.98-8281-exec-3] ERROR {} [VcoFactoryServiceFacadeProxy] ch.dunes.util.NotAuthorizedException: [0002]User 'administrator@DOMAIN.org' is not authorized!

2015-09-14 22:37:50.723+0000 [http-bio-10.10.19.98-8281-exec-4] ERROR {} [DefaultVerifier] User LDAP-USER-['ckuhns'] - DOMAIN.org\ckuhns doesn't have necessary rights 'View', required to execute operation on (VSOServer, _ROOT).

2015-09-14 22:37:50.724+0000 [http-bio-10.10.19.98-8281-exec-4] ERROR {} [VcoFactoryServiceFacadeProxy] ch.dunes.util.NotAuthorizedException: [0002]User 'ckuhns@DOMAIN.org' is not authorized!

 

I can authenticate just fine from the Configuration screen, but not the client.

js-io-rights.conf assistance

$
0
0

Got a remote NFS mount

 

i added folder to /mnt/Scratch

 

I mounted to /mnt/Scratch

 

Set chmod 777 on /mnt/Scratch

 

added to rights file, recycled services.

 

Get write denied stil.  Any ideas?

Add ip route in vRO

$
0
0

I am trying to add a new route to our ESXi host using vRO. I've tried a few different things, but nothing seems to be working. My current script successfully launches a task to 'update the IP route table configuration', but the changes are not applied.

 

Before anyone suggests it, I am already calling a powershell script to use the 'New-VMHostRoute' cmdlet, but I want to do this via the API, and remove powershell altogether.

 

Has anyone done this before?

 

 

Current script:

var configmanager = host.configManager;
var networkSystem = configmanager.networkSystem;
var netStackArray = networkSystem.networkConfig.netStackSpec;


for each (var netStack in netStackArray) {

System.log(netStack.netStackInstance.name);
if (netStack.netStackInstance.name == "defaultTcpipStack") {
  var routeTableConfig = netStack.netStackInstance.routeTableConfig;
 
  //Build IP route entry
  myRoute = new VcHostIpRouteEntry() ;
  myRoute.deviceName = "vmk0" ;
  myRoute.gateway = "192.168.1.1";
  myRoute.network = "192.168.1.0";
  myRoute.prefixLength = 24 ;
 
  var myVcHostIpRouteOp = new VcHostIpRouteOp() ;
  myVcHostIpRouteOp.changeOperation = "add" ;
  myVcHostIpRouteOp.route = myRoute ;
 
  // Add Ip route entry to the array of routes
  routeTableConfig.ipRoute.push(myVcHostIpRouteOp);
 
  // Apply change to host
  networkSystem.updateIpRouteTableConfig(routeTableConfig);
 

 

}
}

List all Resource Pools that are part of a ESXi cluster

$
0
0

Hello,

I am trying to get a piece of code working that will list all the resource pools that are present in a ESXi cluster.

 

  • I know I can find what resource pool a VM resides to.  I do not want that.

 

// Find a matching resource pool on an ESXi hosts  var esxiCluster = esxiHost.parent;  var esxiClusterResourcePools = esxiCluster.resourcePool_ResourcePool;  System.log("what is the ESXi cluster: " + esxiCluster.name);  System.log("vimtype: " + esxiCluster.vimType);  System.log("what pools exists: " + esxiClusterResourcePools);

 

 

So I know the vimType will come back with what I expect (ClusterComputeResource).  The issue I have is the object "resourcePool" refers to the root resource pool (in my case it is "resources").

What I want is all the DRS resource pools we have setup.  I need something like "resourcePool_ResourcePool.children".

 

Any help is appreciated.

Thanks

B

Where are Orchestrator Resources kept?

$
0
0

Hi,

I'm trying to find on an appliance a location where Orchestrator Resources are kept. I want to store inside the resources some script files I plan to upload to the hosts later. Can anyone help with that?

 

Thanks

Kamil

VRO 7.1 Client Login issue

$
0
0

Hi, has anyone had an issue where you can log in as ROOT to the vro 7.1 at the console but not through the client on port 8281 and has anyone resolved this?

Thanks, Paul


Using requestCatalogItemWithProvisioningReqeust; Can't change the size of disk

$
0
0

Hello,

 

I'm requesting a catalog item using the example in the Request a catalog item with provisioning request which builds a provisioning requests and then modifies the JSON to override values. The example shows setting the number of cpus, which works fine for me, as does setting the memory size. What doesn't work for me is setting the disk size. I'm using these statements

 

json[CatalogItem.name].data.cpu = 2;

json[CatalogItem.name].data.memory = 8192;

json[CatalogItem.name].data.disks[0].data.capacity = 110;

json[CatalogItem.name].data.description = machineDescription;

 

The resulting JSON seems correct and I get no errors on deployment but the disk size stays at the default 100 GB of the blueprint. I can change cpu and memory values and they change accordingly but I can't change the disk size.

 

Any ideas?

Define VC: when calling workflows from Powershell?

$
0
0

Hello!

 

In our vRO we have a workflow that builds our standard 2012 servers, in this workflow the user can select which Datastore, Network, Host etc on which to place the resulting VM. Now i'd like to be able to start this workflow from Powershell using the vRO API, i've managed to get some parts of it working by using what i learned from reading this guide: http://www.vcoteam.info/articles/learn-vco/297-how-to-use-powershell-to-start-an-orchestrator-workflow-2.html but since it only touches on using String properties i'm now stuck on how to define the inventory(?) properties like VC:HostSystem.

 

Is it possible to define attributes like VC:Datastore, VC:HostSystem etc via Powershell/XML/json and then start a workflow? If so i'd love some examples.

Thanks in advance.

Getting issue in importing data in vRealize 6.2.0

$
0
0

I am setting up an Lab with the below details:

vRealize Identity :2.2.4.0 Build 3570131

vRealize automation applaince: 6.2.4.0 Build 3624994

IaaS Server

 

I cant find compute resources and getting the below error from Infrastruture > monitoring > logs

 

Workflow 'vCOEndpointDataCollection' failed with the following exception: The underlying connection was closed: An unexpected error occurred on a send. Inner Exception: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host.

 

Further logs from IaaS server shows

 

[UTC:2016-11-01 10:35:40 Local:2016-11-01 16:05:40] [Error]: Thread-Id: 11 - <?xml version="1.0" encoding="utf-16"?>

<boolean>false</boolean>

Endpoint Data Collection failed for endpoint vRO [Workflow Instance Id=9518]

System.Net.WebException: vCenter Orchestrator returned an error: Moved Permanently.

   at DynamicOps.VcoModel.Common.VcoClient.CheckResponseStatus(IRestResponse response)

   at DynamicOps.VcoModel.Common.VcoVersionUtils.GetVcoVersionInformation(VcoClient client)

   at DynamicOps.VcoModel.Activities.StoreVcoVersionInformation.Execute(CodeActivityContext context)

   at System.Activities.CodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager)

   at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)

[UTC:2016-11-01 10:35:40 Local:2016-11-01 16:05:40] [Error]: Thread-Id: 11 - Error occurred writing to the repository tracking log

System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

   --- End of inner exception stack trace ---

   at System.Data.Services.Client.BatchSaveResult.BatchRequest()

   at System.Data.Services.Client.DataServiceContext.SaveChanges(SaveChangesOptions options)

   at DynamicOps.Repository.RepositoryServiceContext.SaveChanges(SaveChangesOptions options)

   at DynamicOps.Repository.Tracking.RepoLoggingSingleton.WriteExceptionToLogs(String message, Exception exceptionObject, Boolean writeAsWarning)

INNER EXCEPTION: System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

[UTC:2016-11-01 10:35:40 Local:2016-11-01 16:05:40] [Error]: Thread-Id: 11 - <?xml version="1.0" encoding="utf-16"?>

<boolean>false</boolean>

Workflow 'vCOEndpointDataCollection' failed with the following exception:

System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

   --- End of inner exception stack trace ---

   at System.Activities.Statements.MethodExecutor.InvokeAndUnwrapExceptions(Func`3 func, Object targetInstance, Object[] actualParameters)

   at System.Activities.Statements.MethodResolver.SyncMethodExecutor.BeginMakeMethodCall(AsyncCodeActivityContext context, Object target, AsyncCallback callback, Object state)

   at System.Activities.Statements.MethodExecutor.BeginExecuteMethod(AsyncCodeActivityContext context, AsyncCallback callback, Object state)

   at System.Activities.AsyncCodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager)

   at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)

INNER EXCEPTION: System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

[UTC:2016-11-01 14:35:45 Local:2016-11-01 20:05:45] [Error]: Thread-Id: 14 - <?xml version="1.0" encoding="utf-16"?>

<boolean>false</boolean>

Endpoint Data Collection failed for endpoint vRO [Workflow Instance Id=9683]

System.Net.WebException: vCenter Orchestrator returned an error: Moved Permanently.

   at DynamicOps.VcoModel.Common.VcoClient.CheckResponseStatus(IRestResponse response)

   at DynamicOps.VcoModel.Common.VcoVersionUtils.GetVcoVersionInformation(VcoClient client)

   at DynamicOps.VcoModel.Activities.StoreVcoVersionInformation.Execute(CodeActivityContext context)

   at System.Activities.CodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager)

   at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)

[UTC:2016-11-01 14:35:45 Local:2016-11-01 20:05:45] [Error]: Thread-Id: 14 - Error occurred writing to the repository tracking log

System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

   --- End of inner exception stack trace ---

   at System.Data.Services.Client.BatchSaveResult.BatchRequest()

   at System.Data.Services.Client.DataServiceContext.SaveChanges(SaveChangesOptions options)

   at DynamicOps.Repository.RepositoryServiceContext.SaveChanges(SaveChangesOptions options)

   at DynamicOps.Repository.Tracking.RepoLoggingSingleton.WriteExceptionToLogs(String message, Exception exceptionObject, Boolean writeAsWarning)

INNER EXCEPTION: System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

[UTC:2016-11-01 14:35:45 Local:2016-11-01 20:05:45] [Error]: Thread-Id: 14 - <?xml version="1.0" encoding="utf-16"?>

<boolean>false</boolean>

Workflow 'vCOEndpointDataCollection' failed with the following exception:

System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

   --- End of inner exception stack trace ---

   at System.Activities.Statements.MethodExecutor.InvokeAndUnwrapExceptions(Func`3 func, Object targetInstance, Object[] actualParameters)

   at System.Activities.Statements.MethodResolver.SyncMethodExecutor.BeginMakeMethodCall(AsyncCodeActivityContext context, Object target, AsyncCallback callback, Object state)

   at System.Activities.Statements.MethodExecutor.BeginExecuteMethod(AsyncCodeActivityContext context, AsyncCallback callback, Object state)

   at System.Activities.AsyncCodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager)

   at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)

INNER EXCEPTION: System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

[UTC:2016-11-01 15:16:10 Local:2016-11-01 20:46:10] [Error]: Thread-Id: 13 - <?xml version="1.0" encoding="utf-16"?>

<boolean>false</boolean>

Endpoint Data Collection failed for endpoint vRO [Workflow Instance Id=9708]

System.Net.WebException: vCenter Orchestrator returned an error: Moved Permanently.

   at DynamicOps.VcoModel.Common.VcoClient.CheckResponseStatus(IRestResponse response)

   at DynamicOps.VcoModel.Common.VcoVersionUtils.GetVcoVersionInformation(VcoClient client)

   at DynamicOps.VcoModel.Activities.StoreVcoVersionInformation.Execute(CodeActivityContext context)

   at System.Activities.CodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager)

   at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)

[UTC:2016-11-01 15:16:10 Local:2016-11-01 20:46:10] [Error]: Thread-Id: 13 - Error occurred writing to the repository tracking log

System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

   --- End of inner exception stack trace ---

   at System.Data.Services.Client.BatchSaveResult.BatchRequest()

   at System.Data.Services.Client.DataServiceContext.SaveChanges(SaveChangesOptions options)

   at DynamicOps.Repository.RepositoryServiceContext.SaveChanges(SaveChangesOptions options)

   at DynamicOps.Repository.Tracking.RepoLoggingSingleton.WriteExceptionToLogs(String message, Exception exceptionObject, Boolean writeAsWarning)

INNER EXCEPTION: System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

[UTC:2016-11-01 15:16:10 Local:2016-11-01 20:46:10] [Error]: Thread-Id: 13 - <?xml version="1.0" encoding="utf-16"?>

<boolean>false</boolean>

Workflow 'vCOEndpointDataCollection' failed with the following exception:

System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

   --- End of inner exception stack trace ---

   at System.Activities.Statements.MethodExecutor.InvokeAndUnwrapExceptions(Func`3 func, Object targetInstance, Object[] actualParameters)

   at System.Activities.Statements.MethodResolver.SyncMethodExecutor.BeginMakeMethodCall(AsyncCodeActivityContext context, Object target, AsyncCallback callback, Object state)

   at System.Activities.Statements.MethodExecutor.BeginExecuteMethod(AsyncCodeActivityContext context, AsyncCallback callback, Object state)

   at System.Activities.AsyncCodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager)

   at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)

INNER EXCEPTION: System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

[UTC:2016-11-01 16:08:48 Local:2016-11-01 21:38:48] [Error]: Thread-Id: 11 - <?xml version="1.0" encoding="utf-16"?>

<boolean>false</boolean>

Endpoint Data Collection failed for endpoint vRO [Workflow Instance Id=9744]

System.Net.WebException: vCenter Orchestrator returned an error: Moved Permanently.

   at DynamicOps.VcoModel.Common.VcoClient.CheckResponseStatus(IRestResponse response)

   at DynamicOps.VcoModel.Common.VcoVersionUtils.GetVcoVersionInformation(VcoClient client)

   at DynamicOps.VcoModel.Activities.StoreVcoVersionInformation.Execute(CodeActivityContext context)

   at System.Activities.CodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager)

   at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)

[UTC:2016-11-01 16:08:49 Local:2016-11-01 21:38:49] [Error]: Thread-Id: 11 - Error occurred writing to the repository tracking log

System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

   --- End of inner exception stack trace ---

   at System.Data.Services.Client.BatchSaveResult.BatchRequest()

   at System.Data.Services.Client.DataServiceContext.SaveChanges(SaveChangesOptions options)

   at DynamicOps.Repository.RepositoryServiceContext.SaveChanges(SaveChangesOptions options)

   at DynamicOps.Repository.Tracking.RepoLoggingSingleton.WriteExceptionToLogs(String message, Exception exceptionObject, Boolean writeAsWarning)

INNER EXCEPTION: System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

[UTC:2016-11-01 16:08:49 Local:2016-11-01 21:38:49] [Error]: Thread-Id: 13 - <?xml version="1.0" encoding="utf-16"?>

<boolean>false</boolean>

Workflow 'vCOEndpointDataCollection' failed with the following exception:

System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

   --- End of inner exception stack trace ---

   at System.Activities.Statements.MethodExecutor.InvokeAndUnwrapExceptions(Func`3 func, Object targetInstance, Object[] actualParameters)

   at System.Activities.Statements.MethodResolver.SyncMethodExecutor.BeginMakeMethodCall(AsyncCodeActivityContext context, Object target, AsyncCallback callback, Object state)

   at System.Activities.Statements.MethodExecutor.BeginExecuteMethod(AsyncCodeActivityContext context, AsyncCallback callback, Object state)

   at System.Activities.AsyncCodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager)

   at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)

INNER EXCEPTION: System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

[UTC:2016-11-01 16:11:23 Local:2016-11-01 21:41:23] [Error]: Thread-Id: 9 - <?xml version="1.0" encoding="utf-16"?>

<boolean>false</boolean>

Endpoint Data Collection failed for endpoint vRO [Workflow Instance Id=9748]

System.Net.WebException: vCenter Orchestrator returned an error: Moved Permanently.

   at DynamicOps.VcoModel.Common.VcoClient.CheckResponseStatus(IRestResponse response)

   at DynamicOps.VcoModel.Common.VcoVersionUtils.GetVcoVersionInformation(VcoClient client)

   at DynamicOps.VcoModel.Activities.StoreVcoVersionInformation.Execute(CodeActivityContext context)

   at System.Activities.CodeActivity.InternalExecute(ActivityInstance instance, ActivityExecutor executor, BookmarkManager bookmarkManager)

   at System.Activities.Runtime.ActivityExecutor.ExecuteActivityWorkItem.ExecuteBody(ActivityExecutor executor, BookmarkManager bookmarkManager, Location resultLocation)

[UTC:2016-11-01 16:11:23 Local:2016-11-01 21:41:23] [Error]: Thread-Id: 9 - Error occurred writing to the repository tracking log

System.Net.WebException: The underlying connection was closed: An unexpected error occurred on a send. ---> System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.FixedSizeReader.ReadPacket(Byte[] buffer, Int32 offset, Int32 count)

   at System.Net.Security.SslState.StartReceiveBlob(Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.StartSendBlob(Byte[] incoming, Int32 count, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ForceAuthentication(Boolean receiveFirst, Byte[] buffer, AsyncProtocolRequest asyncRequest)

   at System.Net.Security.SslState.ProcessAuthentication(LazyAsyncResult lazyResult)

   at System.Threading.ExecutionContext.RunInternal(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean preserveSyncCtx)

   at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)

   at System.Net.TlsStream.ProcessAuthentication(LazyAsyncResult result)

   at System.Net.TlsStream.Write(Byte[] buffer, Int32 offset, Int32 size)

   at System.Net.ConnectStream.WriteHeaders(Boolean async)

   --- End of inner exception stack trace ---

   at System.Data.Services.Client.BatchSaveResult.BatchRequest()

   at System.Data.Services.Client.DataServiceContext.SaveChanges(SaveChangesOptions options)

   at DynamicOps.Repository.RepositoryServiceContext.SaveChanges(SaveChangesOptions options)

   at DynamicOps.Repository.Tracking.RepoLoggingSingleton.WriteExceptionToLogs(String message, Exception exceptionObject, Boolean writeAsWarning)

INNER EXCEPTION: System.IO.IOException: Unable to read data from the transport connection: An existing connection was forcibly closed by the remote host. ---> System.Net.Sockets.SocketException: An existing connection was forcibly closed by the remote host

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

   --- End of inner exception stack trace ---

   at System.Net.Sockets.NetworkStream.Read(Byte[] buffer, Int32 offset, Int32 size)

Issues with Update IaaS Model Manager Entity in vRA 7.1

$
0
0

Hi Everyone,

 

Looking for some help in updating custom properties on machine entities in vRA 7.1.   I setup a test workflow like the following:2016-11-01_1620.png

 

Scriptable Task:

 

var props = new Properties();

props.put("VirtualMachine.Admin.Hostname","newvalue");

 

 

 

The workflow takes an ID as an input and then finds the entity based on the ID.    It then creates a properties object and attempts to update that virtual machine entity using the 'Update an IaaS model entity' builtin workflow.   What I'm getting every time is the following error:

 

[2016-11-01 15:35:51.891] [E] Workflow execution stack:

***

item: 'Update an IaaS model entity/item3', state: 'failed', business state: 'null', exception: 'java.lang.NullPointerException'

workflow: 'testUpdate' (d05a1b3d-1bb6-43e2-8e3d-eadeb047361d)

|  'attribute': name=host type=vCAC:VCACHost value=dunes://service.dunes.ch/CustomSDKObject?id='fa8975f3-c658-4aa8-bf09-cbe778bdac78'&dunesName='vCAC:VCACHost'

|  'attribute': name=entity1 type=vCAC:Entity value=null

|  'attribute': name=props type=Properties value=#[#VirtualMachine.Admin.Hostname#=#string#newkey#]#

|  'input': name=id type=string value=46cfe68f-ae3d-4a7e-a0da-89d5a2ec8395

|  'no outputs'

--workflow: 'Update an IaaS model entity' (3fbe872a-46de-484e-8232-8b110fcee02b)

  |  'attribute': name=hostId type=string value=fa8975f3-c658-4aa8-bf09-cbe778bdac78

  |  'attribute': name=modelName type=string value=ManagementModelEntities.svc

  |  'attribute': name=entitySetName type=string value=VirtualMachines

  |  'attribute': name=entityIdString type=string value=(guid'46cfe68f-ae3d-4a7e-a0da-89d5a2ec8395')

  |  'attribute': name=errorCode type=string value=java.lang.NullPointerException

  |  'input': name=entity type=vCAC:Entity value=dunes://service.dunes.ch/CustomSDKObject?id='%2528guid%252746cfe68f-ae3d-4a7e-a0da-89d5a2ec8395%2527%2529%2540fa8975f3-c658-4aa8-bf09-cbe778bdac78%2540ManagementModelEntities.svc%2540VirtualMachines'&dunesName='vCAC:Entity'

  |  'input': name=inputProperties type=Properties value=#[#VirtualMachine.Admin.Hostname#=#string#newkey#]#

  |  'input': name=links type=Properties value=null

  |  'input': name=headers type=Properties value=null

  |  'output': name=updatedEntity type=vCAC:Entity value=null

*** End of execution stack.

 

 

Having some trouble in figuring out where this is going wrong and would appreciate any ideas.

 

Thanks!

 

-Mike

Dynamic Types plug-in generator package

$
0
0

The plug-in generator package is a set of wizard and template workflows allowing to create a plug-in without doing any scripting.

 

Read more about Dynamic Types in this article.

To familiarize yourself with creating a Dynamic Types plug-in V2 you can follow this tutorial and/or this tutorial.

 

Requires:

Download the plug-in generator version 2 from sample exchange (Since November 2, 2016 since the package was moved from Flowgrab)

 

Handle REST APIs with JSON or XML message formats.

 

  • - Wizard based workflow to create a plug-in inventory handling
    • Multiple hosts *
    • Multiple levels of objects *
    • Caching to avoid repeating requests *
    • Requires a single URL per object to implement findRelation, findAll, findById *
    • Get object properties using
      • Simple properties: JavaScript like doted syntax
      • Complex properties: JSONSelect (By Lloyd Hilaiel) *
      • Complex properties with high performance: pluggable actions
  • - Wizard based workflow to create and invoke object methods that are wrappable into plug-in workflows *
  • - Export plug-in to a end user installable package including runtime

 

* New functionality of version 2

Special thanks to Brandon Saxe for integrating JSONSelect in Orchestrator.

 

 

Disclaimer: These samples workflows are provided AS IS and are not considered production quality and are not officially supported. Use at your own risk.

Passing a variable within a workflow

$
0
0

I'm creating a new workflow to create a VM and then make some advanced configuration changes afterward.  I'm doing this by using the existing "Create custom virtual machine" workflow and then having the "Secure VM" workflow created by William Lam running afterwards.  Each workflow runs fine by itself, but I want to be able to chain then together so that after the new VM is created, the "Secure VM" workflow will run on it.

 

I think what I need to do is somehow pass the name of the new VM from the OUT variable of the "Create custom virtual machine" workflow to the "vm" IN variable on the "Secure VM" workflow.  I have no idea how to do this.  I've watched a bunch of videos on YouTube that are close to what I want and I read a bunch of blog and forum posts that are also close.  Is what I want to do even possible?  Am I going about achieving my goal wrong?

 

Jason

schedule workflow every 15 minutes

$
0
0

Looking to schedule a workflow in vRO 7.1 every 15 minutes.

Capture.PNG


Using policies vs subscription listeners

$
0
0

I am trying to understand if there is any detrimental effect on the system if we are to use subscription listener workflows instead of policies (reference doc vCloud Director 5.1/5.5 blocking tasks and notification package using AMQP ). What I find appealing in subscription listeners is that they can be built up and started on the fly and we would be able to get away from managing policy templates. But there is a concern over utilizing waiting event on over some hundred plus subscriptions. Does anyone have any positive/negative experience to share with one or the other method? Thanks,

How to list EBS Block devices attached to AWS EC2 Instance using VRO workflow?

$
0
0

Please help me to list EBS volume Ids attached to an EC2 instance.

BLOG POST: Migrating the vRO SQL Database to New Server (SKKB1032)

$
0
0

Hi All,

 

In this article we will look into how to migrate the VMware vRealize Orchestrator (vRO) database to new server. In particular we will migrate from Microsoft SQL Server 2014 to a new SQL Server 2016 server.

 

Migrating the vRO SQL Database to New Server (SKKB1032)

http://kaloferov.com/blog/migrating-the-vro-sql-database-to-new-server-skkb1032/

 

Best Regards,

 

Best Regards / Поздрави

Spas Kaloferov| Technical Solutions Architect

www.kaloferov.com/blog

Creating a VM with the VMware Paravirtual SCSI Controller

$
0
0

I'm using the built-in "Create custom virtual machine" workflow to create a new VM.  I can get a new VM to create with the LSI SCSI controller or the BusLogic SCSI controller, but I can't seem to get it to create with the VMware Paravirtual SCSI Controller.  Is this possible?  Is there another process I can run after the VM is created to switch the SCSI controller?

Dropdown/List cannot be populated for a Composite Type attribute(vRO)

$
0
0

hi,

I have a scenario where we need to give user the provision of selecting a value from a predefined set of enum values.

This doesn't seem possible for a attribute inside a composite type.Is there any way to populate a dropdown/list for a attribute of a composite type??

 

Thanks in advance.

Viewing all 10285 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>