Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
675 views

How to send WCF's ClientCredentials using Delphi XE

I've developd a WCF Service with a custom UserNamePasswordValidator with a basicHttpBinding using HTTPS. It works great with a .Net client, using ClientCredentials to send the username and password ...
3
votes
1answer
3k views

How to pass SOAP headers into python SUDS that are not defined in WSDL file

I have a camera on my network, I am trying to connect to it with suds but suds doesn't send all the information needed. I need to put extra soap headers not defined in the WSDL file so the camera can ...
2
votes
1answer
566 views

PHP Soap Header help

I have a fairly simple php/soap header question. Here's what I need. <ns1:Identity token="123456789"></ns1:Identity> Here's what I get... ...
2
votes
0answers
2k views

Delphi 2007 WSDL Import, setting SOAP header information

Importing WDSL in Delphi 2007 works fine, but generates a Cannot Unwrap warning (code snippet 1, below [like another question already logged on StackOverFlow]). However, it is how we set the headers ...
1
vote
0answers
66 views

WCF Service with non .net present client

Instead of creating a WCF service and a client by generated code of WSDL, I must create a WCF service with a given SOAP request. To help you better understand, I copied the main part of the SOAP ...
1
vote
0answers
135 views

In WP7 Application Accessing a WCF SoapHeader when IncomingMessageHeaders is null

In an Windows Phone 7.5 application, In a call to a wcf service I used the MessageIncomingHeaders property [code just below] to retrieve Message Soap Headers with my OperationContext, but the ...
1
vote
0answers
79 views

using Ruby handsoap craft AuthHeader

How would I go about adding an authheader to the soap header of a request using handsoap? so for example I want: <soap:Header> <AuthHeader xmlns="thenamespace"> ...
1
vote
3answers
164 views

How to secure a web service in c# 2.0 and make it easy for any platform to consume

How to secure a web service and make it easy for any platform to consume. Setup: Asp.NET 2.0, Dot Net 2.0, c# 2.0, Visual Studio 2005. Web server is IIS and uses https (SSL) I would like to ...
1
vote
1answer
539 views

wsHttpBinding on the wcf service and web reference on the client don't work

I use wsHttpBinding on the wcf service. I've added web reference and got I've got the web proxy (it is based on SoapHttpClientProtocol). Also I've tried to build proxy using wsdl.exe and actual wsdl ...
1
vote
0answers
231 views

Writing a data contract to the SOAP envelope headers for an outgoing FaultException?

I am in a bit of a pickle with a current project. We have an integration partner who is refusing to conform to contract, and they are expecting a fault contract with custom headers, rather than the ...
1
vote
1answer
118 views

How to declare that the WCF service is using mandatory SOAP headers?

I have a WCF service which uses some custom SOAP headers. I manage to pass the headers - but how can I declare that they are mandatory thus forcing the client to pass them in every request? Thanks!
1
vote
0answers
133 views

WWSAPI and setting “soapenv:Header” values

I'm trying to connect to a web service from a C++ app using WWS. I got the base connection working just fine. My XML message has two parts though, a header (soapenv:Header) and a body ...
1
vote
2answers
529 views

How to add soap basic auth request to WSDL

How can I had soap AUTH BASIC auth to a WSDL, so who ever reads the WSDL knows I require that operation for a specific method ?
1
vote
1answer
674 views

Add custom SOAP header in PowerShell using New-WebServiceProxy

In C# I can do the following: var header = MessageHeader.CreateHeader("MyHeader", "http://mynamespace", "Header value"); OperationContext.Current.OutgoingMessageHeaders.Add(header); That adds the ...
1
vote
1answer
311 views

SoapHeader Value missing in ASP.NET 3.5 Web Service

I have created a custom SOAPHeader and Service with methods. While I was trying to consume the service, I was able to create the SOAPHeader and assign its property. But the proxy(SOAPClient) is ...
1
vote
1answer
949 views

How to add SOAP Headers to Spring Jax-WS Client?

How can I add SOAP Headers to Spring Jax-WS Client? Specifically, I have a Jaxb object I would like to add to the header but xml examples would be appreciated. I am using Spring's ...
1
vote
1answer
270 views

