Posts

Showing posts with the label ballerina

undefined function 'xmls:getString'

Image
Clash Royale CLAN TAG #URR8PPP undefined function 'xmls:getString' I am trying to run a small program with ballerina. Here's my code. import ballerina.lang.system; import ballerina.lang.xmls; function main(string args) { system:println("Hello, World!"); string xmlvar = "<bookstore>n<book category="cooking">n <title lang="en">Everyday Italian</title>n <author>Giada De Laurentiis</author>n <year>2005</year>n <price>30.00</price>n</book>n<bookstore>"; string var1 = xmls:getString(xmlvar, "/bookstore/book[1]"); system:println(var1); } I have already imported ballerina.lang.xmls. Any idea ? You are trying to pass a ballerina string value to the getString method signature hence the error. getString(xml msg, string xPath) – Suhan Dharmasuriya Feb 22 '17 at 7:29 ...