NetTalk Central
NetTalk Web Server => Web Server - Ask For Help => Topic started by: MikeR on September 12, 2017, 12:59:19 PM
-
in the ExampleJsonRequest routine of a netwebservice I get the following compile errors for each input parameter
Must specify identifier - C:\Users\Public\Documents\SoftVelocity\Clarion10\Solutions\ClaimsApi\ClaimsApi005.clw:3693,33
Unknown identifier: CLAIMNUMBER - C:\Users\Public\Documents\SoftVelocity\Clarion10\Solutions\ClaimsApi\ClaimsApi005.clw:3693,21
the line in the code is :
collection.append(ClaimNumber,'**value**')
see attachment for a screen shot
-
I think I found the bug in the template generated code Bruce.
The tagname must be in quotes:
eg.
collection.append('ClaimNumber','***value***')
not collection.append(ClaimNumber,'***value***')
-
thanks - fixed in 10.07