Quantcast
Channel: VMware Communities: Message List
Viewing all articles
Browse latest Browse all 224018

Re: Create OVF/OVA via ovftool

$
0
0

Brushan, Steve,

 

Solved this by converting any special characters in the username and password to "URL-Safe" characters,
for example:

' ' should be written as '%20' (blank)

'!' should be written as '%21'

'\' should be written as '%5C'

 

You can actually convert ALL characters in the username and/or password to "URL-Safe" characters,

just to make sure you have a valid identifier for the ovftool.

 

Here is a one-liner in Perl:

$string =~ s/(.)/sprintf("%%%X",ord($1))/eg;  # (each char in $string is converted to its Hex-rep., for example: '!' --> '%21')

 

Gonen


Viewing all articles
Browse latest Browse all 224018

Trending Articles



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