我从vbscript调用的web服务有问题。该服务有一个我需要调用的方法,它有一个Guid作为参数之一。我不知道如何将guid传递给webservice。试过这样:
proxy.SiteExists "{A523D7D2-692A-4464-9B0F-FED023641F03}", "/site"
创建代理对象(WCF服务名字对象)没有任何问题,我可以调用测试ping ok。以上导致以下错误消息:
"Type 'System.Collections.Generic.Dictionary`2[TKey, TValue]'
cannot be exported as a schema type because it is an open generic type.
You can only export a generic type if all generic parameter types are
actual types."
也许我传递参数的方式有问题,或者将Guid作为字符串传递不正确?