Sudheera
Sudheera

Reputation: 1947

SAP Java Connector (JCo) mocking server

Is there are any mock servers that I can connect with a JCo client library and test my client code. I'm developing a code for a SAP client and I do not have the access to the server at the moment, but I need to verify that the code works with a mock server. Anybody knows how to do this? thanks...

Upvotes: 2

Views: 855

Answers (2)

S_D
S_D

Reputation: 105

there is no mock SAP servers available freely. The best way you can have this is register for a SAP netweaver trial version and set it up in your local environment.

Upvotes: 1

ooxi
ooxi

Reputation: 3329

I would not recommend mocking the SBO in all but the most trivial cases since the complexity of the integration comes mostly form the behavior of the server.

For trivial cases use a standard mocking framework like Mockito.

Upvotes: 1

Related Questions