12

I am build an Oracle Agile PLM CustomAction Px.

I called a webservice inside the Px to process some data.

After i deployed, it gave "Class not found exception" for javax.xml.ws.Service

so i copied jaxws-api-2.1-1.jar in \Agile\Agile931\integration\sdk\extensions folder.

After this this error was gone.

Similarly i copied some other jars to remove "Class not found exception" for other classes.

But now i dont know how to remove this error:

Requested factory com.ctc.wstx.stax.WstxInputFactory cannot be located. Classloader =Agile.root:0.0.0

peterh
  • 11,875
  • 18
  • 85
  • 108
Raj
  • 255
  • 2
  • 6
  • 17

2 Answers2

7

If you're using Maven you can add the dependency

<dependency>
    <groupId>com.fasterxml.woodstox</groupId>
    <artifactId>woodstox-core</artifactId>
    <version>5.0.2</version>
</dependency>
Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
Reimeus
  • 158,255
  • 15
  • 216
  • 276
2

com.ctc.wstx.stax refers to the Woodstox StAX parser. You can download that here, and add it to your classpath.

Nicolas Raoul
  • 58,567
  • 58
  • 222
  • 373
skaffman
  • 398,947
  • 96
  • 818
  • 769