We've Moved! Please visit our new and improved forum over at our new portal: https://portal.plumvoice.com/hc/en-us/community/topics

Search found 42 matches

by robbiesullivan
Fri Nov 11, 2005 11:16 am
Forum: Plum DEV Q&A
Topic: session.telephone.dnis is blank...
Replies: 2
Views: 4773

Please disregard this ... I can see it now...
by robbiesullivan
Fri Nov 11, 2005 11:03 am
Forum: Plum DEV Q&A
Topic: How can I retrieve the callerids name?
Replies: 1
Views: 4418

How can I retrieve the callerids name?

I've heard that this is possible in vxml. I've done it using a propiratry system, but I need to retrieve this information inside my vxml application.

any ideas
thanks,
Rob
by robbiesullivan
Fri Nov 11, 2005 10:44 am
Forum: Plum DEV Q&A
Topic: session.telephone.dnis is blank...
Replies: 2
Views: 4773

session.telephone.dnis is blank...

I'm trying to access this varaible to get the called number but it is blank. I don't think i have an analog service.

Any ideas as to what the problem might be.
Thanks,
Rob
by robbiesullivan
Thu Nov 10, 2005 2:30 pm
Forum: Plum DEV Q&A
Topic: Having trouble posting a var using the Data tag..
Replies: 3
Views: 6310

solved it ... one of my variables was a integer. I had to convet it to a string inorder to pass it through to the namelist.
by robbiesullivan
Wed Nov 09, 2005 8:37 am
Forum: Plum DEV Q&A
Topic: Having trouble posting a var using the Data tag..
Replies: 3
Views: 6310

The returned value is a valid xml document in the format of <string>fdgfd</string> I also put some logging into my webservice to validate that when the call is occuring from the vml using a VAR it doesn't actually get into the webservice. This leads me to belive that the information is not being pos...
by robbiesullivan
Sun Oct 30, 2005 10:44 am
Forum: Plum DEV Q&A
Topic: Having trouble posting a var using the Data tag..
Replies: 3
Views: 6310

Having trouble posting a var using the Data tag..

Using the following syntax, I'm receiving an error back when trying to post a VAR declared in my vxml. I can post a filled Field varaiable fine, but when I try the <var> type I receive the following error: errmsg uncaught exception: [object Object] line 0 linetxt tokentxt <var name="myVar" expr="1" ...
by robbiesullivan
Sat Oct 22, 2005 1:34 pm
Forum: Plum DEV Q&A
Topic: trying to post via the <data> tag...
Replies: 2
Views: 4881

that worked.

Thanks,
Rob
by robbiesullivan
Fri Oct 21, 2005 7:14 pm
Forum: Plum DEV Q&A
Topic: trying to post via the <data> tag...
Replies: 2
Views: 4881

trying to post via the <data> tag...

Hello, I'm trying to post to a webservice via the <data> tag. I've verified I can actually post via HTTP using the webservice. my syntax is as follows: <data name="myWS" method="post" srcexpr="http://blablah.net/public/blablah.asmx/RetrieveCrap" namelist="theID"/> I receive the following error back ...
by robbiesullivan
Sat Oct 15, 2005 9:29 am
Forum: Plum DEV Q&A
Topic: calling a webservice from a voice xml app.
Replies: 5
Views: 9702

I think i've figured out what I need to do, I'm gonna test some things and see how it goes.

thanks
Rob
by robbiesullivan
Sat Oct 15, 2005 9:03 am
Forum: Plum DEV Q&A
Topic: calling a webservice from a voice xml app.
Replies: 5
Views: 9702

So I can't just call the webservice directly in any way. I'll have to adjust the application to post and get from an application server as a wrapper around the webserivce. Or I'll just embed the logic in the application server. Kind of a pain, but doable. Any idea if you guys will ever support an ex...
by robbiesullivan
Sat Oct 15, 2005 6:07 am
Forum: Plum DEV Q&A
Topic: calling a webservice from a voice xml app.
Replies: 5
Views: 9702

I guess its the calling systax I was looking for. I understand that I can use a propriatary voxio call. I have tried: <data name="MyWS" src="myservice.com/me.asmx?wsdl"/> I don't receive an error at a data tag. But when I try to access a method from the webservice I receive the following error. errm...
by robbiesullivan
Mon Oct 10, 2005 3:46 pm
Forum: Plum DEV Q&A
Topic: calling a webservice from a voice xml app.
Replies: 5
Views: 9702

calling a webservice from a voice xml app.

Hello, I'm porting a vml app from voxio to plum. The application was built around calling a webservice to get and set data in the database. <script> var somethingWS = Voxeo.SOAPClient.loadWSDL("http://webservice.net/public/myservice.asmx?wsdl"); var ssomeData= somethingWS.DoSomethingCool(someID); </...