Questions tagged [oracle-xdk]

Oracle XML Developer's Kit (XDK) is a collection of utilities for manipulating XML in Oracle databases.

The XDK is a set of libraries, components, and utilities which allow developers to communicate with the Oracle database using XML. Developer's can build and deploy C, C++, and Java software programs that process XML. It also works with and supports the Oracle XML DB, which is a set of technologies used for storage and processing of XML in the database. The standards-based XML functionality includes an XML parser, an XSLT processor, an XML class generator, XML SQL Utility, JavaBeans, and XSQL Servlet. (source)

6 questions
8
votes
2 answers

Where to get Oracle jar files for 11.2.0.3 - xdb, aq, i18n, xmlparser

I'm trying to update a legacy Java application to be compatible with Oracle 11g version 11.2.0.3. The application was running on Oracle 10g version 10.2.0.4 and uses Oracle Advanced Queues. It has Maven dependencies declared for: aq 10.2.0.4.0 xdb…
Rich Cowin
  • 668
  • 1
  • 8
  • 17
3
votes
1 answer

How to create xml in oracle

How to create xml in oracle using sql query.
mageshv
  • 31
  • 2
1
vote
4 answers

How can I tell my application that it shouldn't use an external Service Provider from a jar?

For some reason we need the xdb.jar from the Oracle XDK. This jar depends on the xmlparserv2.jar. The actual problem is that the xmlparserv2.jar comes with some provider-configuration files (META-INF/services). The jar has Services Providers for…
alexvetter
  • 1,998
  • 2
  • 16
  • 42
1
vote
1 answer

How to pass an XML document as a parameter to an XSL transform in java (oracle xdk)?

I'm trying to pass an XML document to an XSLT stylesheet as a parameter. I believe the code is using the oracle XDK for transformations (it's using JDK 1.4.2, and Spring, and I'm new to the codebase, so I'm not sure what is getting loaded in the…
Peter Hart
  • 4,955
  • 2
  • 25
  • 30
0
votes
2 answers

can java 1.7 support XSLT 3.0

I want to transform json to json and came to know that XSLT 3.0 supports json to json transformation. But wanted to check if java 1.7 supports xslt 3.0 specs. I am aware there could be other frameworks that may provide support. For example, sax…
Ravi
  • 323
  • 2
  • 6
  • 18
0
votes
1 answer

XML Validation using Oracle XDK SAX/DOM Parser

I am trying to validate xml against xsd using SAX/DOM parser, both the files are stored as CLOB column in the database. I have the requirement to report all the validation errors and based on some helpful advice/code from the earlier posts in this…