Wiki source code of Remoting Home
Version 2.1 by 5fbc055b7cc103006957e1ae on 2012-06-15 03.23:57
Hide last authors
| author | version | line-number | content |
|---|---|---|---|
| |
2.1 | 1 | (% style="" %) |
| 2 | Remoting is a framework issuing remote calls over TCP/IP with optional TLS support. It provides for callback patterns, broadcating and bean support and interoperates well with the [[spring framework>>url:http://www.springframework.org/||shape="rect"]] and [[OSGi>>url:http://www.osgi.org||shape="rect"]]. | ||
| |
1.1 | 3 | |
| |
2.1 | 4 | (% style="" %) |
| 5 | Furthermore, it offers two alternative wire protocols. One is based on java.io.ObjectOuputStream while the other protocol uses a highly optimized binary data stream, which additionally features C++ interoperability through the fancysock library. | ||
| |
1.1 | 6 | |
| |
2.1 | 7 | (% style="" %) |
| 8 | The source code can be checked out from the SVN repository located here: | ||
| |
1.1 | 9 | |
| |
2.1 | 10 | {{code language="none"}} |
| 11 | http://svn.clazzes.org/svn/remoting | ||
| 12 | {{/code}} | ||
| |
1.1 | 13 | |
| |
2.1 | 14 | (% style="" %) |
| 15 | For manual installation you may download the .jar files from the maven repository: | ||
| |
1.1 | 16 | |
| |
2.1 | 17 | {{code language="none"}} |
| 18 | http://maven.clazzes.org/org/clazzes/remoting/ | ||
| 19 | {{/code}} | ||
| |
1.1 | 20 | |
| |
2.1 | 21 | (% style="" %) |
| 22 | === {{id name="RemotingHome-Mavenintegration"/}}Maven integration === | ||
| 23 | |||
| 24 | (% style="" %) | ||
| 25 | We recommend to build your project with [[Maven>>url:http://maven.apache.org/||shape="rect"]]. Just add the following snippets to your {{code language="none"}}pom.xml{{/code}} file: | ||
| 26 | |||
| |
1.1 | 27 | |
| |
2.1 | 28 | |
| 29 | {{code language="none"}} | ||
| 30 | <repository> | ||
| 31 | <id>clazzes.org</id> | ||
| 32 | <url>http://mvn.clazzes.org/</url> | ||
| 33 | </repository> | ||
| 34 | |||
| 35 | <dependency> | ||
| 36 | <groupId>org.clazzes</groupId> | ||
| 37 | <artifactId>remoting</artifactId> | ||
| 38 | <version>yourversion</version> | ||
| 39 | </dependency> | ||
| 40 | {{/code}} | ||
| 41 | |||
| 42 | (% style="" %) | ||
| 43 | === {{id name="RemotingHome-Troubleshooting"/}}Troubleshooting === | ||
| 44 | |||
| 45 | (% style="" %) | ||
| 46 | If you have any problems please consult our [[bug database>>url:https://jira.clazzes.org/browse/REMOTING||shape="rect"]]. You may also find information in the forum and wiki. |