2015-05-15 143 views
0

我使用"Microsoft Build and Simulate iOS in the Cloud"在Macincloud.com上建立遠程構建。我收到以下錯誤,當我試圖建立一個IOS應用Visual Studio 2015安裝程序在雲中構建和模擬iOS

Severity Code Description Project File Line Error Not implemented (Exception from HRESULT: 0x80004001 (E_NOTIMPL)) 0
Severity Code Description Project File Line Error An error occurred uploading to the build server https //myserverinstance.macincloud.com:3000: Error: Hostname/IP doesn't match certificate's altnames: "Host: myserverinstance.macincloud.com. is not in the cert's altnames: DNS:MAC123.local, IP Address:FE80:etc, IP Address:123.12.123.123" BlankCordovaApp3 C:\Users\ME\Documents\Visual Studio 2015\Projects\BlankCordovaApp3\BlankCordovaApp3\MDAVSCLI 1

一個項目提的是,我沒有安裝任何東西,VS-MDA-遠程已經在我的系統macincloud上。 http://i.stack.imgur.com/gvego.png

任何想法如何讓這個工作?

回答

3

當前使用MacInCloud的關鍵是您需要使用機器的IP而不是主機名稱,因爲操作系統報告的主機名稱與Internet上的主機名稱不同。

在終端應用程序,類型:

ifconfig | grep "inet " 

然後,您會看到這樣的事情:

inet 127.0.0.1 netmask 0xff000000 
inet 192.168.0.100 netmask oxffffff00 broadcast 192.168.0.1 

在這種情況下,你代替主機名使用192.168.0.100 。

在這裏看到更多的細節:https://msdn.microsoft.com/en-us/library/dn858446(v=vs.140).aspx

+0

感謝 - 它的工作。一旦你失誤,修復需要幾個額外的步驟。我在Host Field中通過Tools-> Options-> Tools for Apache Cordova-> Remote Agent Configuration在Visual Studio 2015 Ent RC中添加了macincloud.com構建服務器實例 - 遠程 - IP地址。當我這樣做時,安全引腳需要在遠程系統上使用vs-mda-remote generateClientCert進行重置,並反映在VS配置中。 –

0

我有這個錯誤,當我試圖調試遠程Mac上我的科爾多瓦的應用程序。在stakoverflow和其他論壇中有很多解決方案。但在我的情況下,錯誤是由於某種原因,我的Mac書pro的主機名改變了。

上一篇:我-mac.local

現在:我-MAC

所以我在我的遠程代理配置窗口中更改的主機名。這對我有效。所以如果你看到上面的錯誤信息,請檢查你的Mac的主機名。

請訪問我的博客瞭解更多科爾多瓦祕訣。

http://guntucomputerhacks.blogspot.com.au/

相關問題