congrats Icon
New! Announcing our next generation AI code completions
Read here
Tabnine Logo
BurlapSkeleton.invoke
Code IndexAdd Tabnine to your IDE (free)

How to use
invoke
method
in
com.caucho.burlap.server.BurlapSkeleton

Best Java code snippets using com.caucho.burlap.server.BurlapSkeleton.invoke (Showing top 8 results out of 315)

origin: com.caucho/com.springsource.com.caucho

/**
 * Invoke the object with the request from the input stream.
 *
 * @param in the Burlap input stream
 * @param out the Burlap output stream
 */
public void invoke(BurlapInput in, BurlapOutput out)
 throws Exception
{
 invoke(_service, in, out);
}
origin: org.vx68k.quercus/hessian

/**
 * Invoke the object with the request from the input stream.
 *
 * @param in the Burlap input stream
 * @param out the Burlap output stream
 */
public void invoke(BurlapInput in, BurlapOutput out)
 throws Exception
{
 invoke(_service, in, out);
}
origin: alipay/sofa-hessian

/**
 * Invoke the object with the request from the input stream.
 *
 * @param in the Burlap input stream
 * @param out the Burlap output stream
 */
public void invoke(BurlapInput in, BurlapOutput out)
  throws Exception
{
  invoke(_service, in, out);
}
origin: alipay/sofa-hessian

  BurlapOutput out = new BurlapOutput(os);
  _skeleton.invoke(in, out);
} catch (RuntimeException e) {
  throw e;
origin: com.caucho/com.springsource.com.caucho

 BurlapOutput out = new BurlapOutput(os);
 _skeleton.invoke(in, out);
} catch (RuntimeException e) {
 throw e;
origin: org.vx68k.quercus/hessian

 BurlapOutput out = new BurlapOutput(os);
 _skeleton.invoke(in, out);
} catch (RuntimeException e) {
 throw e;
origin: com.bbossgroups/bboss-hession

  /**
   * Perform an invocation on the exported object.
   * @param inputStream the request stream
   * @param outputStream the response stream
   * @throws Throwable if invocation failed
   */
  public void invoke(InputStream inputStream, OutputStream outputStream) throws Throwable {
    Assert.notNull(this.skeleton, "Burlap exporter has not been initialized");
    
    try {
      this.skeleton.invoke(new BurlapInput(inputStream), new BurlapOutput(outputStream));
    }
    finally {
      try {
        inputStream.close();
      }
      catch (IOException ex) {
        // ignore
      }
      try {
        outputStream.close();
      }
      catch (IOException ex) {
        // ignore
      }
    
    }
  }
}
origin: apache/servicemix-bundles

/**
 * Perform an invocation on the exported object.
 * @param inputStream the request stream
 * @param outputStream the response stream
 * @throws Throwable if invocation failed
 */
public void invoke(InputStream inputStream, OutputStream outputStream) throws Throwable {
  Assert.notNull(this.skeleton, "Burlap exporter has not been initialized");
  ClassLoader originalClassLoader = overrideThreadContextClassLoader();
  try {
    this.skeleton.invoke(new BurlapInput(inputStream), new BurlapOutput(outputStream));
  }
  finally {
    try {
      inputStream.close();
    }
    catch (IOException ex) {
      // ignore
    }
    try {
      outputStream.close();
    }
    catch (IOException ex) {
      // ignore
    }
    resetThreadContextClassLoader(originalClassLoader);
  }
}
com.caucho.burlap.serverBurlapSkeletoninvoke

Javadoc

Invoke the object with the request from the input stream.

Popular methods of BurlapSkeleton

  • <init>
    Create a new burlap skeleton.
  • getAPIClassName
  • getHomeClassName
  • getMethod
  • getObjectClassName

Popular in Java

  • Updating database using SQL prepared statement
  • requestLocationUpdates (LocationManager)
  • getSupportFragmentManager (FragmentActivity)
  • setRequestProperty (URLConnection)
  • Font (java.awt)
    The Font class represents fonts, which are used to render text in a visible way. A font provides the
  • EOFException (java.io)
    Thrown when a program encounters the end of a file or stream during an input operation.
  • Deque (java.util)
    A linear collection that supports element insertion and removal at both ends. The name deque is shor
  • TreeMap (java.util)
    Walk the nodes of the tree left-to-right or right-to-left. Note that in descending iterations, next
  • ZipFile (java.util.zip)
    This class provides random read access to a zip file. You pay more to read the zip file's central di
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • 21 Best Atom Packages for 2021
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now