Questions tagged as 'soap'

1
answer

Is it possible to have a constant populated through a Spring @Service?

We have a web service that one of its parameters is called source and this source is always validated against a code in the database. For each of our services, I have to validate this code. This code does not change, so I want to keep it in a...
asked by 23.08.2017 / 06:02
1
answer

use WCF service method returns The caller was not authenticated by the service

I have a project with multiple WCF services compiled, and accessible by another project on the same machine. Now I'm trying to connect to one of these services from another machine. I put the service refence URL, but it asks me for authenticatio...
asked by 03.08.2017 / 15:43
1
answer

how to send an array list to a web service

Hello, I want to know how I can send an array list to a web service via php, this is my web service. <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3...
asked by 31.07.2017 / 19:58
1
answer

Connection Webservice SOAP HTTPS PHP (Santander)

I'm trying to connect to a SOAP webservice using a php client. The client I ride like this: $client = new SoapClient('https://urlwebservice?wsdl); When I call the function: $client->__getFunctions(); I get the following return:...
asked by 23.06.2017 / 16:16
1
answer

Parameter passing in the SOAP web-service

Developed a web-service to list students in a class. Insert, List are ok. How much to Delete are not occurring. codelist.php<?php//clienteinclude"cliente.php"; //chamada do metodo SOAP $result = $client->call('listaAluno...
asked by 03.06.2017 / 22:51
1
answer

PHP SOAP Authentication

I'm having a problem creating an authentication mechanism using SOAP and PHP. No further delay. Here is the code: //servidor $namespace = '/service?wsdl'; $server = new soap_server(); $server->configureWSDL('myWS', $namespace); //registra...
asked by 01.06.2017 / 19:31
0
answers

Use of framework in java web project

I have a project in Java that runs services (SOAP / REST) and we have a framework that supports this, generates a report, makes REST calls and etc, and I also have a java web project that captures a list in View that the user has entered. We wan...
asked by 11.04.2017 / 20:35
1
answer

Problem trying to connect to SOAP Web Service

I'm trying to connect to a web service by PHP that the documentation provided uses the SOAP protocol, but I can not even connect through the provided URL. URL: link My code: ini_set('soap.wsdl_cache_enabled',0); ini_se...
asked by 14.03.2017 / 00:39
1
answer

Error running WebService Java

I am trying to execute a Web Service SOAP from the server GlassFish Server 4.1.1 on NetBeans 8.2 . Attempting to run the following error is returned: Web Service Methods: @WebService(serviceName = "CalculatorWS") @Sta...
asked by 13.03.2017 / 15:21
0
answers

How to send parameters by the soap header and together parameters for the body

I'm wondering how I send the header of a soap and next to the parameter that goes to the body. I'm putting the code I've already done and the soap: <?xml version="1.0" encoding="utf-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/200...
asked by 11.01.2017 / 20:56