I did not really manage to find proper documentation about this. There are the classes in JCO com.sap.conn.jco.JCoDestination and com.sap.conn.jco.JCoDestinationManager. My questions about them:

  • are they thread safe?
  • if not, are they expensive to create?

Thanks in advance.

Could you recommend me some good tutorial about RFC calls?

link|improve this question

The advice I've seen is that if the documentatino for some code does not say it is thread-safe, you should assume it is not. – Raedwald Nov 11 '11 at 17:02
feedback

2 Answers

Have you read the documentation of connector?

https://websmp105.sap-ag.de/~sapidb/011000358700000730362009D/SAPJCo_Doku_3.0_EN.pdf

I don't understand your question, you try to call a RFC and you have not achieved?

link|improve this answer
hmm. The link is protected. – Gábor Lipták Nov 11 '11 at 15:06
feedback
up vote 0 down vote accepted

I think I have found it finally. http://help.sap.com/saphelp_nwpi711/helpdata/en/48/6437ccbdbc51eee10000000a421937/content.htm

CAUTION In a multi-thread environment, distribution of objects (for example, JCoTable objects) between different threads must be implemented carefully. Note that it is not possible to make multiple concurrent SAP calls for the same direct connection.

So its not thread safe

link|improve this answer
Differentiate between whether the instances are threadsafe and whether the class is; describe whether it would be an acceptable workaround to have one instance per thread. (I know of some systems that use this model, but don't know SAP at all.) – Donal Fellows Nov 11 '11 at 15:26
The problem is that we currently have a class which is a spring singleton, and it is called for every RFC call, and this class has two member variables with the mentioned two class. For any operation this two instance is used. I dont think its ok, since the examples in SAP documents always use local variables for destination objects. – Gábor Lipták Nov 11 '11 at 20:27
1  
You could try using a different lifecycle I suppose, such as prototype or session. – Donal Fellows Nov 11 '11 at 23:22
feedback

Your Answer

 
or
required, but never shown

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