basichttpbinding

Can I implement callback from WCF based HTTP service to a gSOAP c/Linux client?

I have a Linux/c client app that connects to a WCF web service over HTTP/SOAP (BasicHTTPBinding). I am using gSOAP. Can I implement the calls to the web-service using callback? I want to get the data asynchronously as call back. Update: I have updated the question title. ...

WCF Client consuming multiple services.

I'm trying to figure out how to set up my web.config (the client) to consume two different WCF web services one using the other using I have the two endpoint, I guess I need two different Binding configurations. This is my current binding node: <basicHttpBinding> <binding name="WebServiceProxyServiceSoapBinding" closeTimeout="00:...

How can I programatically create this custom binding?

We've got to access a web service that uses soap11... no problem I'll just set the binding as: BasicHttpBinding wsBinding = new BasicHttpBinding(BasicHttpSecurityMode.TransportWithMessageCredential); Nope. No dice. So I asked the host of the service why we're having authentication issues and he said that our config needed to have this...

WCF host in windows service: cannot get wsdl

Hi guys! i've a windows service that hosts a WCF service with basicHTTPBinding. In test everything goes right, when i deploy the win service on a Window Server 2003, service hosts correctly wcf, I print out endpoints in tracing, they're correct, but when i ask for wsdl using the address that service exposed (i.e. http://mybaseaddress/?w...

WCF "The server did not provide a meaningful reply"

I am out of ideas here, so I'm hoping someone can help. Here is what I've got: A WCF service that only has a basicHttpBinding endpoint. There is only a service interface, all other [DataMember], [FaultContract] are concrete types. When I run it straight from Visual Studio (using WCF Test Client or my custom app) everything works (I se...

BasicHttpBinding vs wsHttpBinding vs WebHttpBinding

Dear Devs I need a comparisons chart of above 3 mentioned bindings in terms of features and performance. i have seen some between ws and basic but i need web as well. Please if anyone has link to any article please share i have tried google but no gain yet. ...

What is the recommended method of HTTP Redirection from multiple URLs to one URL?

I have a website that has a number of URLs that people use to connect to that site (uses the bindings on the IIS website and everything works as intended): http://www.sample.com http://sample.com https://www.sample.com http://xyz.sample.com http://oldurl.com Now what I want to do is have all of the URLs go to https://www.sample.com -...

Access WCF service through ASP.NET

I have a WCF service which I would like to access using ASP.NET. The binding used in the WCF service is basicHttpBinding. How may I do it? Any examples will be really appreciated. Will it work fine if I create a proxy from the svcutil.exe and then use that class in an ASP.NET page? ...

How can I use WCF with only basichttpbinding, SSL and Basic Authentication in IIS?

Hello, Is it possible to setup a WCF service with SSL and Basic Authentication in IIS using only BasicHttpBinding-binding? (I can’t use the wsHttpBinding-binding) The site is hosted on IIS 7, with the following authentication set up: - Anonymous access: off - Basic authentication: on - Integrated Windows authentication: off !...

Context asp.net in WCF Service basichttpbinding

Hi all, I'am newbie in WCF Services. I Have asp.net page, and call it WCF Service (basic http binding). In my WCF Service, I need get the asp.net context of user. Any sample about it ? how can I config the client and service ?? and what code source can I use ?? Greetings, thanks in advanced ...

Create a secure application with basicHttpBinding

Hello everybody, I am really really tired these day because of facing this problem. I am building a XBAP application (WPF Browser Application) that uses WCF Service. This app requires: Users can login by using their username and password (that store in my database) Users don't need to install any of X509 certificate (*.pfx or *.cert......

Advantages and Disadvantages of Axis2 over WCF

Dear Gurus We have a WCF Service in our application suits that is being used to synchronize data among the different devices of a same user. We are facing some trouble with WCF as it leaves high memory footprints on the server and also the degree of concurrency is significantly low. we are using Basic Http Binding. So, i have started...

Difference between basicHttp binding in webservices and WCF

What is the difference between WCF and WSE2.0 webservices when it comes to implementation of basic httpbinding. Can anyone point out what may be the subtle differnces when it come sto use the same protocol but using different technology. ...

WCF auditing/logging

Hi guys, I need to provide non repudiation in my WCF services and want to store all my incomming SOAP requests into a SQL server DB with signature/security data and all the envelope stuff. This way, when a problem occurs, we can tell to the client "Hi, THIS is your signed message" exactly as you wrote it. To do this, I need to store ...

Adding a Java Web Service Client in Netbeans that supports streaming with a WCF Streaming Service?

I have a C# WCF basicHttpBinding Streaming WebService. The signature of the method that I want to access is: [OperationContract] void SendStream(Stream stream); However, when I try to add it as a standard Java Web Service Client into my Netbeans project. The auto-generated proxy method signature gets changed to: void SendStream...

How to bind a WCF Http client to a specific outbound IPAddress before making the request

I want my request to go out through a specific IP Addresses. Is there a way to do that in WCF. The explanation of why I need this is a little long winded so i'd rather not get into that. Here is sample code string ipAddress = "192.168.0.32"; IService service; ChannelFactory<IOmlService> factory = new ChannelFactory<IService>(new Basic...

Delphi 7 Soap WCF Service using basicHttpBinding

I added a basicHttpBinding to an existing Service I have in production in order to expose it for use in Delphi. When I try to use the WSDLImporter from Delphi 7 on the wsdl file, it doesn't work right. A section in the resulting tlb says // ************************************************************************ // // The following ty...

WCF Callback Service hosted over basicHttpBinding and wsDualHttpBinding

I have a callback service that is hosted over wsDualHttpBinding. I'm looking to add a client that will poll for the data rather than receive the callback (will be a mobile device using wince for demo purposes). I was curious what the best way to do this is? You cannot create a client proxy using NetCFSvcUtil with a service hosted with ws...

Amazon EC2 for WCF Windows Service

Dear Gurus I have a Sync Services built using .Net WCF, .net 4.0,SQL Server 2008 and hosted in a windows service. Following are some custom implementation we have done; Custom DB Connection Pooling, filled on the start of Application, and there is a cleanup thread as well which runs through out the life cycle of application. Custom ...

WCF service binding wsHttp vs. basic with no authentication

I am attempting to create a WCF service with anonymous authentication. When I deploy the service to the destination server that is not on my current domain I receive the following error when attempting to call it: Content Type application/soap+xml; charset=utf-8 was not supported by the service http://myserver.com/page.svc. The...