I am a newbie to couchDB. I am trying to write a show function.
Following is my sample document, which i have saved as record1.json.


{
 "parent1type" : "1",
 "parent1property" : [
    {"heading":"System 
Performance","level":"1","open":"true","icon":"green","nochild":"false","child":"true","visible":"true"},
    {"heading":"SAP 
R3","level":"1","open":"true","icon":"green","nochild":"true","child":"false","visible":"true"}
    ],
 "parent2type" : "2"
}


Following is my sample show function, which i have saved as recshow.json
{
  "xmlshows": {
    "toxml": "function(doc, req) {
    var BasicData = <BasicData />;
    basicda...@parent1type = doc.parent1type;

    return {
    'body': BasicData.toXMLString(),
    'headers': {
     'Content-Type': 'application/xml'
    }
   }
  }"
 }
}

I put this in couchdb using curl. But when i use GET to show my document. I am 
getting this following error.
{"error":"unnamed_error","reason":"(new TypeError(\"point is undefined\", \"../s
hare/couchdb/server/main.js\", 1388))"}

Where am i going wrong..??


Regards
J

DISCLAIMER

The content of this email and any attachments ('email') is confidential, may be 
privileged, subject to copyright and may be read and used only by the intended 
recipient. If you are not the intended recipient please notify us by return 
email or telephone and erase all copies and do not disclose the email or any 
part of it to any person. Email transmission cannot be guaranteed to be secure, 
or error free as information could be intercepted, corrupted, lost or destroyed 
as a result of the transmission process. The sender, therefore, does not accept 
liability for any errors, omissions, viruses or delay in transmission as a 
result of this mail.  We monitor email communications through our networks for 
regulatory compliance purposes and to protect our clients, employees and 
business. Opinions, conclusions, and other information in this message that do 
not relate to the official business of NIIT Technologies Ltd. or its 
affiliate(s) shall be understood to be neither given nor endorsed by NIIT 
Technologies Ltd. or its affiliate(s).

Reply via email to