Questions tagged as 'webservice'

1
answer

FATAL EXCEPTION: main (Android + ArrayListHashMapString, String)

This is the LogCat :    09-12 00: 13: 51.745 4047-4047 / com.injob.injob.injobapp W / dalvikvm: threadid = 1: thread exiting with uncaught exception (group = 0x4207bda0)       09-12 00: 13: 51.755 4047-4047 / com.injob.injob.injobapp E...
asked by 12.09.2016 / 07:31
1
answer

Consume Web Service, WCF dynamically

Normally you add a Web Reference in the project and you're ready to consume it from there. But it turns out that I need to do it in the following way. In my App.Config I will be adding the WebService ( .asmx ) and WCF ( .s...
asked by 02.06.2016 / 19:30
2
answers

consume web service echo in java with angle 2? [closed]

Good I am beginning with the web service, create one in java, which I want to connect with angular2, but it throws me an error.     
asked by 15.04.2017 / 01:03
2
answers

System.Data.SqlClient.SqlException: Could not find stored procedure

I'm trying to do a WebMethod that gets me all the information from a table. public void HelloWorld() { var Lista = new List<Atributos>(); using (var con = new SqlConnection(cnn)) {...
asked by 15.11.2018 / 23:01
1
answer

Insert in MySQL database using PHP PDO Web Service

I am developing a PHP Web Service to consult and insert data in a database. Until now, the web service is able to search the table for records, however it is not able to insert them . There are only three php files. The first one is dbcon...
asked by 05.11.2018 / 22:53
1
answer

How to receive a POST request

I am connecting to an api which asks me as a final step to receive status notification through a POST, that is, the api sends me a request in POST type. I have developed a web servise in .asmx type [WebService(Namespace = " http://tempuri.org/...
asked by 29.09.2018 / 02:16
1
answer

WebService PHP MySQL make two queries

I have this WebService in php and MySQL and the intention is to do the $ query2 (which is an update) and then execute the $ query that is a SELECT. As I see in phpMyAdmin you are running the UPDATE, but the client is not receiving the SELECT....
asked by 02.10.2018 / 13:04
1
answer

soapAction of NuSoap in pure PHP

I have tried everywhere to achieve it but it has been impossible for me, I do not want to use NuSoap and the only thing I need to match everything with the PHP SoapClient is to be able to indicate the soapaction as I can mount it in the NuSoap....
asked by 18.05.2018 / 01:01
1
answer

Search for registration in Web Service Java

I am starting with this from the Web Service Rest and I have encountered the problem when doing a crud with the database. For example, I need to search for a record but not for its PK but for another field, is it possible to do this? Could yo...
asked by 27.04.2018 / 04:43
1
answer

How to include sequence in WebService Restful

I have created a database in Oracle 11G , where there is a sequence to make the autoincrementable records: CREATE SEQUENCE S_CATEGORIA MINVALUE 1 START WITH 1 INCREMENT BY 1 NOCACHE; Through a webservice I need to save a new record to...
asked by 11.04.2018 / 22:54