Is there other way to retrieve XML data from URL (not using GetDocumentByURL)

Hi,In Lotus Domino, I know there is a method GetDocumentByURL that will retrieve XML data from URL and store in an embedded item. But item can store only 65Kb and it is not enough for me. And it too complicated when I have to extract data from embedded item to file and reread it.

So, anyone know other simple way (I prefer java class) to retrieve XML data from URL.

Thanks in advance,

Trung

Subject: Is there other way to retrieve XML data from URL (not using GetDocumentByURL)

Try fleXML for Domino - it’s a free tool for importing XML into Notes. It uses the JAX-P classes from Sun.

Subject: Is there other way to retrieve XML data from URL (not using GetDocumentByURL)

So, anyone know other simple way (I prefer java class) to retrieve XML data from URL.

Well there you have it: why not use Java? There are more ways to grab XML in Java than I’ve had hot dinners (almost).

Subject: RE: Is there other way to retrieve XML data from URL (not using GetDocumentByURL)

Hi Benpoole,Could you please tell me more detail about the other ways.

Thanks you,

Trung

Subject: RE: Is there other way to retrieve XML data from URL (not using GetDocumentByURL)

Have a look here for starters.

Or how about . . .

Java API for XML Processing (JAXP) supports processing of XML documents using DOM, SAX, and XSLT by letting applications parse and transform XML documents independent of a particular XML processing implementation and by giving developers the flexibility to swap between XML processors without making application code changes. (See “Explore online XML data with Java programming.”)

Java API for XML Registries (JAXR) provides a uniform and standard API for accessing different kinds of XML registries (an enabling infrastructure for building, deploying, and discovering Web services). (See Java technology standards.)

Java API for XML-based RPC (JAX-RPC) enables developers to develop SOAP-based interoperable and portable Web services. (See Java technology standards.)

SOAP with Attachments API for Java (SAAJ) enables developers to produce and consume messages conforming to the SOAP 1.1 specification and SOAP with Attachments note. (Start with “Send and receive SOAP messages with SAAJ”; for more on XML technologies, try the developerWorks XML section.)

Or try google search. There’s tons of information available.

dgg