Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6063869
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T09:13:00+00:00 2026-05-23T09:13:00+00:00

Is it possible to validate an xml file against a Relax NG schema in

  • 0

Is it possible to validate an xml file against a Relax NG schema in ANSI C? I have come across this library called libxml2 but all help I could get from it is with respect to how to parse an xml file. Please help.

And if it can be done, what are the steps? Utterly ignorant about this w.r.t. the C environment.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T09:13:00+00:00Added an answer on May 23, 2026 at 9:13 am

    Here is a minimalistic example (you should of course add your own error checking):

     #include <stdio.h>
     #include <stdlib.h>
     #include <sys/types.h>
    
     #include <libxml/xmlmemory.h>
     #include <libxml/parser.h>
     #include <libxml/relaxng.h>
    
     int
     main(int argc, char *argv[])
     {
        int status;
        xmlDoc *doc;
        xmlRelaxNGPtr schema;
        xmlRelaxNGValidCtxtPtr validctxt;
        xmlRelaxNGParserCtxtPtr rngparser;
    
        doc = xmlParseFile(argv[1]);
    
        rngparser = xmlRelaxNGNewParserCtxt(argv[2]);
        schema = xmlRelaxNGParse(rngparser);
        validctxt = xmlRelaxNGNewValidCtxt(schema);
    
        status = xmlRelaxNGValidateDoc(validctxt, doc);
        printf("status == %d\n", status);
    
        xmlRelaxNGFree(schema);
        xmlRelaxNGFreeValidCtxt(validctxt);
        xmlRelaxNGFreeParserCtxt(rngparser);
        xmlFreeDoc(doc);
        exit(EXIT_SUCCESS);
     }
    

    Compile this with gcc -I/usr/include/libxml2 rngval.c -o rngval -lxml2

    You can check the relevant documentation at http://xmlsoft.org/html/libxml-relaxng.html

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is it possible to validate an xml file against its associated schema using Visual
Within a Silverlight library, I need to validate incoming XML against a schema. The
I need to validate a small fragment of an xml file against a schema.
is it possible to validate your xml file without an xsd? this xml file
I need to validate a xml file against DTD schema. I found out that
Is it possible for a .xsd file to also validate a .xml file by
I have an XML file without a Schema in the XML, and I need
Is it possible to validate the following xml with the following schema? I'd like
I have a XML file like this: <myNode> <myProperty name=Title value=MyTitle /> <myProperty name=ProductId
Is it possible to validate an XML file using an XSD loaded at runtime

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.