Changes between Version 15 and Version 16 of Other/Summer/2016/SCDN_Project
- Timestamp:
- Jul 28, 2016, 7:31:45 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Other/Summer/2016/SCDN_Project
v15 v16 13 13 == Implementation == 14 14 15 {{{ 16 #!html 17 <h1 style="text-align: right; color: blue">HTML Test</h1> 18 }}} 15 19 16 The project is being implemented in the Netbeans IDE (v 8.02) with the tomcat server ( 8.0.27that comes from the Netbeans installation. The particular application, the MobilityFirst proxy, has the purpose of translating a http request into a GET call in the JMF API to get content from the server. The GET call needs specific information that the routers pass to the server, which recognizes the GUID, (Globally Unique Identifiers) and send back the content to the proxy to relay to the client. The application needs to:20 The project is being implemented in the Netbeans IDE (v 8.02) with the tomcat server (v 8.0.27) that comes from the Netbeans installation. The particular application, the MobilityFirst proxy, has the purpose of translating a http request into a GET call in the JMF API to get content from the server. The GET call needs specific information that the routers pass to the server, which recognizes the GUID, (Globally Unique Identifiers) and send back the content to the proxy to relay to the client. The application needs to: 17 21 18 22 1. Parse the HTTP Request … … 20 24 3. Send content back with the HTTP Response 21 25 22 This application is mainly being implemented using a Filter in a tomcat server. The filter processes all requests before it is sent to a Servlet which can also process requests. This is to provide a higher-level filtering for requests that are specifically understood and have specific functions that are unrelated to other functions of the servlets that can be implemented in the server.26 This application is mainly being implemented using a Filter in a tomcat server. The filter processes all requests before it is sent to a Servlet which can also process requests. This is to provide a higher-level filtering for requests that are specifically understood and have specific functions that are unrelated to other functions of the Servlets that can be implemented in the server. 23 27 24 28 [[Image(http://www.orbit-lab.org/raw-attachment/wiki/Other/Summer/2016/SCDN_Project/MFProxy.png)]]