soap

Authenticating a mobile app against a WCF service?

We are working with a vendor to develop a mobile app and plan on using WCF services to handle operations. What are some types of authentication I can use with a WCF service? Would we send a user name and password through the SOAP header? How can we accomplish this securely? Also, this will be authenticated against our .NET membership da...

How do you folow up on soap in eclipse.

I'm starting to work on a project on java with eclipse IDE, and I understood that there is a plug-in that I can fallow the requests and the responds. I've been looking for them but haven't found anything, if any one knows, I'd be very thankful. ...

TRemotable Descendant Parent Members are not included in WSDL generated by delphi web services.

I've made Web Services with Delphi in the past but most were pretty simple that just took a few parameters and returned a single value to the client. A new service I am working on calls for me to be able to send and receive complex types. Consider the following types are defined in my code: TBaseRequest = Class(TRemotable) private ...

How can I use a WSDL for a non SOAP compliant payload?

Currently I have my WSDLs setup to deal with SOAP payloads. I now have a customer that wants to use the same services but they cannot create SOAP payloads (for various reasons, but nothing I can change). They instead want to send XML payloads. My question therefore is how can I conigure my WSDLs so that it can accept simple XML payloads...

Inserting username/password in soap header using wse

I am creating an asp.net web service using visual studio 2008 using wse3.0. It will be calling a java web service in JBoss WebSphere. The java web service expects username/password token in the soap header. i have created web service proxy Dim srv As New externalWebservice.externalWebservice() Dim userToken As UsernameToken userT...

PHP Magento SOAP-ERROR: Parsing WSDL: Couldn't load from urlpath

I am trying to create a soap client by passing a url that is hosted on my local machine, my dev environment and I keep getting this error. I use to be able to make this call and it worked just fine. Basically all I am doing is this $client = new SoapClient('http://virtual.website.com:81/api/?wsdl'); If I go to the url in a browser it...

Where to start with web service development?

I am currently working on a project that is very new to me, and I feel a bit over my head as far as knowledge base is concerned. My request is for references and information to help me expand my knowledge base, as well as recommendations for technologies and methods. I have experience primarily with Java, so all this Windows service stuf...

error while soap request call

Hello. I am trying to make a soap call. Its a very basic call wit Welcome User output. The return value is in xml format. and i am getting the following error. can anyone plz tell me what this error means. The following code shows the soap request and post request that i have made NSString *soapMessage = [NSString stringWithFormat: @"<...

Sending a byte array from PHP to WCF problem

Hi I have this problem: I have to send a byte array (encoded photo) from my PHP client to the WCF host. when I do a var_dump() on my array in PHP I get an array[2839] which is ok but on the server side when i debug I see that received array is only byte[5]...any idea how I can fix it? I used code like this $file = file_get_contents($_...

Using WCF in .NET how can I make it auto generate SOAP docs like ASMX did?

I'm currently writing a web service using WCF in VB.NET. Previous web services I wrote used ASMX but I wanted to learn WCF and so far it's going well. I actually prefer the way WCF does things. One thing I miss however is the way that ASMX used to generate example SOAP requests and responses. It was like getting documentation for fre...

how to implement ws-security 1.1 in php5

I'm trying to call a webservice with Soap in PHP5, for this, I need to use WS-Security 1.1. (In java and .NET this is all generated automatically.) Are there any frameworks available to generate the security headers easily in PHP? Or do I have to add the entire header myself ? Specifications of WS-Security 1.1: http://oasis-open.org...

How to fix error - "@interface interfaceName : someEnumeration" gives error "cannot find interface ''someEnumeration'.."

How can I solve "cannot find interface declaration 'someEnumeration', superclass of 'interfaceName'" error? What steps will reproduce the problem? Compiling Wsdl2ObjC Targeting groupwise.wsdl file Fixing non-valid file names of output csource code like ".h" + ".m" and objects inside source files Moving up one of the @interface BEFOR...

Strategies for Error Handling in .NET Web Services

I have a fairly substantial library of web services built in .NET that I use as a data model for our company web sites. In most .NET applications I use the Global ASAX file for profiling, logging, and creating bug reports for all exceptions thrown by the application. Global ASAX isn't available for web services so I'm curious as to what...

Using Suds for SOAP in python, are suds.client.Client objects thread safe?

I'm using Suds to access a SOAP web service from python. If I have multiple threading.Thread threads of execution, can each of them safely access the same suds.client.Client instance concurrently, or must I create separate Client objects for each thread? ...

Call .NET Webservice with Android

Hi, I know this question has been asked here before, but I don't think those answers were adequate for my needs. We have a SOAP webservice that is used for an iPhone application, but it is possible that we need an Android specific version or a proxy of the service, so we have the option to go with either SOAP or JSON. I have a few conc...

tcpmon - http and soap message

First of all, I would like to apologize for the lack of research, this is kind of urgent. Are soap messages binded in http request/header? If yes, can I view soap messages using tcpmon? Is there any other way to view soap messages? ...

PHP - Zend Soap Request to .NET SOAP Server

Hello! I'd like a little bit of assistance here. I am trying to send a request to a .NET SOAP server from PHP with Zend. I have the WSDL file but it does not contain any header information. Though I have tried to add a custom header this does not seem to work and the worst is that the WSDL file itself does not seem to be "right"..... ...

API not accepting SOAP requests

Hi, I'm fairly new to WCF and API's in general so i don't know if this is even remotely possible. I have a web service created using WCF that works fine when being used by a .net client application or SoapUI or any other reasonably intelligent software (over a basicHttpBinding). But i have a client now who insists on using it in their o...

Web service soap header authentication

Hi, I have a web service, i want to authenticate the user from the soap header. That is, i want to check a token id (random number) in soap header and validate it against a value in my database and if the number matches i allow the request to go through otherwise i dont want to allow execution of my web method. Is there any clean way o...

How to consume PHP SOAP service using WCF

I am new in web services so apologize me if I am making some cardinal mistake here, hehe. I have built SOAP service using PHP. Service is SOAP 1.2 compatible, and I have WSDL available. I have enabled sessions, so that I can track login status, etc. I don't need some super security here (ie message-level security), all I need is transp...