Package org.apache.activemq.transport.stomp

Examples of org.apache.activemq.transport.stomp.Stomp$Headers$Subscribe


          log("map.get(" + key + ") = " + obj);
      if (obj == null) {
        resp.sendError(404, "Not here: " + e);
        return;
      }
      Headers h = new Headers();
      h = h.mergeMetadata(obj.getMetadata());
      for (Map.Entry<String, List<String>> me : h.getHeaders().entrySet()) {
        for (String v : me.getValue()) {
          resp.setHeader(me.getKey(), v);
        }
      }
      resp.getOutputStream().write(obj.getData());
View Full Code Here


          break;
        os.write(b, 0, len);
      }
      S3Object s3 = new S3Object(os.toByteArray());
      map.put(e, s3);
      Headers h = new Headers();
      @SuppressWarnings("unchecked")
      Enumeration<String> names = req.getHeaderNames();
      for (String n : Collections.list(names))
        h.put(n, req.getHeader(n));
      s3.setMetadata(h.extractMetadata());
      log("put '" + e + "' as: " + s3);
    }
  }
View Full Code Here

public class SubscribeParseTest extends TestCase {

    protected JAXBContext context;

    public void testParseXmlBeansUsingURL() throws Exception {
        Subscribe doc = (Subscribe) context.createUnmarshaller().unmarshal(getClass().getResource("wsn-subscribe.xml"));

        System.out.println("Parsed: " + doc);
        System.out.println("Addresss: " + doc.getConsumerReference().getAddress().getValue());
    }
View Full Code Here

     * (non-Javadoc)
     *
     * @see org.springframework.beans.factory.FactoryBean#getObject()
     */
    public Object getObject() throws Exception {
        Subscribe subscribe = new Subscribe();
        subscribe.setConsumerReference(AbstractWSAClient.createWSA(consumer));
        subscribe.setFilter(new FilterType());
        if (topic != null) {
            TopicExpressionType topicExp = new TopicExpressionType();
            topicExp.getContent().add(topic);
            subscribe.getFilter().getAny().add(
                    new JAXBElement<TopicExpressionType>(AbstractSubscription.QNAME_TOPIC_EXPRESSION,
                            TopicExpressionType.class, topicExp));
        }
        if (xpath != null) {
            QueryExpressionType xpathExp = new QueryExpressionType();
            xpathExp.setDialect(AbstractSubscription.XPATH1_URI);
            xpathExp.getContent().add(xpath);
            subscribe.getFilter().getAny().add(
                    new JAXBElement<QueryExpressionType>(AbstractSubscription.QNAME_MESSAGE_CONTENT,
                            QueryExpressionType.class, xpathExp));
        }
        if (raw) {
            subscribe.setSubscriptionPolicy(new Subscribe.SubscriptionPolicy());
            subscribe.getSubscriptionPolicy().getAny().add(new UseRaw());
        }
        return subscribe;
    }
View Full Code Here

    }

    public Subscription subscribe(EndpointReferenceType consumer, String topic,
                                  String xpath, boolean raw) throws JBIException {

        Subscribe subscribeRequest = new Subscribe();
        subscribeRequest.setConsumerReference(consumer);
        subscribeRequest.setFilter(new FilterType());
        if (topic != null) {
            TopicExpressionType topicExp = new TopicExpressionType();
            topicExp.getContent().add(topic);
            subscribeRequest.getFilter().getAny().add(
                    new JAXBElement<TopicExpressionType>(AbstractSubscription.QNAME_TOPIC_EXPRESSION,
                            TopicExpressionType.class, topicExp));
        }
        if (xpath != null) {
            QueryExpressionType xpathExp = new QueryExpressionType();
            xpathExp.setDialect(AbstractSubscription.XPATH1_URI);
            xpathExp.getContent().add(xpath);
            subscribeRequest.getFilter().getAny().add(
                    new JAXBElement<QueryExpressionType>(AbstractSubscription.QNAME_MESSAGE_CONTENT,
                            QueryExpressionType.class, xpathExp));
        }
        if (raw) {
            subscribeRequest.setSubscriptionPolicy(new Subscribe.SubscriptionPolicy());
            subscribeRequest.getSubscriptionPolicy().getAny().add(new UseRaw());
        }
        SubscribeResponse response = (SubscribeResponse) request(subscribeRequest);
        return new Subscription(response.getSubscriptionReference(), getClient());
    }
View Full Code Here

        subscription = new DummySubscription("mySubscription");
    }

    protected Subscribe getSubscription(String file) throws JAXBException, IOException {
        InputStream is = getClass().getResourceAsStream(file);
        Subscribe subscribe = (Subscribe) unmarshaller.unmarshal(is);
        is.close();
        return subscribe;
    }
View Full Code Here

        is.close();
        return subscribe;
    }

    public void testWithNilITT() throws Exception {
        Subscribe subscribe = getSubscription("subscribe-nil-itt.xml");
        subscription.validateSubscription(subscribe);
    }
View Full Code Here

        Subscribe subscribe = getSubscription("subscribe-nil-itt.xml");
        subscription.validateSubscription(subscribe);
    }

    public void testWithAbsoluteITT() throws Exception {
        Subscribe subscribe = getSubscription("subscribe-abs-itt.xml");
        try {
            subscription.validateSubscription(subscribe);
            fail("Invalid initial termination time used. Fault was expected.");
        } catch (UnacceptableInitialTerminationTimeFault e) {
            // OK
View Full Code Here

            // OK
        }
    }

    public void testWithEmptyITT() throws Exception {
        Subscribe subscribe = getSubscription("subscribe-empty-itt.xml");
        try {
            subscription.validateSubscription(subscribe);
            fail("Invalid initial termination time used. Fault was expected.");
        } catch (UnacceptableInitialTerminationTimeFault e) {
            // OK
View Full Code Here

            // OK
        }
    }

    public void testWithNoITT() throws Exception {
        Subscribe subscribe = getSubscription("subscribe-no-itt.xml");
        subscription.validateSubscription(subscribe);
    }
View Full Code Here

TOP

Related Classes of org.apache.activemq.transport.stomp.Stomp$Headers$Subscribe

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.