i need to test a module without actually calling our sap provider via executing a "real" JCoFunction.

how do i instantiate a "formally correct" JCoFunction?

i can even just deal with a JCoParameterList but just can't figure out how to instantiate it or even mock it.

link|improve this question

17% accept rate
1  
Which JCo version? There are huge differences between 2 and 3! – vwegert Nov 4 '10 at 18:56
we're using sap-jco version 3.0.0 – mfirry Jan 13 '11 at 8:37
feedback

2 Answers

Why not this?

new JCO.ParameterList()
link|improve this answer
it's an interface – mfirry Nov 4 '10 at 16:29
Here it says that it's a class: huihoo.org/openweb/jco_api/com/sap/mw/jco/… – thejh Nov 4 '10 at 16:34
will look into that BUT for now i'm talking about com.sap.conn.jco.JCoParameterList – mfirry Nov 4 '10 at 16:35
Where's the javadoc? Is it publically accessible? – thejh Nov 4 '10 at 16:52
apparently not. i'm gonna have to ask my boss to get a "SAP Service Marketplace" account. meanwhile, if anybody else already did something like this, it'd be nice to give it a look. – mfirry Nov 4 '10 at 17:11
feedback

The SAP Java Connector (SAP JCo) is a toolkit that allows a Java application to communicate with any SAP System.

These guys here tried to do the same, using the 3.0 version of the SAP JCo: Can a JCo server simulate a SAP remote function?

My experience from last week is that it is not possible to create a mock SAP server to act like a JCoDestination.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.