06-06-2012 03:14 AM - edited 03-17-2019 11:17 PM
Hi all,
We are planning to create 2 conferences at once on MCU by using it's API.
But with xml below, only "Meeting 1" is created.
Is there any syntax error?
The model of MCU is MCU4510, SW version:4.3(2.18), and
we use "WizTools.org RESTClient 2.4" to post XML.
<?xml version="1.0"?>
<methodCall>
<methodName>conference.create</methodName>
<params>
<param>
<value>
<struct>
<member>
<name>authenticationUser</name>
<value>
<string>admin</string>
</value>
</member>
<member>
<name>authenticationPassword</name>
<value>
<string>password</string>
</value>
</member>
<member>
<name>conferenceName</name>
<value>
<string>Meeting 1</string>
</value>
</member>
<member>
<name>startTime</name>
<value>
<dateTime.iso8601>20120607T10:45:00</dateTime.iso8601>
</value>
</member>
<member>
<name>durationSeconds</name>
<value>
<int>3600</int>
</value>
</member>
<member>
<name>conferenceName</name>
<value>
<string>Meeting 2</string>
</value>
</member>
<member>
<name>startTime</name>
<value>
<dateTime.iso8601>20120607T10:45:00</dateTime.iso8601>
</value>
</member>
<member>
<name>durationSeconds</name>
<value>
<int>3600</int>
</value>
</member>
</struct>
</value>
</param>
</params>
</methodCall>
Solved! Go to Solution.
06-06-2012 06:03 AM
Sorry this is not directly answering what you are looking for, however any particular reason you are looking for to include two conference creation request queue into one post message?
We highly recommend each post contain single conference management (create with conference parameters, modify/update with conference parameters, delete) message.
This will making sure response from MCU (200 OK on Post) relay on single request and also not overload MCU for processing multiple query from single post.
Also when become troubleshooting/diagnostic, make it easier to follow the process.
06-06-2012 06:03 AM
Sorry this is not directly answering what you are looking for, however any particular reason you are looking for to include two conference creation request queue into one post message?
We highly recommend each post contain single conference management (create with conference parameters, modify/update with conference parameters, delete) message.
This will making sure response from MCU (200 OK on Post) relay on single request and also not overload MCU for processing multiple query from single post.
Also when become troubleshooting/diagnostic, make it easier to follow the process.
06-06-2012 11:56 PM
Hi Taniguchi-san,
We are planning to create/destroy hundreds of conferences on MCU.
In that case, we should overwrite configuration.xml, but I thought if we could create/destroy many conferences at once by using its API, it is safer way than overwriting the configuration.xml.
You mean we'd better to find the way to query POST repetitively?
Kotaro
06-07-2012 02:34 AM
You may create and destroy as well as modify existing conference on MCU by using API.
However each RPC/XML post should contain command(s) for single conference to manage it remotely.
In other words, “conference.create” method call should have single conference creation (you may add conference parameters as much as needed within that single conference).
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide