soap

How to test fileupload using SOAP UI

How to test fileupload using SOAP UI. There is a service which accepts file as input I want to simulate that using SOAP UI It gives me . content should be inline . ...

Fault code: soap:Server Fault string: Server was unable to process request. ---> get out!

Hi, I'm doing web service to import data using the API but I cannot import data because there is an error in soap "Fault code: soap:Server Fault string: Server was unable to process request. ---> get out!" What does it mean? Any help is appreciated. Thanks in advance! :) ...

WCF MessageContract List Serialization

I have the following MessageContracts to use as a request: <MessageContract(WrapperName:="get")> _ Public Class GetRequest Inherits BaseAuthenticatedRequest Protected _typeName As cEnum.eType Protected _id As Integer <MessageBodyMember()> _ Public Property TypeName() As cEnum.eType ... <MessageBodyMember()...

soap call error

Hey Guys, I'm trying to call a function via a SOAP webservice. The following code is run: $return_soap = $this->soap->__soapCall($soap_function, $params); I have also tryed: $return_soap = call_user_func_array(array($this->soap,$soap_function),$params); The headers are good, and i'm sending the following parameters: $params = a...

WCF SOAP service changing name of array item elements when (de)serializing.

I have a client (that isn't very flexible in the SOAP it sends) which generates SOAP similar to the following from a method with signature void Test(int[] test): <?xml version="1.0" encoding="UTF-8" ?> <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="h...

WCF: MessageBodyMember Ignore Order

I'm using MessageContracts to define my web method signatures and return types. Such as: <MessageContract(WrapperName:="get")> _ Public Class GetRequest Inherits BaseAuthenticatedRequest Protected _typeName As cEnum.eType Protected _id As Integer <MessageBodyMember()> _ Public Property TypeName() As cEnum.eType ...

How To Access a SOAP WebService From a Flex Library Project

I would like to access a soap webservice from a class in a Flex (AIR) Library Project. How can I instantiate a WebService and get data from a SOAP WebService. ...

Querying on Leads Status in SugarCRM Using NuSOAP

I'm trying to get back an entry list of leads by status. The query I'm using is "leads.status = 'New'" however when I try this in php, I get back leads of other statuses as well. function get_leads_over_x_days($session_id, $days) { $daysAgo = date("m/d/Y", strtotime($days . ' days ago')); $where = "leads.status=...

Build soap message only, using SUDS

Hello! Currently I'm struggling while trying to generate soap message with SUDS. Things I want to achieve is something like xml_string = client.service.getPercentBodyFat('jeff', 68, 170) instead of calling remote procedure I want to get soap message as xml string or object. Thank You! ...

Using Liferay Service with Javascript?

Hi, I need to retrieve some information from a Liferay server with Javascript. I build a service in Liferay so I can generate SOAP requests to the wsdl file and retrieve the data I need. That works well with a SOAP client. What is the easiest way to generate these SOAP requests in Javascript? I already tried to use the Javascript SOAP...