session.setStartFrame
Set the starting frame of the session being submitted. You must first ask for a session key with auth.getSessionKey.
Signature:
XmlRpcStruct session.setStartFrame(int userId, String sessionKey, int sessionId, int startFrame)
Call:
URL: http://xmlrpc.renderfarm.fi/session
Method: POST only
Protocol: XmlRpc Transport: HTTP
Handler name: session.setStartFrame
Parameters:
Expected parameters are:
- int userId: the id of the user
- String sessionKey: the last session key generated
- int sessionId: the id of the session being submitted. Returned from the call to auth.getSessionKey
- int startFrame: the first frame of the animation to render
Exceptions:
The list of possible exceptions is :
| Code | Reason |
| 500 | Parameters incorrect |
| 501 | Session doens't belong to user |
| 502 | Session can't be changed if already submitted |
| 503 | Session key invalid |
Returns:
An associative array with the expected parameters :
- success: tells about the success of the call
- key: next session key to use
Sample response:
<?xml version="1.0" encoding="utf-16"?>
<methodResponse>
<params>
<param>
<value>
<struct>
<member>
<name>success</name>
<value>
<boolean>1</boolean>
</value>
</member>
<member>
<name>key</name>
<value>
<string>84329082983049283423094823</string>
</value>
</member>
</struct>
</value>
</param>
</params>
</methodResponse>
