soap

getting the POST request from web server

Hi I'm having troubles debugging a POST request I'm making from my web server to another web server. I'm trying to communicate with a SOAP web service but from some reason a code that worked well from local machine fails when executing on my server Looking for a way to see the post request my server make to the web service server web ser...

Calling webservice in C# returns Client found response content type of '', but expected 'text/xml'.

I am currently calling a ColdFusion web service in C#. The web service is just a simple query used to search for users. I can search just fine and it returns the users I search for unless I try searching for 'Johnson' then it returns: Client found response content type of '', but expected 'text/xml'. The request failed with the error ...

Webservice Response is turned into ref parameter when using MessageContract

I have defined the following Interface [ServiceContract] public interface IHealthProducts { [OperationContract()] ResponseClass OrderSelfSignedHealthCertificate(); } Which returns the following type [MessageContract] public class ResponseClass { [MessageBodyMember] public string AnimalSpeciesCode { get; ...

wsdl2py requests

I'm trying to get results from a SOAP service called Chrome ADS (for vehicle data). They provided php and Java samples, but I need python (our site is in Django). My question is: What should I be passing as a request to the SOAP service when using wsdl2py-generated classes? Following the examples I'm using a DataVersionsRequest object ...

How to Create a Downloadable Product through Magento API?

Hi... I am new to Magento, and are using their API. What I want to ask, is it possible to create a downloadable product through the API? The documentation example is just for creating a new simple product, and if I use the API to view the product.info of a downloadable product, I don't see any attribute that link to a downloadable fil...

Is there a standard way for representing Maps in SOAP WS

By maps I mean lists of unique key-value pairs. Is there a language-independent recommended architecture? ...

Consuming PHP webservice method with a boolean return value with .NET

I have a PHP SOAP (NuSOAP) web service method that returns a boolean value. I've executed the method in a 3rd party test application, and it seems to return the value fine. If I look directly at the XML message that's returned, it looks fine as well - returns "true" and "false" when it's supposed to. However, when I write a sample appli...

C# trace https soap requests?

I have a C# app that is sending soap requests over an https channel. Is there any way I can add tracing to just dump every request into a log file? I am getting an error, so im not sure if what I am sending is proper. ...

wsdl2py ComplexTypes

How do I add complex types to a SOAP request? I'm using WSDL2py generated requests, and trying to use the other TypeDefinitions that it made in the *_types.py file (like AccountInfo, for authentication, that goes into every request). Then passing it the wsdl2py generated server, and I'm getting this error: >>> from AutomotiveDescriptio...

Parsing SOAP XML in Oracle

Hi I am new to Oracle and I am working on something that needs to parse a SOAP request and save the address to DB Tables. I am using the XML parser in Oracle (XMLType) with XPath but am struggling since I can't figure out the way to parse the SOAP request because it has multiple namespaces. Could anyone give me an example? Thanks in ...

How do you change the SOAP Envelope schema in WCF?

I am connecting to a third-party end point via WCF and I have one problem. The schema for the SOAP envelope that is generated by WCF isn't compatible with the end point. Currently WCF is generating this: <s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing"&gt; But it needs to b...

Can you help me solve this SUDS/SOAP issue?

So I'm trying to access this api https://www.clarityaccounting.com/api-docs/ using SUDS. Here is the code that should work: from suds.client import Client client = Client('https://www.clarityaccounting.com/api/v1?wsdl') token = client.service.doLogin('demo', 'demo', 'www.kashoo.com', 'en_US', 300000) But I get this error: WebFault: ...

Search API, find RSS Feeds?

Im looking for a search api that will allow me to search for rss feeds. It will either be a regular search feed that then returns the content type - allowing me to filter by rss items only, or a special rss-only index. Does anyone know of any? ...

Can a WCF Operation that takes a single array as a parameter use MessageContracts?

I am trying to replace an asmx WebService with a WCF service. My primary goal is to keep the SOAP message the same. The caller is not .NET, and would require significant re-work to take minor changes to the contract. My pain point is that the web methods I am trying to replace webmethod uses the the following Attribute deceleration: [S...

How to obtain client's URL from WCF service?

Hello, gentlemen. Here is the problem: I have a WCF service and a few sites connecting to it and sending certain messages. How can I obtain client's URL (not IP) from the WCF service to assign it with the message? A kind of statistics. I'm using C#. Thank you in advance, Tim ...

Cannot render images locally with Sql Server 2005 Report Services SOAP service calls

I am trying to render images from SSRS 2005 via the SOAP call. When the reports service is installed on the same server as my website, the images generated do not render in the page. However, when I connect to the reporting service URL from the same web code on a separate machine the images render just fine. Is there a dependency that...

Getting XMLHTTP to work with HTTPS

I'm trying to access a soap webservice via classic asp over https but i get the following error. MSXML3.DLL error '800c000e' A security problem occurred. mycode: Function GetASPNetResources() Dim returnString Dim myXML Dim objRequest Dim objXMLDoc Dim strXmlToSend Dim webserviceurl Dim webserviceSOAPActionNameS...

Lightweight SOAP Client Library for Java

Can anyone recommend a good Java open source library for building a simple SOAP web service client? I'm looking for something with minimal dependencies and configuration that will work in a Java 5 SE environment. Upgrading to Java 6 isn't really an option on this project and I'd prefer to avoid using a full J2EE container if I can avoi...

Serializing a suds object in python

Ok I'm working on getting better with python, so I'm not sure this is the right way to go about what I'm doing to begin with, but here's my current problem... I need to get some information via a SOAP method, and only use part of the information now but store the entire result for future uses (we need to use the service as little as pos...

SOAP error for php

Hi, I'm using http://www.php.net/manual/en/book.soap.php and I'm getting this error "Method Not Allowed" $wsdl_url = "http://192.168.100.165:9080/service/service?wsdl"; $client = new SoapClient($wsdl_url); $userName = "hello"; $password = "testing"; $test = "OK"; $login = $client->ClientOperation(array("userName"=>$userName, ...