/xmlbench/trunk

To get this branch, use:
bzr branch http://darksoft.org/webbzr/xmlbench/trunk

« back to all changes in this revision

Viewing changes to xmlgen/opcgen.h

  • Committer: Suren A. Chilingaryan
  • Date: 2009-10-08 03:17:59 UTC
  • Revision ID: csa@dside.dyndns.org-20091008031759-u5ys779huye7feni
LibXML Pull Parser, FAXPP Parser, Mono security benchmark, multiple fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
 
76
76
char *opcgen_init(unsigned long items) {
77
77
    strcpy(opcgen_xmlns," xmlns=\"http://opcfoundation.org/webservices/XMLDA/1.0/\"\n");
78
 
    strcat(opcgen_xmlns,"xmlns:enc='http://www.w3.org/2001/12/soap-encoding'\n");
 
78
    strcat(opcgen_xmlns,"xmlns:enc=\"http://www.w3.org/2001/12/soap-encoding\"\n");
79
79
#ifndef ORACLE_PARSER
80
 
    strcat(opcgen_xmlns,"xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'\n");
81
 
    strcat(opcgen_xmlns,"xmlns:xsd='http://www.w3.org/2001/XMLSchema'\n");
 
80
    strcat(opcgen_xmlns,"xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n");
 
81
    strcat(opcgen_xmlns,"xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"\n");
82
82
    strcat(opcgen_xmlns,"xsi:schemaLocation=\"http://opcfoundation.org/webservices/XMLDA/1.0/ ../xml.files/opc.xsd\" ");
83
83
#else /* oracle benchmark */
84
 
    strcat(opcgen_xmlns,"xmlns:xsi='http://www.w3.org/2000/08/XMLSchema-instance'\n");
85
 
    strcat(opcgen_xmlns,"xmlns:xsd='http://www.w3.org/2000/08/XMLSchema'\n");
 
84
    strcat(opcgen_xmlns,"xmlns:xsi=\"http://www.w3.org/2000/08/XMLSchema-instance\"\n");
 
85
    strcat(opcgen_xmlns,"xmlns:xsd=\"http://www.w3.org/2000/08/XMLSchema\"\n");
86
86
    strcat(opcgen_xmlns,"xsi:schemaLocation=\"http://opcfoundation.org/webservices/XMLDA/1.0/ ../xml.files/opc-oracle.xsd\" ");
87
87
#endif
88
88
    opcgen_reader();