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 12 matches

by kwc5811
Wed Jun 27, 2012 9:53 am
Forum: Plum iOn Q&A
Topic: SOAP webservice never executes
Replies: 23
Views: 84956

Re: SOAP webservice never executes

OK, that is not the best news. Do you have accessible code examples from any of your working ASP.NET clients? As you can see from my code the .NET implementation of web services is very straight forward and thus I am pretty limited as far a parameters go when establishing a web services function.
by kwc5811
Mon Jun 18, 2012 3:34 pm
Forum: Plum iOn Q&A
Topic: SOAP webservice never executes
Replies: 23
Views: 84956

Re: SOAP webservice never executes

Unfortunately no. We abandoned it then because we ran short of time for that survey. I was hoping it had been resolved in the interim. Do you not have any other users making SOAP calls with ASP.NET?
by kwc5811
Fri Jun 15, 2012 1:54 pm
Forum: Plum iOn Q&A
Topic: SOAP webservice never executes
Replies: 23
Views: 84956

Re: SOAP webservice never executes

Any updates on resolving this issue? I think our clients are going to want to roll out a survey next week sometime.
by kwc5811
Tue Jun 12, 2012 4:49 pm
Forum: Plum iOn Q&A
Topic: SOAP webservice never executes
Replies: 23
Views: 84956

Re: SOAP webservice never executes

I have been using the test survey just through the web interface to test the survey. When completing the first page of the survey entering an odd number should return rejected from the SOAP query and should skip the survey over page 2 to page 3. When entering an even number the survey should proceed...
by kwc5811
Tue Jun 12, 2012 8:52 am
Forum: Plum iOn Q&A
Topic: SOAP webservice never executes
Replies: 23
Views: 84956

Re: SOAP webservice never executes

I PM'ed the login and survey name. I am using exactly the same code as before. (I think there may be some issue with the function call not being made as an array of strings for the two parameters as using the SOAP Tester page I have to add commas after the question and answer values to force the pag...
by kwc5811
Mon Jun 11, 2012 4:33 pm
Forum: Plum iOn Q&A
Topic: SOAP webservice never executes
Replies: 23
Views: 84956

Re: SOAP webservice never executes

I am returning to this topic at the request of my client who would like to revisit getting this soap call working with their web application. Testing today has revealed that the issue still exists. Using the SOAP Tester I am able to get valid responses but when testing the survey it never calls the ...
by kwc5811
Mon Nov 14, 2011 12:56 pm
Forum: Plum iOn Q&A
Topic: SOAP webservice never executes
Replies: 23
Views: 84956

Re: SOAP webservice never executes

Is there an updated ETA? We are quickly coming to a deadline on the next administration of our survey and trying to decide what to do about IVR integration.
by kwc5811
Wed Nov 09, 2011 5:52 pm
Forum: Plum iOn Q&A
Topic: SOAP webservice never executes
Replies: 23
Views: 84956

Re: SOAP webservice never executes

Has this update been made yet. I ran my test survey just now and do not seem to be getting the skip logic applied when my webservice returns "rejected".
by kwc5811
Thu Oct 27, 2011 3:14 pm
Forum: Plum iOn Q&A
Topic: SOAP webservice never executes
Replies: 23
Views: 84956

Re: SOAP webservice never executes

Here is the entire class file: Imports System.Web Imports System.Web.Services Imports System.Web.Services.Protocols ' To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. ' <System.Web.Script.Services.ScriptService()> _ <WebService(Namespace:="http://...
by kwc5811
Wed Oct 26, 2011 4:59 pm
Forum: Plum iOn Q&A
Topic: SOAP webservice never executes
Replies: 23
Views: 84956

Re: SOAP webservice never executes

Here is the ASP.NET code for the webservice method: <WebMethod()> _ Public Function plumEval(ByVal question_texts() As String, ByVal answers() As String) As String If question_texts.Length > 0 And answers.Length > 0 Then If CInt(answers(0)) Mod 2 = 1 Then Return "rejected" Else Return "accepted" End...
by kwc5811
Wed Oct 26, 2011 10:08 am
Forum: Plum iOn Q&A
Topic: SOAP webservice never executes
Replies: 23
Views: 84956

Re: SOAP webservice never executes

The login and survey name have been PM'd to you.
by kwc5811
Tue Oct 25, 2011 5:19 pm
Forum: Plum iOn Q&A
Topic: SOAP webservice never executes
Replies: 23
Views: 84956

SOAP webservice never executes

I have setup a new survey for testing the SOAP webservice integration. I created a webservice as per the instructions with a single Function plumEval(ByVal question_texts() As String, ByVal answers() As String) As String. I have tested this function using the tool provided at http://www.plumvoice.co...