sun.rmi.transport.proxy

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules sun » rmi » sun.rmi.transport.proxy 
sun.rmi.transport.proxy
Java Source File NameTypeComment
CGIHandler.javaClass CGIClientException is thrown when an error is detected in a client's request.
HttpAwareServerSocket.javaClass The HttpAwareServerSocket class extends the java.net.ServerSocket class.
HttpInputStream.javaClass The HttpInputStream class assists the HttpSendSocket and HttpReceiveSocket classes by filtering out the header for the message as well as any data after its proper content length.
HttpOutputStream.javaClass The HttpOutputStream class assists the HttpSendSocket and HttpReceiveSocket classes by providing an output stream that buffers its entire input until closed, and then it sends the complete transmission prefixed by the end of an HTTP header that specifies the content length.
HttpReceiveSocket.javaClass The HttpReceiveSocket class extends the WrappedSocket class by removing the HTTP protocol packaging from the input stream and formatting the output stream as an HTTP response. NOTES: The output stream must be explicitly closed for the output to be sent, since the HttpResponseOutputStream needs to buffer the entire transmission to be able to fill in the content-length field of the HTTP header.
HttpSendInputStream.javaClass The HttpSendInputStream class is used by the HttpSendSocket class as a layer on the top of the InputStream it returns so that it can be notified of attempts to read from it.
HttpSendOutputStream.javaClass The HttpSendOutputStream class is used by the HttpSendSocket class as a layer on the top of the OutputStream it returns so that it can be notified of attempts to write to it.
HttpSendSocket.javaClass The HttpSendSocket class extends the java.net.Socket class by enclosing the data output stream in, then extracting the input stream from, an HTTP protocol transmission. NOTES: Since the length of the output request must be known before the HTTP header can be completed, all of the output is buffered by an HttpOutputStream object until either an attempt is made to read from this socket, or the socket is explicitly closed. On the first read attempt to read from this socket, the buffered output is sent to the destination as the body of an HTTP POST request.
RMIDirectSocketFactory.javaClass RMIDirectSocketFactory creates a direct socket connection to the specified port on the specified host.
RMIHttpToCGISocketFactory.javaClass RMIHttpToCGISocketFactory creates a socket connection to the specified host that is comminicated within an HTTP request, forwarded through the default firewall proxy, to the target host's normal HTTP server, to a CGI program which forwards the request to the actual specified port on the socket.
RMIHttpToPortSocketFactory.javaClass RMIHttpToPortSocketFactory creates a socket connection to the specified host that is communicated within an HTTP request, forwarded through the default firewall proxy, directly to the specified port.
RMIMasterSocketFactory.javaClass RMIMasterSocketFactory attempts to create a socket connection to the specified host using successively less efficient mechanisms until one succeeds.
RMISocketInfo.javaInterface RMISocketInfo is an interface that extensions of the java.net.Socket class may use to provide more information on its capabilities.
WrappedSocket.javaClass The WrappedSocket class provides a general wrapper for providing an extended implementation of java.net.Socket that can be attached to a pre-existing Socket object.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.