Click here to Skip to main content
15,891,864 members
Articles / Programming Languages / Java / Java SE

Using C#, Java Webservices and JMS together

,
Rate me:
Please Sign up or sign in to vote.
3.80/5 (10 votes)
31 Mar 2006CPOL2 min read 128.1K   2.4K   57  
Bridging the gap between Java and C#, JMS specific message have been send to C# client using web services.
package testwebservices;

import java.io.*;

/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2004</p>
 * <p>Company: </p>
 * @author not attributable
 * @version 1.0
 */

public class ReceiverWebService
    implements Serializable {

  public ReceiverWebService() {
  }

  public String getJMSChatPublisher() {

    JMSChatSubscriber jmsChatSubscriber = null;
    jmsChatSubscriber = new JMSChatSubscriber();

    return jmsChatSubscriber.getSynchronousMessage();

  }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Architect
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Written By
Architect Catalisse
Pakistan Pakistan
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions