+

Search Tips   |   Advanced Search

  • Previous Topic
  • Next Topic
  • Book Index
  • Java serialization requests

    In This Section

  • Overview
  • Record a Java serialization request
  • Post-recording wizard
  • User Interface
  • See Also

  • Requests
  • HTTP requests
  • SOAP requests
  • WebSocket requests
  • Oracle Forms requests
  • Adobe Flex/AMF requests
  • Adobe RTMP requests
  • Data Format Extension requests
  • Google Web Toolkit requests
  • Hessian requests
  • Siebel requests
  • Silverlight requests
  • Media requests
  • Polling requests
  • Streaming requests
  • Push messages
  • Validation
  • Global validation
  • Variable extractors
  • Advanced parameters
  • Variable correlation
  • Shortcuts
  • Compare requests and responses

  • Overview

    Java Serialization on top of the HTTP protocol allows remote service calls to be executed between the client and server using specific Frameworks such as Spring Remoting (Spring HTTP Invoker). The data exchange is carried out in binary and encapsulated in the HTTP protocol.

    The Java Serialization module allows load testing web applications programmed in Java and using specific Frameworks such as Spring Remoting (Spring HTTP Invoker).


    Dependent libraries

    When recording Java Serialization requests, you will need to load the Java classes for the objects exchanged, as well as the client interfaces for the called services. See Java Serialization.


    Recording

    The following diagram shows how the Java Serialization module works during recording:

    The binary data exchanged between the client and server passes through the recording proxy. The Java Serialization module comes into play as the data travels through the proxy, analyzing and decoding the requests. Once translated into XML, the requests are inserted in the project.


    Runtime

    The following diagram shows how the Java Serialization module works during a test run:

    The XML request variables are evaluated and the module engine translates the XML to binary data. This data is then sent to the server. The binary response received is translated into XML, after which the validity checks and Variable Extractors in the played request are executed.


    Home