The mediator pattern defines an object that encapsulates how a set of objects interact.

learn more… | top users | synonyms

0
votes
1answer
28 views

How to use xslt mediator in wso2 ESB?

I have a xslt that i have stored in local-entry. I have response xml saved in a property. How can i use xslt mediator that should take the xslt from local-entry and xslt mediator should take xml from ...
1
vote
1answer
39 views

WSO2 ESB DBLookup mediator query multiple rows

As it says in the documentation of the DBLookup Mediator it only returns the first row of the query, the other results if they are, were ignored. I want to know if there is a "best way" to run a ...
1
vote
0answers
34 views

Mediator as a Singleton

I'm working on a school project about GRAPS and Design Patterns. It's basically a game with a grid on which objects as well as players can move. I was thinking about using a mediator to determine the ...
0
votes
1answer
38 views

wso2 cache mediator response in binary (it should be XML)

I'm learning about wso2 ESB 4.6.0. I'm studying right now about mediators. I implemented cache mediator as below. <proxy xmlns="http://ws.apache.org/ns/synapse" name="cacheProxy" ...
0
votes
1answer
71 views

Android and the mediator design pattern

I am fairly new to android and after reading a book and taking alot of tutorials i am about to create my first "real" app. My question is rather simple does: Is the mediator design pattern still a ...
0
votes
0answers
70 views

Is there a WSO2 OpenID mediator?

I know from WSO2 ESB documentation that there is an OAuth mediator: http://docs.wso2.org/wiki/display/ESB450/OAuth+Mediator Is it also possible to have an OpenID mediator in ESB mediation sequence? ...
0
votes
1answer
29 views

wso2 mediator dynamic url

I have some problems in the next situation: I have wso2esb and a there is proxy-service in the esb. I call this proxy with parameters with parameter, e.g. ...
0
votes
2answers
45 views

WSO2 - Set a property and write it in the Carbon Log

I've created a Custom Proxy and added a class mediator and log Mediator in it. I'm trying to set a property's value in the java class and need to write that in the log, as the proxy gets deployed. ...
0
votes
2answers
55 views

WSO2 Class Mediator gives an error

Our team is completely new to the WSO2 tool. We got the basic training on how to add proxy services and were able to do so as well. Now, we have to add a class in the In Sequence. We tried that ...
2
votes
1answer
29 views

Mediator pattern for cross-layer messaging

I'm implementing a simple desktop application which is divided into 3 layers: UI -> service/domain -> repository. I'm thinking about using a Mediator class so that UI layer can be notified of ...
1
vote
1answer
42 views

How does a mediator object work? What is the idea behind it?

I'm interested in the mediator object because it sounds useful, but deciphering code examples in order to learn how to interact with and build that object escapes me. I love code examples if they come ...
7
votes
2answers
260 views

Swing MVC - Event Propogation and Data Sharing

I am trying to apply MVC pattern in swing application. However I am facing two major issues given that you have nested hierarchy of panel e.g. Parent -> Child - > Grand Child -> Grand Grand Child. ...
0
votes
0answers
46 views

wso2 : using ws-discovery proxy in client side code

how can i use of ws-discovery proxy in a class mediator i need to use of ws-discovery proxy (in governance registry) in client code(java) for example in a custom mediator that exist into a custom ESB ...
1
vote
2answers
214 views

Service Mediation Using Proxy Services -WSO2

I'm new to this area and i need to access my web service via the ESB. as it mentioned in here - Service Mediation Using Proxy Services i tried to to create it. after that i run it and get the response ...
0
votes
0answers
165 views

WSO2 ESB : add class mediator to proxy service

automatic deleted proxy service, when i added a class mediator i created a simple custom proxy service and added a class mediator to it's out sequence. when i click on finish button show this error : ...
0
votes
1answer
87 views

wso2 carbon studio: deploy and use custom mediator in ESB

how to deploy custom mediator to ESB and use it by UI I created a custom mediator and it's JAR file. Then created a carbon application project and selected a custom mediator artifact, after that ...
0
votes
1answer
18 views

