Passing information from one service to another in WSO2 ESB - header

I have a requirement where I need to pass some values from one service to another.For example:we can pass values in RHF2Headers in WMB.I am trying to find out a way in WSO2 to achieve the same.
Thanks in advance.

Related

Is there a way to implement access decision manager on HTTP listener connector on the fly without creating a class or component?

I was wondering if there is way to apply access decision manager on HTTP listener connector path directly rather than a component in mule studio?
Something like localhost:8081/GetEmployee=ROLE_ADMIN
You can Use filter to achieve this. Put filter on query parameter.
Please refer this for more details.
https://docs.mulesoft.com/mule-user-guide/v/3.4/using-filters
HTH.

Biztalk Creating RESTful WCF service by exposing the schema

I need to create the RESTful WCF service for the schema I have in the application. The schema which has three elements
My requirement is to create the WCF service so I can pass these three values through the service. Can anybody give me clear idea how can I approach this. I have been trying to create a schema, and promoted the one of the element for example the user name and created the property schema like
I deployed this and tried creating the WCf service through the publishing wizard selecting WCF WebHTTp adapter(which didnt ask we to select the schema) created the service and configured the application in Biztalk console. But the service is not working. If I call the service with the parameters , still it shows the
Can anybody please help me how can I approach this. I am really stuck with this for long time. Please any help is greatly appreciated. Thanks
This error means that Server is not able to find out the action it needs to do based upon the URL and request. Based on your configuration on receive location, your url should be localhost/demp/service1.svc/specimen=value, if that does not work then, change the Operation Name="Op1" Method = "GET" Url ="specimen/{specimen} and then your url should be localhost/demp/service1.svc/specimen/value

How to call WCF method from the SSRS?

I am developing the SSRS report and wanted to consume the one method call of the WCF service. Suppose I have a service Url like http:\\localhost\2014\security.svc and wanted to consume string Encrypt(string data) method from that service.
Now I know how to use XML and Web service as the data source. I don't want that what I want is to call the web service to get the some values encrypted on the report so I can use the expression to set the encrypted values for the some fields. In case of confusion feel free to leave a comment. Any help would be great .

Correlation methods in WCF workflow application with state machine

Can anyone let me know how to set correlation handle and correlation initilizers in a WCF workflow service appliction project. I want to set the correlation value as the pid (one of the input parameters of recevie activity). Can anyone please help me for the same?
This has been solved under the following link
http://social.msdn.microsoft.com/Forums/en-US/wfprerelease/thread/6a7d9069-d5a7-4410-b5dd-16325d0d8dc9

Retrieving call source for a WCF service

I'm fighting since two days with a simple question : Is there a way to identify the source of a WCF call ?
I'm trying to find a realiable .Net property that will let the service know the address (URI) of the calling Web Service.
Especially in the case where two Web Services are hosted on the same machine.
Thanks in advance.
What about the calling client do you want to detect??
In .NET 3.5, you can fairly easily find the client's IP address - see Keyvan's blog post on that topic.
Is that what you're looking for?? If not, you'd probably have to add the caller information to the message (or the headers) explicitly for the server to be able to inspect that information.