Hi,
before the 4.0.0 version subscription/unsubscription requests were sent to the EventSource which does not exist any more. How can I subscribe a web service to a topic without using management console or JMS API?
Regards, Vuk
_______________________________________________ Esb-java-user mailing list [hidden email] https://mail.wso2.org/cgi-bin/mailman/listinfo/esb-java-user |
With the current model you can directly subscribes to a topic. Please see the wsclient sample comes with the WSO2 MB 1.0.0.
thanks, Amila. On Thu, Jun 23, 2011 at 8:18 PM, Vuk Mijovic <[hidden email]> wrote: Hi, _______________________________________________ Esb-java-user mailing list [hidden email] https://mail.wso2.org/cgi-bin/mailman/listinfo/esb-java-user |
Hi Amila,
What is sample should refer?, I couldn't find a sample that can map to WS-Eventing subscriptions (as requested by Vuk) with samples package with WSO2MB-1.0. Thx Asanka
On Sat, Jun 25, 2011 at 2:36 AM, Amila Suriarachchi <[hidden email]> wrote: With the current model you can directly subscribes to a topic. Please see the wsclient sample comes with the WSO2 MB 1.0.0. -- Asanka Abeysinghe, Director, Solutions Architecture, WSO2,Inc. m: +1 408 470 0489, p: +1 408 754 7388 - 51272 _______________________________________________ Esb-java-user mailing list [hidden email] https://mail.wso2.org/cgi-bin/mailman/listinfo/esb-java-user |
wsclient[1].
please see the following class[2] which shows how to programatically subscribes to event broker. thanks, Amila. [1] https://svn.wso2.org/repos/wso2/branches/carbon/3.2.0/products/mb/1.0.0/modules/samples/product/wsclient [2] https://svn.wso2.org/repos/wso2/branches/carbon/3.2.0/products/mb/1.0.0/modules/samples/product/wsclient/src/org/sample/ws/PubSubClient.java On Mon, Jun 27, 2011 at 12:08 AM, Asanka Abeysinghe <[hidden email]> wrote: Hi Amila, _______________________________________________ Esb-java-user mailing list [hidden email] https://mail.wso2.org/cgi-bin/mailman/listinfo/esb-java-user |
Thanks for the info, Amila. It is exactly what I needed.
I have one more question, though (just out of curiosity). The example shows how to use BrokerClient to subscribe, unsubscribe and publish events. What if I wanted to write a subscribing service in C++ (this service would subscribe itself on start-up), for example? How would I contact the Event Broker in this case? Is there a .wsdl describing Event Broker that I could use?
All the best, Vuk On Mon, Jun 27, 2011 at 8:37 AM, Amila Suriarachchi <[hidden email]> wrote: wsclient[1]. _______________________________________________ Esb-java-user mailing list [hidden email] https://mail.wso2.org/cgi-bin/mailman/listinfo/esb-java-user |
Amila
I thought we still supported the standard WS-Eventing APIs? Paul
On 27 June 2011 16:08, Vuk Mijovic <[hidden email]> wrote: Thanks for the info, Amila. It is exactly what I needed. -- Paul Fremantle CTO and Co-Founder, WSO2 OASIS WS-RX TC Co-chair, VP, Apache Synapse UK: +44 207 096 0336 US: +1 646 595 7614 blog: http://pzf.fremantle.org twitter.com/pzfreo [hidden email] wso2.com Lean Enterprise Middleware Disclaimer: This communication may contain privileged or other confidential information and is intended exclusively for the addressee/s. If you are not the intended recipient/s, or believe that you may have received this communication in error, please reply to the sender indicating that fact and delete the copy you received and in addition, you should not print, copy, retransmit, disseminate, or otherwise use the information contained in this communication. Internet communications cannot be guaranteed to be timely, secure, error or virus-free. The sender does not accept liability for any errors or omissions. _______________________________________________ Esb-java-user mailing list [hidden email] https://mail.wso2.org/cgi-bin/mailman/listinfo/esb-java-user |
On Mon, Jun 27, 2011 at 8:41 PM, Paul Fremantle <[hidden email]> wrote: Amila yes. This sample comes with some already generated stubs for ws-event API and authentication. If some one wants to connect to this service through C++ he can do the following. 1. Generate the code for ws-event API. we use the wsdl stored here[1]. 2. Generate the code for Authentication admin[2]. 3. Login to the carbon server using the generated code in step 2. WSO2 carbon keeps the user login details in the http session. Therefore you need to pass the session cookie to invoke the real service. Please see[3] for more details. 4. set the session cookie and invoke the event broker service with the generated code in [1] thanks, Amila. [1] https://svn.wso2.org/repos/wso2/branches/carbon/3.2.0/service-stubs/org.wso2.carbon.event.client.stub/3.2.0/src/main/resources/eventing-new.wsdl [2] https://svn.wso2.org/repos/wso2/branches/carbon/3.2.0/service-stubs/org.wso2.carbon.event.client.stub/3.2.0/src/main/resources/AuthenticationAdminService.wsdl [3] https://svn.wso2.org/repos/wso2/branches/carbon/3.2.0/products/mb/1.0.0/modules/samples/product/wsclient/src/org/sample/ws/MessageBoxSubClient.java
_______________________________________________ Esb-java-user mailing list [hidden email] https://mail.wso2.org/cgi-bin/mailman/listinfo/esb-java-user |
Amila
For future can we support WS-Security UsernameToken (and others) instead of cookie? Paul
On 28 June 2011 05:59, Amila Suriarachchi <[hidden email]> wrote:
-- Paul Fremantle CTO and Co-Founder, WSO2 OASIS WS-RX TC Co-chair, VP, Apache Synapse UK: +44 207 096 0336 US: +1 646 595 7614 blog: http://pzf.fremantle.org twitter.com/pzfreo [hidden email] wso2.com Lean Enterprise Middleware Disclaimer: This communication may contain privileged or other confidential information and is intended exclusively for the addressee/s. If you are not the intended recipient/s, or believe that you may have received this communication in error, please reply to the sender indicating that fact and delete the copy you received and in addition, you should not print, copy, retransmit, disseminate, or otherwise use the information contained in this communication. Internet communications cannot be guaranteed to be timely, secure, error or virus-free. The sender does not accept liability for any errors or omissions. _______________________________________________ Esb-java-user mailing list [hidden email] https://mail.wso2.org/cgi-bin/mailman/listinfo/esb-java-user |
In reply to this post by Amila Suriarachchi-2
That's everything I wanted to know.
Amila, many thanks for the help and quick responses. All the best, Vuk
On Tue, Jun 28, 2011 at 6:59 AM, Amila Suriarachchi <[hidden email]> wrote:
_______________________________________________ Esb-java-user mailing list [hidden email] https://mail.wso2.org/cgi-bin/mailman/listinfo/esb-java-user |
Free forum by Nabble | Edit this page |