ilyak's Posts

Thank you for your reply. Very helpfull. As far as I understand calling to  VimPortType.findExtension can be done only via static calls (In case my vCenter has only self signed certificate)
Our plugin performing https requests to the back-end server. According to the SDK samples, we can implement ThumbprintTrustManager/ThumbprintHostNameVerifier in order to be able to make requests... See more...
Our plugin performing https requests to the back-end server. According to the SDK samples, we can implement ThumbprintTrustManager/ThumbprintHostNameVerifier in order to be able to make requests to the https server with self signed certificate. But how can it work, if the web client has multiple plugins which have ThumbprintTrustManager? It seems that all plugins are running in the same VM, so calls like "HttpsURLConnection.setDefaultSSLSocketFactory(sc.getSocketFactory());" will influence not only our plugin but other plugins, too.
The extension is registered in the extension manager  it has populated serverThumbprint  in the vim.ExtensionManager.extensionList[my-extension].server (see attachment) but when my java code do... See more...
The extension is registered in the extension manager  it has populated serverThumbprint  in the vim.ExtensionManager.extensionList[my-extension].server (see attachment) but when my java code doing a rest requests to the server it always gets an exeption: com.sun.xml.internal.ws.client.ClientTransportException: HTTP transport error: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
My extension is making rest requst via https. How can I know that ssl certificate of the backend server of my extension is installed on the vsphere client ? If the certificate isn't installed w... See more...
My extension is making rest requst via https. How can I know that ssl certificate of the backend server of my extension is installed on the vsphere client ? If the certificate isn't installed what is the reason?
How can I know that ssl certificate of the backend server of my extension is installed on the vsphere client ?
make sure that you are using the latest version of the sdk 
@type("samples:WhatsIt, samples:Whatelse") // declares the supported object types public class MyAdapter implements DataProviderAdapter {
Hi, My plugin is making rest requests to the remote server, the same server from where the plugin package was downloaded. I have registered the plugin in my vCenter 6.5 via extension-registrati... See more...
Hi, My plugin is making rest requests to the remote server, the same server from where the plugin package was downloaded. I have registered the plugin in my vCenter 6.5 via extension-registration.sh script form the html-client-sdk. During http request from my java service i'm getting an error: com.sun.xml.internal.ws.client.ClientTransportException: HTTP transport error: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target.   How can I solve this problem ?
Hello, I'm developing a new html 5 web client plugin (sdk 6.5), I want to add a summary for our custom object. The summary should have header and two or three portlets. In the old flex sdk we ad... See more...
Hello, I'm developing a new html 5 web client plugin (sdk 6.5), I want to add a summary for our custom object. The summary should have header and two or three portlets. In the old flex sdk we added  <variable name="summaryHeaderView" value="qualified flex class name"/> in the templateInstance of the object in the plugin.xml.   It seams that this way is not suitable for html5 plugin.   How can we solve it ?    
Hello, Is there some standard way to add logger to the flex (client) code, which will automatically redirect them to server ? Thanks.