Start of Content Area

Procedure documentation Configuring Session Handling Locate the document in its SAP Library structure

Use

To prevent exceptions from occurring because of excessive storage requirements on the J2EE server, you can configure session handling. You can define the following parameters:

      Maximum length of a session (timeout)

      How many sessions are possible simultaneously, that is how many mobile devices can be synchronized at the same time

Defining the Timeout

...

       1.      Open the file web.xml in the directory .../misyncservlet/web-inf or, if it is not available, in the directory \apps\sap.com\com.sapmarkets.mesyncjco\servlet_jsp\meSync\root\WEB-INF.

       2.      Enter a value in minutes under <session-timeout>. The value should roughly correspond to the length of a synchronization cycle. The default is 30 minutes.

       3.      Save your entries.

Defining the Maximum Number of Sessions

...

       1.      Open the file web.xml in the directory .../misyncservlet/web-inf or, if it is not available, in the directory \apps\sap.com\com.sapmarkets.mesyncjco\servlet_jsp\meSync\root\WEB-INF.

       2.      Insert the <max-sessions> parameter into the file:

</session-timeout>

</session-config>

<max-sessions>

Max No of Sessions

</max-sessions>

</web-app>

       3.      Replace Max No of Sessions with the required maximum number of sessions.

       4.      Save your entries.

 

End of Content Area