How to use the WSO2 Registry resources (Say WSDL) from .NET
Hi,
The WSO2 Registry documentation says "it offers a REST-style Web API that allows the WSO2 Registry to be used remotely from any application from any language, including Java, PHP, C++, and Javascript. "
Can you provide more details on this? Basically how to use the REST-style Web API from .NET.
I am looking at using a WSDL file hosted in the WSO2 Registry remotely from a .NET application. It would be great if you can provide sample code for achieving this.
Thanks
Shency
- Login or register to post comments
- Printer friendly version
- 261 reads











If you looked at
If you looked at RemoteRegistry.java you can get a good idea about that. It is just sending and receiving Atom entries. The structure of the atom entries describe in [1] , so if you look at the reference I gave you can get an idea of how to use registry using your own client.
[1] : http://www.wso2.org/wiki/display/registry/Registry+Protocol
There is a registry instance
There is a registry instance running in [1] and the PHP demo client written using APP can be accessed from [2]
[1] http://6ec2.dyndns.org:8080/wso2registry/web
[2] : http://labs.wso2.org/wsf/php
Thank you
Deepal