Add custom header into Security element with WCF

Can I add and read a custom header in the Envelope/Header/Security element? I tried using the MessageHeader attribute, but that does not allow me to put the header in the Security element. I created ...
1
vote
1answer
564 views

gSOAP: How to send encrypted SOAP header

I want to send some info, like user credentials in the SOAP header from my gSOAP client to my WCF webservice. I wish I could send them in encrypted form. I am using GPRS to commuicate. As GPRS ...
1
vote
0answers
1k views

PHP Server did not recognize the value of HTTP Header SOAPAction

I am making my first SOAPclient and I am stuck with the Headers, I am getting a response and when I look at my request it has a soap:body but no soap:headers. The web service has needs 3 parameters ...
1
vote
1answer
410 views

Unmarshalling Error [com.ctc.wstx.exc.WstxLazyException]

I am communicating with a partner's webservice using proxy classes they've provided. I have this line of code which is throwing an exception: Dim response As requestWebRemittanceResponse = ...
1
vote
2answers
465 views

Which programs can I use to test my ASP.NET webservice which requires some SOAP HEADER?

I've been given this legacy app to do some bugtesting. Joy :( It's a simple webservice written in C# -> api.asmx. Now, the trick for testing it, is that it requires some SOAP HEADER for ...
0
votes
0answers
17 views

How can I test/run my web service from VS2010 (F5) when using a soap header to authenticate users

I have created a web service in VS2010 Vb.net I was able to run this by pressing F5 or run on the web service project and it would start IE and display the basic HTTP post and gets for the service. I ...
0
votes
1answer
74 views

Consume WCF service using add web reference and add a soap header

I have a WCF 4 web service that checks for a soap header. This works fine with a WCF client but I have a customer that needs to use the old web reference from their app. How do you consume a WCF ...
0
votes
2answers
63 views

SoapHeader class and DataContractAttribute

I have an error: Type 'MyAppApp.Web.MyAppWebService.NotifierAuthHeader' cannot inherit from a type that is not marked with DataContractAttribute or SerializableAttribute. Consider marking the base ...
0
votes
2answers
128 views

How to read SOAP Header information from request and add it to response in spring web services

I am working on spring web services. I need to add some custom elements in the request and response message.which should look like this: <soapenv:Envelope> <soapenv:Header> ...
0
votes
1answer
42 views

Webservices in Websphere portal server

I am trying to call a webservice from Websphere Portal server, however I Notice a very strange behavior with the SOAP message. In the request msg that I send, there are no headers present, whereas ...
0
votes
1answer
109 views

Adding SOAP headers to ASMX service requests

We were given a set of ASMX services to consume. We have no say in how these services are implemented. We have generated a number of proxies with wsdl.exe tool but for some reason unknown to me, these ...
0
votes
1answer
153 views

SOAP header Security was not understood

I'm using a asp.net 3.5 C# as a webservice consumer and I'm trying to consume a third party java webservice and I have already attached the soap header security on my request. There is no problem on ...
0
votes
1answer
180 views

add custom header for security authentication in wcf

i am using webHttpBinding to expose the wcf serivces and return JSON format, i want to make some security authentication in header like: CustomerServiceClient client = new CustomerServiceClient(); ...
0
votes
1answer
133 views

How do I attach a SOAP Header to my C# client?

I have my web service set up to recieve a soap header of name "TestHeader" with param "Name" How do i create a soap header in my client AND send it to the service? So far I have created it in my ...
0
votes
0answers
60 views

Consuming SOAP Services ASP.NET

I am working on an ASP.NET 3.5 C# Web Application in which I have to consume 3rd party web services. Their documentation says the following information needs to be passed in the SOAP header: wsse: ...
0
votes
0answers
143 views

Adding Service Reference in Visual Studio with authorization header and login credentials

In my Visual Studio project I need to add reference to a service which has login credentials as well as an authorization header. This service also does not have any exposed WSDL handle and the ...
0
votes
0answers
732 views

Programmatic WCF based access to SQL Server Reporting Services 2010 web services

Previously we have developed against the ReportServer/ReportService2005.asmx web service. To access these web services, the MSDN documentation suggests the old .NET 2.0 based web service reference ...
0
votes
1answer
2k views

