2012-06-27 80 views
0

的情況下我有一個WebService,當我使用這個Web服務的情況下,會出現以下錯誤錯誤時創建的WebService

// Instance of WebService 
ServicoZap.EnvArqSenhaSoapClient envia = new ServicoZap.EnvArqSenhaSoapClient(); 

錯誤:

Could not find default endpoint element that references contract 'Contract Name' in the ServiceModel client configuration section. This might be because no configuration file was found for your application, or because no endpoint element matching this contract could be found in the client element.

在我的app.config中參考是可以的。

但是爲了測試web服務,我在我的解決方案中使用了另一個名爲Test的項目。

在這個項目(測試)中,我沒有一個app.config(我不知道是否有必要)。

可以幫我嗎?

+0

閱讀的一種方式,它可以幫助你:HTTP://www.codeproject .com/Articles/863/Your-first-C-Web-Service –

回答

1

您需要太在這種情況下的測試項目中的app.config - 將其複製到測試項目來解決這個

+0

但這會影響我的測試項目。該項目在窗口窗體中有很多按鈕。我只是在這個表單中的所有點擊按鈕中調用其他項目,只是爲了測試。用app.config會影響某些東西嗎? –

+0

如果您在項目中沒有app.config,添加app.config不會導致任何問題 – Charleh

+0

非常感謝! –