I am calling a wcf service created as a COM. I can call the service and service is inserting data correctly. But when i am trying to get a string value returned from wcf method i am getting this error. Not sure what iam doing wrong.
Error Type: Microsoft VBScript compilation (0x800A0401) Expected end of statement Value = Obj.GetString "TEST","123.*"
enter code here
<%@ Language=VBScript %>
<html>
<head>
</head>
<body>
<%
Dim Obj
Dim Value
Set Obj = Server.CreateObject("WCFCom.IClass")
Value = Obj.GetString "TEST","123.*"
%>
</body>
</html>