ESB 4.6.0. Router Mediator

I used Router mediator in ESB 4.0.0. When we upgraded ESB to 4.6.0, router mediator doesn't work. And not exists in mediators List. Is Router mediator still exist in ESB 4.6.0?
0
votes
0answers
25 views

Mediator.js -stopPropogation()

I am trying to stop a function using stopPropogation() function but its is not working . i used the following code to describe it: mediator.subscribe("channel4", function(data, channel){ ...
1
vote
0answers
59 views

Good pattern to use for multiple xmlhttprequests used by different processes

I wonder what is a good pattern to use when you could have multiple xmlhttprequests that are part of different processes like (check login, fetch tooltip and display, show sub records/open details). ...
0
votes
1answer
307 views

Removing SOAP Wrapper From a Message in wso2 ESB

I tried to invoke a web service through WSO2esb.My web service is only accepting a soap message like this. <?xml version="1.0" encoding="UTF-8"?> <ns1:Envelope ...
2
votes
1answer
230 views

Can the Backbone object in 0.9.9 now be used as a mediator replacement?

I've been reading Backbone Fundamentals and have been planning on using the mediator and facade patterns in a new project, however on reading I was wondering why it wouldn't be possible to just use ...
1
vote
1answer
126 views

Unit Testing Mediator and view in robotlegs 2

I am learning robotlegs framework, but this question is also I think of general nature. I have a Mediator class that listens for event on a button in View and on that event it dispatches a signal ...
0
votes
0answers
51 views

WSO2 ESB router cloning and matching doesn't work

I am trying to use Stratos Live ESB for testing. I want test how message routing works with router mediator. Under the router mediator, three clone routes have been created with matching criteria. But ...
-1
votes
2answers
88 views

Mediator with JavaFx

i am trying use the design pattern on my Mediator. In order to have my gui seperated instead of having all components in one class. And example would be that you needed to be logged into the program ...
0
votes
1answer
130 views

Custom Error Handler in Wso2 Mediation

In my In sequence mediatior, I need to process some logic on the input values and based on that i need to decide whether to call the webservice or return a fault. I have defined the sequence as ...
0
votes
1answer
101 views

Unit Test methods that contain a mediator using c#

I am currently unit testing a university register system, while it always has error when a method I am going to test contains a mediator which will contact to the University with served as a mediator. ...
0
votes
0answers
28 views

Moderated medation analysis when mediator is dichotomous

I have a simple moderated mediation model:X has effect on Y through mediator, and moderator moderates the path between x and mediator (See diagram below) MODERATOR ¦ ...
1
vote
1answer
613 views

Is the use of the mediator pattern recommend?

I am currently reading http://addyosmani.com/resources/essentialjsdesignpatterns/book/#mediatorpatternjavascript I understand the mediator pattern as some sort of object which sets up publish and ...
0
votes
0answers
145 views

Create custom TCP mediator WSO2

I want to create an ESB configuration within WSO2 (I use WSO2 ESB 4.0.3), which supports ISO 8583 protocol. I know that ISO 8583 is not currently supported in WSO2, so i decided to develop a custom ...
0
votes
5answers
497 views

Sharing Collection between ViewModels

I've searched and nothing is helping me get to where I need to get. Description of my problem(s): We have a single dialog window which hosts multiple views (usercontrols). Clicking next and back ...
0
votes
1answer
214 views

wso2 esb validate mediator always says the request is invalid

I am using wso2 esb 4.0.3 and I have some problem in making the mediator to work . The problem is with the given schema, even though I send the correct soap request the validate mediator evaluates ...
0
votes
2answers
457 views

wso2 esb Class Mediator

hello I have the following class mediator created through Carbon Studio: package my.mediation; import org.apache.synapse.MessageContext; import ...
2
votes
1answer
708 views

Backbone + RequireJS + Mediator Pattern resulted in View Logic short-circuiting and infinite looping

I am currently using Backbone.Mediator to leverage the benefit of Mediator Pattern in my Backbone + RequireJS project; however, I encountered a peculiar behaviour of the Pattern which am not so sure ...
0
votes
1answer
48 views

Is the IoC container allowed to use the Messenger/Mediator class?

I'm new with IoC, and i'm wondering if best practices allow the container to use the mediator class, for example MVVM Lite's Messenger. Can the container regiser for and send messages? Thank you very ...
0
votes
1answer
41 views

Messenger class accessibility

I'm using MVVM Light's Messenger class. I'm wondering if this class's should be used only by ViewModels, or if it can be used also by other classes. If it's the latter, then who also can use it? IoC ...
0
votes
1answer
272 views

Publish an event with Backbone Mediator from a model

Is it a good practice / pattern to publish events from Backbone models?
1
vote
1answer
484 views

routing backbone apps when using mediator pub/sub patterns

I am building an application in backbone combining the modular and facade/mediator pub/sub patterns from https://github.com/addyosmani/backbone-aura/ to send messages between modules in order to keep ...
1
vote
1answer
140 views

Namespace issues when implementing mediator.js

I have a web page (php) which handles a series of ajax forms and simple js hide/show divs based on content from an external upload to be used by registered members of an organization. In order to ...
2
votes
2answers
267 views

Starting with RequireJS, communication between modules

I am an ActionScript 3 developer who is just making his first way in building a large-scale JavaScript app. So I understand modules and understand that AMD is a good pattern to use. I read about ...
0
votes
1answer
172 views

I need help imlementing a Facade+Mediator for persistence in a NODEJS program using MongoDB (and mongoose)

I'm a really n00b playing with NodeJS and MongoDB. I want to build something that could be a really big application. So I try to design the application as much decoupled as I can. I see it would be ...
0
votes
1answer
321 views

WSO2 ESB: Using external parameter definition for proxy?

We are using several proxies that are listening to different locations. But during develpment, we aren't having the same URI as in the production environment. Is it possible to have the URI ...
0
votes
2answers
585 views

WSO2 ESB - Dynamic value for proxy parameters (transport)

I need to be able to specify a dynamic value for proxy parameter. Actually, I have to specify each parameter with complete URL like : <parameter ...
0
votes
2answers
258 views

How to make inSequence without send

I have this WSO2 ESB proxy: <?xml version="1.0" encoding="UTF-8"?> <proxy xmlns="http://ws.apache.org/ns/synapse" name="sid008" transports="http" startOnLoad="true" trace="disable"> ...
1
vote
1answer
226 views

What's the difference between a wrapper, a bridge and a mediator?

I'm reviewing slides for my course in software architecture, and supposedly there's a difference between the three terms. Although the slides attempt to adress the differences, I don't quite "get" it. ...
2
votes
2answers
520 views

wso2 custom mediator inside carbon app

I developed a custom mediator and its corresponding Factory/Serializer classes so that I can configure complex configuration options for it inside a sequence. This was made with a carbon app project ...
1
vote
1answer
173 views

JavaScript Mediator pattern; Component name is undefined

In the following implementation of the mediator pattern why this.name in the initialize method always undefined? As I was expecting it to be TestObject. How can I achieve this? Also how can I create ...
1
vote
2answers
379 views

Multiple BPEL/ Mediator payloads how to store in DB using DB adapter

I have huge XML which is XSD define for the same and have complex types which required around > 50 DB tables to store the entire XML. Have one parent table which has reference ID to child tables. Now ...
5
votes
1answer
471 views

JavaScript architecture - mediators, when to use them?

This is more of a general question about the structure of my JavaScript code and if I'm going in the right direction towards well structured code. The current code I've got: (function (myNamespace, ...
0
votes
1answer
1k views

Mediator pattern example: chat

I read that chat is a sample of using of Mediator pattern. I wrote simple imitation of chat but I don't know how can I use mediator pattern in this situation. As I understand all my object already ...
0
votes
0answers
133 views

How to mediate a SWF-Flashfile using a PHP mediating a.k.a. HTTP-Pseudostreaming script?

I'm writing a simple small context media platform. It is mainly based on so called HTTP Pseudostreaming, where I mediate the media file using a php script. This is used for checking access to the ...

1 2