GithubHelp home page GithubHelp logo

Warning Message about ph-ubl HOT 4 CLOSED

phax avatar phax commented on August 15, 2024
Warning Message

from ph-ubl.

Comments (4)

phax avatar phax commented on August 15, 2024

Hi!
You are mixing classpath resources with file system resources.
If you have a filename, you should either use UBL20Reader.readInvoice (new File (strFilename)) or alternatively use FileSystemResource instead of ClassPathResource.
And Btw. you don't need to pass in the schema manually. It is done automatically within readInvoice by the JAXB Unmarshaller.
hth

from ph-ubl.

alvarezpablo avatar alvarezpablo commented on August 15, 2024

Hello Phlip,

I tried with UBL20Reader.readInvoice (new File (strFilename)) and it works.

And now just I need to capture schema errors, with the XML file has schema
errors I got a null object, How I can get this errors?

Best Regards,

Pablo Alvarez

2015-06-08 2:18 GMT-03:00 Philip Helger [email protected]:

Hi!
You are mixing classpath resources with file system resources.
If you have a filename, you should either use UBL20Reader.readInvoice
(new File (strFilename)) or alternatively use FileSystemResource instead
of ClassPathResource.
And Btw. you don't need to pass in the schema manually. It is done
automatically within readInvoice by the JAXB Unmarshaller.
hth


Reply to this email directly or view it on GitHub
#3 (comment).

from ph-ubl.

phax avatar phax commented on August 15, 2024

Hi Pablo!
The simplest thing to do, is to pass in an additional ValidationEventHandler that collects all errors. Use e.g.

CollectingValidationEventHandler aEventHandler = new CollectingValidationEventHandler ();
InvoiceType aInvoice = UBL20Reader.readInvoice (new File (strFilename), aEventHandler);
if (aInvoice == null)
{
  IResourceErrorGroup aErrors = aEventHandler.getResourceErrors ();
  // ... do something with the information ....
}

from ph-ubl.

alvarezpablo avatar alvarezpablo commented on August 15, 2024

thank you!!!

2015-06-09 6:15 GMT-03:00 Philip Helger [email protected]:

Hi Pablo!
The simplest thing to do, is to pass in an additional
ValidationEventHandler that collects all errors. Use e.g.

CollectingValidationEventHandler aEventHandler = new CollectingValidationEventHandler ();InvoiceType aInvoice = UBL20Reader.readInvoice (new File (strFilename), aEventHandler);if (aInvoice == null)
{
IResourceErrorGroup aErrors = aEventHandler.getResourceErrors ();
// ... do something with the information ....
}


Reply to this email directly or view it on GitHub
#3 (comment).

from ph-ubl.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.