次の方法で共有


ServiceMonikerSample

このサンプルは、TCP MetadataExchange サンプルで使用できるクライアントを示しています。 WCF サービス モニカーを利用します。

PurchaseOrderClient.vbs

set obj = GetObject("service:mexAddress='net.tcp://localhost/example/mex', address='net.tcp://localhost/example', contract='IPurchaseOrder', contractNamespace='http://example.org', binding=PurchaseOrderBinding, bindingNamespace='http://example.org'")
for i = 1 to 100
 orderId = obj.Order(i,"Pencil", date)
 Wscript.Echo orderId, date
Next