soap

Clueless about how to create SOAP <wsse:Security> header

I'm have near to none experience with SOAP protocol. The service I need to connect to required header. I think this is somewhat standard in Java but in C# one must create this header by hand. Does anyone here been able to connect to similar service: have created the header or maybe even know about some standard library which would sim...

Connecting to multiple web services via soap in C#

I'm building a service that aggregates a bunch of data from multiple soap web services. There's a standard on what the web service call and soap package is supposed to look like. But of course, everybody's version is just a little bit different primarily in namespace usage. Is there any why in c# to dynamically fetch a wsdl and create th...

File from SOAP, how to save?

I am working with a client on getting a gzip from their webservice. I am able to get a response with my following call: $response = $client->call('branchzipdata', $param); $filename = "test.gzip"; if (!$handle = fopen($filename, 'a')) { echo "Cannot open file ($filename)"; exit; } if (fwrite($handle, $response) === FALSE) { ...

Construct a SOAP Request to a WebService using Axis2 Library in Java?

Hello, I need to be able to construct a SOAP request using Apache Axis2 and provide the IP address and user agent in the SOAP header to the webservice. Is there a code sample that describes how to do that? Thanks in advance for the help! Best wishes Ruchi Kaur. ...

Can a WSDL indicate the SOAP version (1.1 or 1.2) of the web service?

Delphi only supports SOAP 1.1, and includes a WSDL importer. Is there a 'litmus test' to see if a web service uses SOAP 1.1 or 1.2, based on the information in the WSDL? ...

Web Services with Netbeans

After having done a web service with netbeans and having tested it. What is it that I should upload to the server so I can use it? I have been going around tutorials but none (of the ones I've found) say what to upload. They just finish when you deploy the web service =/. ...

parse an XML with SimpleXML which has multiple namespaces

Hey there :) I have this ugly XML which has alot of namespaces on it, when I try to load it with simpleXML if i indicate the first namespace I'd get an xml object ,but following tags with other namespaces would not make it to the object. How can I parse this XML ? <?xml version="1.0" encoding="UTF-8"?> <soap-env:Envelope xmlns:soap-e...

How to use Forms Auth when SSL is on a proxy in front of the IIS Farm (WCF) ?

Here is my scenario: I have a proxy that actually has the SSL Cert installed and this sits in front of a load balanced web farm. Each IIS server does not have SSL so I can't use transport security via wsHttp binding. I have not investigated basicHttp because we want to provide SOAP 1.2 going forward w/ this solution. In addition to t...

How do I get a list of custom fields in JIRA with Perl SOAP?

I was curious if anyone else had an idea how to get a list of all of the custom fields you have created in JIRA? If so, how did you do it? I've been trying to use a Perl SOAP routine I found on JIRA SOAP service documentation, but I have no idea how to implement it. ...

Detecting missing responses to long running HTTP (SOAP) requests

I need a way to detect a missing response to a long running HTTP POST request. This problem arises when the network infrastructure (firewalls, proxies, unplugged cables, etc.) drops the response packets. The server may detect this failure, but the client cannot send additional bytes after the POST to probe the state of the TCP connection...

sending a SOAP request with c#

I'm trying to send a SOAP request to a 3rd party web service. I've successfully send and received data from other interfaces in the same service, but I'm having problems with this particular one: <SP_GoodsMovement xmlns="http://services.hnseu.com"&gt; <GoodsMoved xmlns="http://tempuri.org/SP_GoodsMoved.xsd"&gt; <SerialNumberedGoo...

Is there a way to group a set of soap methods logically in a "class" type entity?

Hi all. For our large C++ based project we now have a method to automatically generate code to expose our code as SOAP methods. This works really well, and we are planning to start implementing an RIA based application using Adobe AIR / Flex based on the API's we have exposed. The question I have is about organizing SOAP webservices...

how can JIRA soap API not have this method?

I want to be able to get a list of issues given a: Project Name and Release Version this seems like a basic JIRA soap API 101 request It seems, looking at the documentation: http://docs.atlassian.com/software/jira/docs/api/rpc-jira-plugin/latest/index.html?com/atlassian/jira/rpc/soap/JiraSoapService.html you can get issues by: Fil...

Calling Web Services with PHP SoapClient - How to?

Hi, I am going crazy starting off with Web Services. I am trying to call the following WSDL using PHP and keep getting nowhere: http://webservices.sabre.com/wsdl/sabreXML1.0.00/usg/SessionCreateRQ.wsdl I found the following piece of code on the net, from someone with similar problems, but I could not get it to work either: $soap = new...

How to set Service Reference authorization?

How do you set the authorization for a Service Reference in web.config? I'm writing a password retriever, that sends the users password by e-mail. The e-mail is sent via a SOAP service reference. However, each time I try to declare a reference to the SOAP API the web app returns to the login page - the default action when you request so...

wsdl importer generates faulty server

Hi, I've been trying to get a soap server up that implements (is that the correct term?) a wsdl specification made by a third party. I have used Delphi's wsdl importer. (Part of) the generated code looks like this: miniPortType = interface(IInvokable) ['{824D172A-9C1F-D202-5B21-4C324553BCF0}'] // Cannot unwrap: // - Input element...

How do I make a SOAP(ASMX) call with MS Office Access 2007?

I have a set of .ASMX API calls exposed and have a client that would like to call them using MS Office Access 2007. I have never used Access before and need to know how to connect to my services. What is the best way to make this happen? ...

SOAP Header with identity of final client

The environment is in-house service based applications running in a Windows environment with WCF. There are several "middle-tier" ASP.NET Web Applications and Web Services that authenticate the final client using Windows authentication, and use ASP.NET Roles to set Thread.CurrentPrincipal to a suitable RolePrincipal. These application...

What web APIs would you most want to replicate or are the most popular?

Soap, REST, xmlrpc. Facebook, twitter, [insert web 2.0 site]. What is the definitive web API and which would be the one that you would most likely replicate in your own code and for what reason? It seems that some web APIs invoke nausea in developers while other invoke pure worship. If you were told to develop an API for a website/pro...

Calling a SOAP method with PHP for a specific service.

Hi All, Sorry to have to do this, but I'm getting no love from the people who run this particular webservice. I've never used SOAP before. Here's the method I'm trying to call And here's the code I'm thinking should work public function soapTest(){ echo "start <br />"; use_soap_error_handler(true); $cl...