soap

Talking to a demo Exchange Server 2007

I would like to test a trivial SOAP app against Microsoft Exchange 2007 (or 2010) webservices. Is there any demo server on the internet available? My problem is, that I have no 64-Bit machine around here to install a server for myself. The 2003 server, which is hanging around at the office isn't suitable for my needs (Exchange Web Servi...

Getting Acrobat Javascript working with SOAP and WSDL

Quick note: any links in this document with a space after the "http" is just because I'm a new member, which apparently means I can't post more than one hyperlink. I don't actually have this space in my code. I'm trying to use Acrobat javascript in Adobe Acrobat to communicate with a web service. Specifically what I'm trying to do is ...

Anyone using Bing Map Web Services with Delphi?

Has anyone gotten Bing Map Web Services (formerly Virtual Earth Web Services) working with Delphi? Based on my experiences so far (both using Delphi and Visual Studio C#), I'm about ready to give up on it and go with the MapPoint Web Service until a future version of Bing Maps Web Services comes out. However, I thought I'd post a quest...

Simplest way of invoking a webservice via SOAP on ASP.NET

I have a webservice on a remote host that I need to invoke from ASP.NET/C# class. What is the simplest way of calling a method via SOAP, given WSDL url and a method signature? Given: WSDL url as string(available only at runtime, i.e. variable) Method signature(constant) Need to: Create a soap client and perform method call. ...

Adding Cookie to SOAPpy Request

I'm trying to send a SOAP request using SOAPpy as the client. I've found some documentation stating how to add a cookie by extending SOAPpy.HTTPTransport, but I can't seem to get it to work. I tried to use the example here, but the server I'm trying to send the request to started throwing 415 errors, so I'm trying to accomplish this wit...

Consuming JSON-RPC web services in .NET

A business partner has suggested building a web services library with JSON-RPC rather that SOAP. (note they are not building in .NET necessarily, but I am) I am a potential consumer of this data. I've used JSON for client-based Ajax calls in the past, but this web services library will be used primarily for server-side calls and syncin...

SOAP API C# or Java for pre-made XMLs

Is there any SOAP API that receives pre-made XMLS and wrap them with SOAP envelope (put the XML in the SOAP body/header as needed)? I need the functionality of wrapping up XMLs with SOAP envelope directly without any object model manipulations (like SAAJ do). 10, O'shea ...

How can I use NTLM authentication in a Delphi SOAP Web Service client?

For a Microsoft CRM project, we need NTLM authentication in the Delphi 2009 web service client. It looks like Indy 10 Tiburon already has experimental NTLM support. How can I activate the NTLM authentication for the THTTPRio component and use the logon information (user name, password, domain) of the destination web service server? Ed...

wsdl client with Qt

hi..i've problem when create a wsdl client using Qt framework. wsdl file is from ejbca wsdl. my program is client for ejbca server and using wsdl to access ejbca services.but i don't know how to handle this. plz give me some suggestion to do... ...

How do you document a tree-to-tree transformation in a human-readable format?

I need to document an application that serves as a facade for a set of webservices. The application accepts SOAP requests and transforms these requests into a format understandable by the underlying web service. There are several such services, each with its own interface. Some accept SOAP, some HTTP POST, some... other formats not menti...

Is the WCF Service Trace Viewer tool indispensable?

Do I need to learn the WCF Service trace viewer tool? I understand I can use the WCF Service Trace Viewer tool to trace messages leaving from clients, or arriving at servers. Can I configure WCF tracing to record REST messages as well as SOAP? Are there other neat tricks I can do? I've developed with WCF for a long while but I've n...

How can two wsdl files be combined into one?

I've got wsdl files for a single service that I'd like to convert to a single wsdl file. From what I've read, I believe this is possible by giving each one a separate namespace, however I'm not sure what process one would use to do this. I'm aware there are programs that would help me do this, but I'd like a better understanding of the...

SharePoint via SOAP using Python

I have been following the solution noted here - as this is exactly what I need to achieve; http://stackoverflow.com/questions/218987/how-can-i-use-sharepoint-via-soap-from-python however when I run one of the last lines of this code I get the following error; >>> client = SoapClient(url, {'opener' : opener}) Traceback (most recent ca...

SharePoint SoapServerException calling GetListItems web service

Hi, I have the following statement in my code: System.Xml.XmlNode items = lstWebs.GetListItems( "Tasks", string.Empty, listQuery, listViewFields, string.Empty, listQueryOptions, WorkspaceId); When executing this, the following exception occurs: Exception of type 'Microsoft.SharePoint.SoapServer.SoapServerException' was thro...

consuming SOAP web services in classic ASP

I have a problem with this is code: Set oXmlHTTP = CreateObject("Microsoft.XMLHTTP") oXmlHTTP.Open "POST", "http://www.oursite.com/WebServices/ourService.asmx?WSDL", False oXmlHTTP.setRequestHeader "Content-Type", "application/soap+xml; charset=utf-8" oXmlHTTP.setRequestHeader "SOAPAction", "http://ourNameSpace/ourFunction" SOAPRequ...

Problem Implementing Own Design of a WCF Reliable Service for SilverLight (basicHttpBinding)

I am trying to implement a very basic reliable message state handling system to provide improved reliability in my Silverlight to WCF server communications. I have taken the route of introducing a custom message header into the SOAP request that contains an incrementing integer as a message ID. The idea is that when I receive a reques...

Collecting/Processing headers in PHP Soap Server

I'm creating a web service using PHP5's native SOAP Methods. Everything went fine until I tried to handle authentication using SOAP Headers. I could easily find how to add the username/password to the SOAP headers, client-side: $myclient = new SoapClient($wsdl, $options); $login = new SOAPHeader($wsdl, 'email', 'mylogin'); $password =...

How to modify precompiled ASP.NET web site? Visual Studio complains that site is precompiled.

I have a web application on ASP.NET (C#) that has some precompiled components. I've been supporting it with no problems from quite sometime, adding features and extending. Right now I am facing another extension that requires calling a remote SOAP service. I've tried doing it according to some recommendations that I got here - via addin...

Problem in consuming WCF service (basicHttpBinding) in Delphi Win32 Client

I am trying to make a Delphi client (Delphi 2006) to communicate with a service written using WCF. Service is damn simple with just one function. Technically like below: [ServiceContract (Namespace = "http://www.company.com/sample/")] public interface IService { [OperationContract] string GetNumber (string name); } I have host...

Avoiding web service god classes

I have a complex RIA client that communicates with a WCF SOAP web service, the second a being the operative word. This has resulted in a dreaded god class containing 131 [OperationContract] methods so far and even more private methods. Personally, I don't have a problem with this; I use search and the navigation features of Visual Stud...