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
2
votes
1 answer

CXF web service ClassCastException on assignment of return type when using WS-Reliable Messaging

I have a WSDL-first web service that is using CXF 2.7.6, using Wrapped-style. The getState web service interface method returns an int value. However, when I call the web service from my CXF client code, I usually get a ClassCastException with the…
mks
  • 29
  • 5
2
votes
0 answers

Python Suds soap client for WCF. WS-reliable messageing

I have WCF service which uses WS-reliable messaging. I would like to write some python scripts that connect to this service using suds soap client but it seems that suds doesn't support reliable messaging out of the box. Does anybody tried to use…
Sharov
  • 458
  • 8
  • 38
2
votes
0 answers

Axis 2/C on Symbian

I am doing a little bit of research into consuming web services on mobile platforms. In particular I'm currently looking at the Symbian platform. Now, I've seen gSOAP used from a Symbian environment. Has anyone seen or used the C version of Axis 2…
Adam E
  • 363
  • 1
  • 8
1
vote
0 answers

JAX-WS WS-RM "from java" without manually coding WSDL

I have a small project publishes a web service. The wsdl is generated on the fly by the JAX-WS runtime, using annotations in my impl class. I was hoping to simply "turn on" the Reliable Messaging aspect by flagging something. I had envisioned that I…
Mike
  • 2,393
  • 3
  • 25
  • 37
1
vote
4 answers

Are WCF 'one way' communications actually UDP?

In this article, (toward the end in the 'Windows Communication Foundation' section) the author suggests that a one way transmission in WCF is essentially UDP. Is this correct? Should I assume based off the content of this article that marking my…
Didaxis
  • 8,486
  • 7
  • 52
  • 89
1
vote
1 answer

CXF: Providing decoupled endpoint via existing Servlet transport

I have an application which provides services using CXF's Servlet transport and Jetty 6.1. This application also needs to consume external services. All services support WS-Addressing specification (and WS-RM on top). To consume an external service,…
1
vote
2 answers

WCF ReliableMessaging - Connect to existing OperationContext using SessionId

I am currently working on a WCF - WSIT integration task. I am using WS-ReliableMessaging with WCF and ws2007HttpBinding. Reliable session is set up correctly, I am using InstanceContextMode.PerSession and my service instance is killed off after one…
Jeno Laszlo
  • 2,023
  • 18
  • 36
1
vote
1 answer

wcf service doesn't work with SOAPUI - create sequence fails

I have build a wcf-service (vb.Net with VisualStudio2017) that works well with a testclient, and wcfstorm. SOAPUI can load the wsdl, but when sending a request, it fails with "a:ActionNotSupported" My Service uses WsHttpbinding, no authentification,…
Thomas
  • 11
  • 4
1
vote
1 answer

How to add Apache cxf wsrm for particular endpoint only

I want to add Apache CXF wsrm for particular endpoint only,not at bus level : I have tried below code but it gives exception :
Keval
  • 1,857
  • 16
  • 26
1
vote
1 answer

spring-ws WS-ReliableMessaging support

I have a project that is used for testing web services and it uses spring-ws library. Will spring-ws support WS-ReliableMessaging in the near future?
Radu Gancea
  • 773
  • 10
  • 19
1
vote
1 answer

WCF - retry doesn't work?

I have the following config for my binding: ..snap
Jan Jongboom
  • 26,598
  • 9
  • 83
  • 120
1
vote
1 answer

Implementing WS-ReliableMessaging in Web services (asmx) - C#

I have been reading about WS-ReliableMessaging and would like to implement this into my web service (.asmx). Could anyone tell me how to do this? I know to implement WS-ReliableMessaging in WCF, I just need to change the config file to use…
Neil Hung
  • 343
  • 1
  • 3
  • 7
1
vote
0 answers

Guaranteed delivery to dynamic recipient list

I have an upcoming project to provide guaranteed delivery of notification messages over web-services to a dynamic recipient list. We're currently using Synapse for some other transformation, routing, and proxying requirements, and I'm keen to…
0
votes
3 answers

Building a reliable service in WCF

I am currently designing a service (wsHttp) which should be used to return sensitive data. As soon as a client asks for this data, I get it from the database, compile a list, then delete the data from the database and return the list. My concern is…
Gerrie Schenck
  • 22,148
  • 20
  • 68
  • 95
0
votes
1 answer

How can I enable WS-RM (version 1.2) with NuSOAP client

Can enable I enable WS-RM (version 1.2) with NuSOAP client just like below? I tried this, but I cannot receive data from the API. Any ideas? Thanks. $client = new nusoap_client($api_link, array('reliable' => 1.2 , 'useWSA' => TRUE) ); Full…
Ujith Nimantha
  • 167
  • 1
  • 16