Search Results

1
vote

How do I format the message used to perform an HTTP post from VBScript / ASP to a WCF service and get a response?

You don't specify one thing: What binding are you exposing your service as? If you're using WsHttpBinding or BasicHttpBinding, then there's no simple "http post" you can do, because you need to inc …
3
votes

WCF MSMQ - How do I handle message failure

There's a sample in the SDK that might be useful in your case. Basically, what it does is attach an IErrorHandler implementation to your service that will catch the error when WCF declares the mess …
2
votes

WCF netTCPBinding - Is transport encryption enough?

In general terms, as long as you're dealing with point to point connections, and certificates are being validated on both sides (particularly if you're using mutual authentication), then yes, trans …
1
vote

I want to log the Poison message that my wcf service is dropping using MSMQ 3.0 and windows 2003

You can implement a custom IErrorHandler and associate it with your service us …
1
vote

Is there an issue sending XML via WCF?

Just thought I'd add that in most cases these will be configuration changes, unless you're doing all your binding setup through code. Specifically, you'll probably need to adjust the MaxRe …
2
votes

How to consume a wcf service when i only know its URL

If you don't have the service interface, you must, at the very least, have an idea as to what the messages the server expects look like; otherwise it be pretty hard to do :) But there is ce …
1
vote

Finding the time taken to send messages with WCF net.tcp

David is right about the problems with clock synchronization. However, adding the timestamp information outside of the service/client implementation is not hard at all on WCF. You're right …
0
votes

How do you specify a message label when using WCF and NetMsmqBinding?

George: No answer, but I'm curious to know how you plan to use the MSMQ label together with NetMsmqBinding. The reason I ask is that NetMsmqBinding was really created to support the scenari …
1
vote

Forms Authentication Error in WCF

Looks like your service is asking for basic authentication; not windows integrated authentication. In that case, I think you need to specify the credentials on the client proxy us …
0
votes

WCF Service Custom Configuration

It depends a lot of where and how you expect to use said information. If it's not something that's going to do a lot with the infrastructure (i.e. getting the services to run and processing request …
1
vote

Tool for Viewing X.509 Certificates?

Also, don't forget there's a substantial number of tasks and information you can view/manage directly from windows using the Certificates MMC console. For whatever reason, it's never in an …
0
votes

WCF and System.Configuration namespace

It depends on what you're trying to accomplish. On ASP.NET, you'd normally wouldn't use ConfigurationManager for stuff like this, but WebConfigurationManager instead. That said, there's no exact eq …
4
votes

What is the best way to download all of the WSDL files exposed by a WCF service?

If you own the service, another interesting option you could explore is using Christian Weyer's FlatWSDL …
0
votes

How to Consume JSON Web Services from a Windows Client

Yes, it is, if the service interface definition on the client side is setup correctly (i.e. the RequestFormat/ResponseFormat properties of the WebGet/WebInvoke attribute on the operation contracts …
0
votes

wcf max message size

There are ocassional problems with WCF that will cause it to fail "silently" (i.e. no exception) which can be hard to debug. Sounds like this might be the case you're seeing. In this case, …

1 2 3 4 5 6 next
15 30 50 per page