I am trying to connect to SFDC via the instructions in the sample solutions that are included with Clover. I followed all of the directions in 06-Graph-1.grf including updating the credentials in the Request Body Structure. Here is the error from the Console:
ERROR [main] - Error during graph initialization !
Element [1343738314141:example08_1]-Phase 0 can’t be initialized.
at org.jetel.graph.TransformationGraph.init(TransformationGraph.java:477)
at org.jetel.graph.runtime.EngineInitializer.initGraph(EngineInitializer.java:272)
at org.jetel.graph.runtime.EngineInitializer.initGraph(EngineInitializer.java:239)
at org.jetel.main.runGraph.runGraph(runGraph.java:377)
at org.jetel.main.runGraph.main(runGraph.java:341)
Caused by: LOG_INTO_SALESFORCE …FATAL ERROR !
at org.jetel.graph.Phase.init(Phase.java:182)
at org.jetel.graph.TransformationGraph.init(TransformationGraph.java:475)
… 4 more
Caused by: org.jetel.exception.JetelRuntimeException: java.lang.NoClassDefFoundError: com/ibm/wsdl/util/xml/DOM2Writer
… 6 more
I have the WSDL URL set like this: ${DATAIN_DIR}/wsdl_jsp.xml …This is the file I downloaded from SDFC using the admin credentials. I don’t think this is the problem though.
I downloaded the jar file from http://mvnrepository.com/artifact/com.f … /force-wsc, but I’m not even sure if that is the missing piece here.
Are there some java and/or Clover specific configurations here that I don’t know about? I’m thinking maybe there are some java libraries in that jar file that this graph needs to read?
Tom