Tagged Questions
0
votes
1answer
24 views
Reusable html user interface for all web applications regardless of the technology used [on hold]
All the web applications of my company must use the same header/footer. Since that the majority of our applications are made with Asp.net MVC, it was easy to just create a DLL that contains views for ...
-5
votes
0answers
28 views
can we make webservices for an Android app in PHP using WAMP [on hold]
Can we create web services to fetch data from server and then to client side, using PHP in WAMP?
I have WAMP installed on my PC and I usually work on WAMP. I do not know, if we could do this, if yes ...
0
votes
1answer
13 views
Twilio Connect -Create TWIML Application programatically
Currently I use Twilio normally in my app.
I have created and configured TWIML application manually in my Twilio account.
When migrating to Twilio Connect I will no longer have access to account.
All ...
0
votes
0answers
11 views
Run web service
I need to download some data using the web service. I have WSDL and XSD files to access this web service. Also I tested the following request using online commercial API of web service providers.
...
1
vote
1answer
20 views
How to make a PHP SOAP client and store the result xml in php variables
I am using PHP and have never used SOAP and PHP before.
I need to build a Soap PHP Client which is calling and retrieves information from a
Soap server .NET Web service.
I'm currently working on ...
-1
votes
0answers
16 views
PHP Upload server file to webservice
My website is communicating with the php server, which is handling all the API call with a Webservice by supported APIs.
There is one video file stored on my php server, and right now, I need to ...
0
votes
0answers
15 views
Android database from webservice
I'm wondering the easiest way to go about this. I've used retro fit for java before to post and get from endpoints in web service my friend wrote in python.. However I've never wrote server side ...
0
votes
1answer
29 views
File_get_contents returning null/invalid format. when webservice which is been called returns an object
I have a C#(Rest Service) web service which returns an object.
public object[] GetObject()
{
object[] arr = new object[3];
arr[0] = "String literal";
arr[1] = 3;
arr[2] = null;
return arr; ...
0
votes
0answers
40 views
Can we obtain iOS inApp product details via webservices [Php]? [on hold]
I am developing Game Web Services.
We are developing a game in which we have to make use of iOS inApp Purchase.
I only have the id of inApp products. Do I need to know the name of the product as ...
0
votes
0answers
25 views
How to open encrypted PDF with PHP?
I would like to know, is it possible to open Acrobat-generated PDF's encrypted with a simple password using PHP? For example, a function similar to:
$data = pdf_open($file, $password);
I know the ...
0
votes
0answers
26 views
PHP Webservice API Creation Best Practices
I am a .Net developer, with no experience in PHP. I have to create a new webservice in PHP, that will be consumed by multiple clients, including Wordpress.
I have been trying to figure out the best ...
0
votes
1answer
28 views
How many bytes can I send via POST / GET?
I've a simple Android app, which takes a picture from the camera, then converts the image to Base64 characters. Then I send this String to a webservice, and webservices converts this Base64 to a ...
0
votes
0answers
9 views
Jax Ws and Nusoap MessageCreationException
I'm trying to create a web service client using Jax Ws for the client and Nusoap (PHP) for services.
When I try to call a service i get the following error:
...
0
votes
1answer
16 views
NUSOAP generating additional characters on IIS
I'm having a bit of a problem with nuSoap and IIS. The thing is that when calling a webservice i'm getting the following error.
XML error parsing SOAP payload on line 1: Mismatched tag
The same ...
0
votes
2answers
39 views
Convert System.String array into php string array
I have a client developed in C# which sends data via web services on my website (developed with Symfony).
I try to send a System.String array, but when I recover it in PHP, it contains an index-value ...