Questions tagged [ws-reliablemessaging]

WS-ReliableMessaging is an extension to SOAP that allows messages to be reliably delivered to web-services between distributed applications.

WS-ReliableMessaging is an extension to SOAP that allows messages to be reliably delivered to web-services between distributed applications. It is part of the Web service specifications (WS-*).

44 questions
5
votes
1 answer

How to receive a response from server in WCF reliable messaging after connection cuts

So I created Client/Server WCF. What I want is when I send message to the server from this client and the connection cuts for any reason , client shuts down for example, how could this client get the response when it is availabe again ? Is it…
5
votes
1 answer

Understanding WCF reliable session retry behaviour

I have several questions about WCF reliable session reliability: Does WCF re-serialize a message during a retry attempt? 2. If 1 is correct - does it happen after message parameters were disposed or not? 3. If 2 is correct - is there any way to…
Nikolay R
  • 957
  • 2
  • 11
  • 22
4
votes
2 answers

Who Needs (SOAP) Reliable Messaging?

I spotted a very good argument against protocol-based (viz. SOAP) reliable messaging. Is this a flame-war topic, or is there a fair degree of consensus about this? I think the author's "Netherlands" case-study ought to have included an in-order…
Brent Arias
  • 29,277
  • 40
  • 133
  • 234
4
votes
2 answers

Problems with WCF reliable session (reliable messaging)

In our WCF application I am trying to configure reliable sessions. Service:
Rob
  • 165
  • 1
  • 1
  • 11
4
votes
3 answers

WCF is slow when reliable session is ON and with burst async request

For experiments, I created a simple "Hello World" WCF service and client using .NET 4.5 on VS2012. The server is hosted on a console application and use net.tcp binding. I wrote the client code to send a burst of async requests (a total of 700…
nikoniko
  • 833
  • 2
  • 11
  • 22
3
votes
2 answers

WCF Reliable Messaging: stuttering service after maxPendingChannels increase

We have an issue whereby during load testing if we fire calls rapidly at one of our services we were getting the error "System.ServiceModel.ServerTooBusyException: The request to create a reliable session has been refused by the RM Destination.…
MrLane
  • 1,728
  • 22
  • 41
3
votes
4 answers

How may I teach that SOAP is not a reliable transport?

I need to teach that a HTTP SOAP call may be received but the caller may not get the response due to a network failure (among other problems). (This problem made WS-ReliableMessaging be developed) How would you guys show this problem to a web…
Eduardo
  • 2,327
  • 5
  • 26
  • 43
3
votes
0 answers

WCF ReliableSession and Timeouts

I have a WCF service used mainly for managing documents in a repository. I used the chunking channel sample from MS so that I could upload/download huge files. Now I implemented reliable session with the service and I am seeing some strange…
Sudheer Kumar
  • 311
  • 4
  • 16
3
votes
1 answer

WSHttp binding and ReliableSession / MaxRetryCount

When using a WSHttpBinding in WCF with reliableSessions enabled, my service reference updates itself to: I cannot add the maxRetryCount attribute to the…
Jan Jongboom
  • 26,598
  • 9
  • 83
  • 120
3
votes
1 answer

WCF WebService - Is there a way to determine that client received response?

Lets say I have a WCF service that a client can use to receive message from some server side message queue. As an example, lets say there is a server-side queue of email in a data table: ID | MESSAGE_TEXT | SENT ------------------------ 1 | Hi! …
CodingWithSpike
  • 42,906
  • 18
  • 101
  • 138
3
votes
1 answer

Enabling reliable sessions causes an exception which talks about contract filter mismatch

Context I'm playing with WCF configuration, trying to enable reliable sessions. When reliable sessions are disabled, everything works as expected, and the client can successfully connect to the server. As soon as I put enabled="true" in…
Arseni Mourzenko
  • 50,338
  • 35
  • 112
  • 199
3
votes
1 answer

How can I handle a failure when replying in a WCF reliable request reply service method

In reliable request reply I understand that the reply is acknowledged and reliable. If for some reason the reply message continually fails on all 8 attempts (the default number of retries being 8) then the channel will then be faulted. In the server…
2
votes
0 answers

IOS implementation of simple messaging system (client/server) between clients

i've been looking around to find a simple library or a client/server sample code for implementing a messaging system between users of my IOS clients app and a REST server. I would need that each user has an incoming and sent messages view. This view…
kky
  • 141
  • 2
  • 13
2
votes
1 answer

Why is reliable messaging not enabled by default on wsHttpBinding? AND Does the server or client config have precedence?

I've been reading about reliable messaging and have a few questions that I haven't been able to find the answer to: Why isn't RM enabled by default in wsHttpBinding (and others as well)? In what case would you not want to use reliable messaging? I…
Marcus
  • 5,407
  • 3
  • 31
  • 54
2
votes
1 answer

Apache CXF3.0.4 Soap web service with reliable Messaging throws exception

Hi I had created SOAP web service with apache CXF 3.0.4 and spring4.0 and its working fine for me and created with wsdl file. Now i want to add extra feature of Apache CXF about WS-RM (web service Reliable Messaging) to this web service. I try to…
M S Parmar
  • 955
  • 8
  • 22
1
2 3