How to add soap header in java

i have a NO-.net webservice from oracle To access i need to add the soap header. How can i add the soap header in java? Authenticator.setDefault(new ProxyAuthenticator("username", "password")); ...
0
votes
2answers
170 views

How can I create a soap header in PHP?

How can I create a soap header like that: <?xml version="1.0" encoding="UTF-8" standalone="yes"?> <requestHeader> <user> <userId>ID</userId> ...
0
votes
1answer
656 views

Adding SOAP implicit headers to WSDL

My question is similar to this. How To Pass Soap Header When WSDL Doesn't Define It? But is different. For a web service I use, all methods need authentication which is sent in cleartext inside a ...
0
votes
2answers
221 views

send an undefined soap header in C#

I have a web service implemented in java and appache axis.I want to call that service in .Net. the problem is there is a required soap header but it is not defined in the wsdl !! the soap header must ...
0
votes
3answers
683 views

Nusoap Help (+500 Bounty)

Been having major issues trying to solve this issue, I'll be happy to give a +500 bounty to someone who can help me get this work. Basically, I'm trying to call this web service using Nusoap: ...
0
votes
1answer
1k views

SOAP basic auth header

I'm trying to send a Autentication header throught to a WSDL service that does not have the authentication requirement specified on the WSDL. How can I add the Auth header to the call for the ...
0
votes
1answer
889 views

How to add custom header to ASMX web service call using jquery?

I have a web service with the following contract: POST /Service/service.asmx HTTP/1.1 Host: xxx.xxx.xxx Content-Type: text/xml; charset=utf-8 Content-Length: length SOAPAction: ...
0
votes
1answer
156 views

ASMX Use compiled type instead of generated type for SoapHeader

I haven't worked much with soap headers, so I'm hoping there's an answer here. Here's a simple example of what I'm trying to accomplish. I have an ASMX web service and a client, along with a shared ...
0
votes
1answer
980 views

Modify SOAP header Mustunderstand attribute in WCF client

I am writing a WCF client for a service (not WCF). Getting an error that Unprocessed 'mustUnderstand' header element: {http://www.w3.org/2005/08/addressing}Action, because request SOAP contains ...
0
votes
0answers
47 views

Produce SoapHeader with only one node/tag inside for C++

I have researched all MSDN information on SoapHeaders and have built the solution the way Microsoft says to. That actually happens to be my problem. What they suggest is that you create a class ...
0
votes
1answer
526 views

How to pass Authentication headers using Flex HTTP service?

I am trying to access a .Net service which requires an authentication header. If WebService is used it works fine. But when it is accessed using HTTPService it throws error. The project is already ...
0
votes
0answers
243 views

How to make java (jax-ws) Client work with the WS SoapHeader?

I have a VB.NET webservice that uses a SoapHeader. I also have .Net client that works perfectly with it. but I am trying to write a Java client to work with the webservice but it looks like java ...
0
votes
2answers
559 views

How do I get the SOAP headers as XML?

How can I get the SOAP header of my web service function as xml? I need an XML version of my working SOAP header to use as an example for someone with broken SOAP headers. He's using a different ...
0
votes
2answers
1k views

SOAP Header: Communication secured between Flex and C#

I am working with Flex, Webservices and C# and I would like to secure the access on my web services through SOAP. I spent 2 days on this problem: My asmx file where i describe my webmethod: ...
0
votes
1answer
1k views

gSOAP: How to pass info inside soap header

I wish to send some information like authentication token inside SOAP header. I am using gSOAP/c/Linux. Please help me how to pass? My SOAP_ENV__Header looks like /* SOAP Header: */ struct ...
0
votes
1answer
641 views

How does a custom SOAP header relate to a custom WCF header?

I am trying to send more info in each message from the client (Mobile Device) to my service. In my research I am finding about interceptors and custom wcf headers. Now I am starting to see stuff ...
0
votes
1answer
841 views

IClientMessageInspector in Silverlight 3.0?

I'm trying to secure a data service using SOAP headers in Silverlight. I thought i had found the answer in IClientMessageInspector. Unfortunately by default it seems this isn't supported, as creating ...

1 2