soap

Delphi 2010 SOAP Server

Hi, I'm using Delphi 2010 to create a SOAP Server. The server is created as a ISAPI/NSAPI DLL. I then add an interface with some sample methods. If I try and build this project I get this compiler error: Building Project1.dproj (Debug configuration) [DCC Fatal Error] Unit1.pas(6): F2063 Could not compile used unit 'msxml.p...

How to access WCF RIA service from Windows Service?

I have a functioning SL4 application (VS2010, SL4, WCF RIA, hosted on my dev box using Cassini, 64-bit Windows 7). Inside the ClientBin directory I have an .svc file that describes my service: <% @ServiceHost Service="MyApp.Services.MyServiceFactory="System.ServiceModel.DomainServices.Hosting.DomainServiceHostFactory" %> When I brows...

[Symfony 1.2: ckWebServicePlugin 3.0.0] Module name in SOAP requests, how to get rid of them?

When I generate a WSDL file with ./symfony webservice:generate-wsdl (where is 'frontend', is 'soap' and is 'http://localhost ') I get a nice soap.wsdl file which works like it should. Except, the methods are not named 'justAMethod' but 'soapService_justAMethod' (where soapService is the module which holds the SOAP methods). How do ...

Log SOAP header from C# Web Method

How do I extract the request SOAP header information from within a C# Web Service Web Method? ...

How to intercept raw soap request/response (data) from WCF client

This question seems to be pretty close to what I am looking for - I was able to setup tracing and I am looking at the log entries for my calls to the service. However I need to see the raw soap request with the data I am sending to the service and I see no way of doing that from the SvcTraceViewer (only log entries are shown but no data...

Incorrect XML produced by SUDS

Hi, I am trying to talk to a SOAP web service using SUDS and Python. After lots of messing around learning Python (yes I am new to this) and working out how to use SUDS I have come across a problem. The signature of the web method I am calling, according to suds, is (FWTCaseCreate){ ClassificationEventCode = None Priority = None Title...

Duplicate XML namespaces in .NET generated SOAP messages

Is there a way to automatically remove duplicate XML namespaces from messages generated by the WCF? It seems half of the message consists of duplicate namespaces. Here is an example generated by WCF: <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/"&gt; <s:Header /> <s:Body xmlns:xsi="http://www.w3.org/2001/XMLSchema-...

WSDL first WCF server where client does not send SOAPAction

I am implementing a WCF web service which interacts with a client whose code I do not control. The WSDL was supplied by the client. I generated C# files from the WSDL using SvcUtil, and besides the errors discussed here I had no issues. After hosting the service in IIS 7.0 with SSL enabled (required by the client) I attempted to get th...

How to use SSL Web Services in a Rails application

Hi, I having a hard time to consume this webservice https://www.arello.com/webservice/verify.cfc?wsdl in my rails application. I successfully generated the ruby files with the wsdl2ruby.rb but when un run the generated script I get the following error: at depth 0 - 20: unable to get local issuer certificate OpenSSL::SSL::SSLError: SSL_...

Is it possible to invoke SOAP request in JavaFX?

I've been spending considerable time on this, while finally realized that most articles are teaching how to access RESTful web services but not SOAP. Is this possible? I mean can I write my own clients codes to invoke SOAP request to remote web server? ...

Java WebServices and WSDL file generation

What are the best tools to use for generating WSDL files from Java class files? Running into some issues using Java2WSDL and wondering what are my other options. Latest issue is that it is not encoding String[] as an array/sequence. Comes through in the WSDL as type xsd:string By best I'm thinking - nice clean WSDL and consumed by .NET...

How to cancel a running AXIS 1.4 SOAP request?

Is it possible to cancel a SOAP request (Axis 1.4, Java 1.6) that's currently executing? I'm using the interfaces generated with WSDL2Java, so the call is something like myProvider.submitMyRequest(request). This is synchronous and doesn't return until a response is received. I want to be able to interrupt the call based on an external c...

Why am I getting org.xml.sax.SAXException for this block of XML?

I've anonymised a bit of this. Hopefully it doesn't detract from the useful message. stringARRAY is where I think I'm getting thrown at, but I'm not sure, so if I'm looking at the wrong place, lemme know. From the WSDL <xsd:element name="LongishOpName"> <xsd:complexType> <xsd:sequence> <xsd:element maxOccurs="unboun...

SOAP Server and Client in PHP

Hello, I am trying to develop a very simple SOAP server and Client in PHP. The goal is to receive content from a remote XML-document as the source. This is what I have done so far, I need help how to extract data from an XML file instead, as it is now, from an ordinary array. This is the function found in inventory_functions.php that i...

SoapClient fails to connect

I am trying to make a Soap connection to SugarCRM. My URL links to a WSDL file, bu the following code: <?php $soapClient = new SoapClient("http://mysite.sugarondemand.com/soap.php?wsdl"); var_dump($soapClient); ?> produces the following result: object(SoapClient)#1 (2) { ["_soap_version"]=> int(1) ["sdl"]=> resource(1) of type (...

How to view soap request based on webservice url?

I need to call SSRS Report WebService using jQuery ajax request. Since the ssrs webservice is SOAP based and considering the example shown for "calling share point web services using jquery" I think I need to pass a soap envelope. Based on the ssrs webservice url how can i find out the soap envelope required by a particular method? (ex...

Capture incoming and outgoing soap request

Hi I have a C# console application that calls SSRS soap based webservice (service runs on a remote machine). I want to capture the incoming and outgoing soap request. How can this be done? Thanks ...

Get methods params type parsing wsdl file in a rails/ruby application

Hi, I have a question about ruby and wsdl soap. I couldn't find a way to get each method's params and their type. For example, if I found out that a soap has a methods called "get_user_information" (using wsdlDriver) is there a way to know if this method requires some params and what type of params does it require (int, string, complex...

Delphi 7 SOAP Authentication and SessionID HowTo

Hello All, I am developing a 3 tier database application. 1.) MS SQL DB 2.) Middle tier SOAP Server (with Delphi 7) connected to the DB 3.) Clients (first win32 gui (with Delphi 7) - later other platfomrs) connected to the SOAP server I chose a SOAP Server to be open to various clients at a later stage (also some of the win32 gui clien...

How may I teach that SOAP is not a reliable transport?

I need to teach that a HTTP SOAP call may be received but the caller may not get the response due to a network failure (among other problems). (This problem made WS-ReliableMessaging be developed) How would you guys show this problem to a web service developer so they can develop taking into account that duplicate messages may be receiv...