Questions tagged [switchyard]

SwitchYard is a component-based development framework focused on building structured, maintainable services and applications using the concepts and best practices of SOA.

SwitchYard is a component-based development framework focused on building structured, maintainable services and applications using the concepts and best practices of SOA.

http://switchyard.jboss.org/

37 questions
0
votes
1 answer

JBoss Switchyard Metrics - where to find the data in the server?

I'm using JBoss AS7 and can see metrics in the following link in the Admin console in my build environment. http://localhost:10090/console/App.html#sy-metrics But we don't have the console running in Production nor JMX. Does JBoss store the metrics…
Doyyan
  • 125
  • 1
  • 9
0
votes
3 answers

Camel Bindy application JBoss EAP 6.1 Deployment issue

I am trying to deploy a camel application which reads CSV file and process it.I am trying to use camel bindy to unmarshal the csv to POJO. The camel bindy module was not available in jboss EAP i have added it. Camel Route:
Ravi
  • 1,247
  • 4
  • 15
  • 35
0
votes
1 answer

Camel endpoint mocking nullpointer exception

Iam trying to mock switchyard endpoint switchyard://TohpGetAccountReports using the mock endpoint in camel. the mockAccountReportEndpoint defined in junit test is returning null and the test id failing with nullpointer exception.can you please tell…
Ravi
  • 1,247
  • 4
  • 15
  • 35
0
votes
0 answers

Arquillian : Modifying shrinkwrap webarchive

I am making a restful web service, Service A, that in turn makes a call to another rest service, Service B. Service B is an external resource that is packaged as a war archive. This service contains a regular switchyard file in…
angryip
  • 2,140
  • 5
  • 33
  • 67
0
votes
0 answers

Services failing to start during restart and not all time

Iam facing a wierd issue.Services are failing to start sometimes after restart of server.if i undeploy and deploy the same jar the application is started successfully.The jar is not corrupted. Iam running the JBoss EAP 6.1 server in linux…
Ravi
  • 1,247
  • 4
  • 15
  • 35
0
votes
1 answer

injecting properties in camel route from wildfly modules

I am using SwithcYard 2.0.0.Beta1. Application server is WildFly 8.1. I want to load properties from modules. As example I have a module /wildfly/modules/system/layers/base/org/study/configuration/test my module.xml
Maciavelli
  • 101
  • 1
  • 14
0
votes
0 answers

Error deploying the switchyard quickstart in wildfly 8.0

'Hello, I am new to Jboss pardon me if i am asking silly question. When I am trying to deploy one of the wildfly quickstart example. But i am facing with this error. If anyone can help me that would be very helpful to me. Thanks in Advance [WARNING]…
0
votes
0 answers

SwitchYard soap web service always returns null

I'm calling a switchyard web service using a simple java program with jax-ws. Our production server is a jboss eap 6.1 with switchyard 1.1 and i'm making tests with wildfly 10.1.0 and switchyard 2.1. In both environments the situation is the same,…
paf.goncalves
  • 477
  • 5
  • 18
0
votes
4 answers

Jboss Admin console not showing any messaging option under subsystems

In Windows OS: I have tried starting jboss server with out using standalone-full-*.xml files ,in this case admin console not showing any messaging option under subsystems.
Venkatesh Boya
  • 564
  • 5
  • 11
0
votes
1 answer

How to set exchange headers from xslt

I am using camel 2.10 version. I would like to set exchange headers while calling XSLT component. I am able to Get Parameters into the XSLT, but I need to do vice-versa. Can you please tell how can I achieve it?
Ravi
  • 1,247
  • 4
  • 15
  • 35
0
votes
1 answer

@Inject annotation for interface property getting null value in junit

I am using @Inject annotation for injecting interface(IFMJobHandler is an interface) in my class like this @Inject @Reference IFMJobHandler jobHandler; While running application with JUnit test, jobHandler property returning null value because of…
0
votes
2 answers

How to do BPEL,BPM deployment in JBoss AS7/EAP

Jboss says to deploy BPEL applications in Either EAP or AS7 servers. I could nt deploy BPEL applications in Any of those servers. When searched in google, Some posts says Switchyard is better to use for BPEL or BPM applications and its been aquired…
Shaan
  • 23
  • 1
  • 8
0
votes
1 answer

JBoss switchyard exception - How to stop printing long exception message in log

I have JBoss switchyard application deployed in JBoss EAP 6.1. Whenever there is any exception, lots of error messages are flooded in log. I need only first few lines of the message but not the rest. Because we know the root cause of the exception…
shakti
  • 33
  • 4
0
votes
1 answer

Load balance jboss fuse service works

Hi have a scenario where I to develop a switch yard application to poll a database every 5 seconds.i have two instances of jboss eap running and the source application is only one database.is there any way to load balance between both the eap…
Ravi
  • 1,247
  • 4
  • 15
  • 35
0
votes
1 answer

BPEL Process to Monitor a directory

I am trying to write a BPEL process to monitor a local directory for a file arrival, and do certain things with that file. I am using Jboss EAP 6.4 as my server, Switchyard as my BPEL runtime and Jboss Developer Studio for my IDE. I am extremely new…