DOC

org.wso2.carbon : org.wso2.carbon.http.bridge

Maven & Gradle

Mar 13, 2023
6 usages
15 stars

WSO2 Carbon - HTTP Bridge · There are two ways to use OSGi in server-side[1]. In Carbon, what we have done is, embedding an OSGi framework inside a servlet container. So BridgeServlet delegates all the request from the servlet container to the HttpServiceServlet registered by the http.bridge bundle. This is required only when Carbon is running inside a webapp. There is a possibility to embed an HTTP server(ex. jetty) inside equinox and start a server with all our carbon bundles. This is same as running carbon inside spring DM server. For this scenario, we do not need org.wso2.carbon.http.bridge bundles and the org.wso2.carbon.bridge extension bundle. 1. http://eclipse.org/equinox/server/http_quickstart.php

Table Of Contents

Latest Version

Download org.wso2.carbon : org.wso2.carbon.http.bridge Javadoc & API Documentation - Latest Versions:

All Versions

Download org.wso2.carbon : org.wso2.carbon.http.bridge Javadoc & API Documentation - All Versions:

Version Size Javadoc Updated
4.9.x
4.8.x
4.7.x
4.6.x
4.5.x
4.4.x

How to open Javadoc JAR file in web browser

  1. Rename the file org.wso2.carbon.http.bridge-4.9.3-javadoc.jar to org.wso2.carbon.http.bridge-4.9.3-javadoc.zip
  2. Use your favourite unzip tool (WinRAR / WinZIP) to extract it, now you have a folder org.wso2.carbon.http.bridge-4.9.3-javadoc
  3. Double click index.html will open the index page on your default web browser.

How to generate Javadoc from a source JAR?

Running the command javadoc:

javadoc --ignore-source-errors -encoding UTF-8 -sourcepath "org.wso2.carbon.http.bridge-4.9.3-sources.jar" -d "org.wso2.carbon.http.bridge-4.9.3-javadoc" -subpackages 

Advertisement