ericr999's Accepted Solutions

My TAM proposed this kb, and it worked in my case. It removed the previous authentification with the PSC so I'm back with a Basic Auth from the Web Server. You have to login with your root acc... See more...
My TAM proposed this kb, and it worked in my case. It removed the previous authentification with the PSC so I'm back with a Basic Auth from the Web Server. You have to login with your root account. I thought that by doing a reset, I would revert back to the vmware/vmware user/pass. Or my own one that i configured a while ago to replace the default one, but nah. Its really the root account its asking. https://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=2150673 I'm waiting for a reply from the support to see if I can stay like this, or should I connect the Control Center back with the PSC. I think I'll just have to unregister and re-register the PSC... its a guess, but since I don't have the password to unregister it, I have to wait for that guy to test this part.
Finally, we've found our "problem" Within the actions that workflow was calling, it was using com.vmware.library.powershell, invokeScript, within that script there was: System.log ( result.ge... See more...
Finally, we've found our "problem" Within the actions that workflow was calling, it was using com.vmware.library.powershell, invokeScript, within that script there was: System.log ( result.getHostOutput() ); We've re-created a new action without that part for our specific workflow. Thanks for your help.
I've finally found something. For some reason, when I do the GetIPAMRecord(via VRO), i receive the record with all the values. Except that all values with 0/1, end up with "false". Even when its ... See more...
I've finally found something. For some reason, when I do the GetIPAMRecord(via VRO), i receive the record with all the values. Except that all values with 0/1, end up with "false". Even when its set at 1. When I do the same query with SOAP UI, the value is set at 0 or 1. I've double checked with VRO + Fiddler, and I can see that the GetIPAMRecord has values in 0 and 1 format, but then VRO stores it in my variable with false. I've double checked Men & Mice, can use values in the format false, true, 0, 1. So VRO does something to the boolean values in a SOAP call ? I'm currently using VRO 5.5.3, planning to move to 7, soon. For now I've fixed my problem by manually setting the value with true for the one that I know that will have true. But who knows if it will always be true.