/**
*
* Copyright 2005 Protique Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
**/
package org.servicemix.examples;
import javax.jbi.JBIException;
import javax.jbi.component.ComponentContext;
import javax.jbi.messaging.InOnly;
import javax.jbi.messaging.NormalizedMessage;
import javax.jbi.servicedesc.ServiceEndpoint;
import javax.xml.namespace.QName;
import org.servicemix.components.util.ComponentSupport;
import org.servicemix.jbi.jaxp.StringSource;
import org.servicemix.jbi.resolver.EndpointResolver;
import org.servicemix.jbi.resolver.NullEndpointFilter;
/**
* @version $Revision: 600 $
*/
public class SenderComponent extends ComponentSupport implements Sender {
public static final QName SERVICE = new QName("http://servicemix.org/example/", "sender");
public static final String ENDPOINT = "sender";
private EndpointResolver resolver;
public SenderComponent() {
super(SERVICE, ENDPOINT);
}
public EndpointResolver getResolver() {
return resolver;
}
public void setResolver(EndpointResolver resolver) {
this.resolver = resolver;
}
public void sendMessages(int messageCount) {
sendMessages(messageCount, false);
}
public void sendMessages(int messageCount, boolean sync) {
try {
ComponentContext context = getContext();
for (int i = 0; i < messageCount; i++) {
InOnly exchange = context.getDeliveryChannel().createExchangeFactory().createInOnlyExchange();
NormalizedMessage message = exchange.createMessage();
ServiceEndpoint destination = null;
if (resolver != null) {
destination = resolver.resolveEndpoint(getContext(), exchange, NullEndpointFilter.getInstance());
}
if (destination != null) {
// lets explicitly specify the destination - otherwise
// we'll let the container choose for us
exchange.setEndpoint(destination);
}
exchange.setInMessage(message);
// lets set the XML as a byte[], String or DOM etc
String xml = "<s12:Envelope xmlns:s12='http://www.w3.org/2003/05/soap-envelope'><s12:Body> <foo>Hello!</foo> </s12:Body></s12:Envelope>";
message.setContent(new StringSource(xml));
if (sync) {
context.getDeliveryChannel().sendSync(exchange, 4000);
} else {
context.getDeliveryChannel().send(exchange);
}
//Thread.sleep(100);
}
}
catch (JBIException e) {
e.printStackTrace();
}
/*
catch (InterruptedException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
*/
}
}