I created a java program for outbound call. When my program runs i got this error:
<?xml version="1.0"?>
<queuecall status="failed">
Missing "login" POST variable.
</queuecall>
this is my url:
Code: Select all
http://outbound.plumgroup.com/webservice/queuecall.php?login=xxxx&pin=xxxxx&phone_number=tel:+1617712xxxx;postd=1327&start_url=http://www.site.com/voicexml/test.php
<?php
header("Content-type: text/xml");
echo("<?xml version=\"1.0\"?>\n");
?>
<vxml version="2.0">
<form>
<block>
<prompt>
Test outbound call
</prompt>
</block>
</form>
</vxml>
When i tried this using Plum Web Service it works, though i wasn't included the extension number. What am i missing here?
Thanks,
harold