Tabnine Logo
AxisBinding.getFault
Code IndexAdd Tabnine to your IDE (free)

How to use
getFault
method
in
org.apache.axis2.description.AxisBinding

Best Java code snippets using org.apache.axis2.description.AxisBinding.getFault (Showing top 1 results out of 315)

origin: apache/axis2-java

protected Object getBindingPropertyFromMessageFault(String name, QName qName, String key) {
  Object property = null;
  // Get the correct AxisBindingOperation coresponding to the AxisOperation
  AxisBindingOperation axisBindingOperation =
      (AxisBindingOperation) axisBinding.getChild(qName);
  AxisBindingMessage axisBindingMessageFault = null;
  AxisBindingMessage axisBindingFault = null;
  if (axisBindingOperation != null) {
    axisBindingMessageFault = (AxisBindingMessage) axisBindingOperation.getFault(key);
    if (axisBindingMessageFault != null) {
      property = axisBindingMessageFault.getProperty(name);
    }
    if (property == null) {
      axisBindingFault = axisBinding.getFault(key);
      property = axisBindingFault.getProperty(name);
    }
  }
  if (property == null) {
    property = WSDL20DefaultValueHolder.getDefaultValue(name);
  }
  return property;
}
org.apache.axis2.descriptionAxisBindinggetFault

Popular methods of AxisBinding

  • getName
  • getChild
  • getProperty
  • getPolicySubject
  • <init>
  • addChild
  • getChildren
  • getType
  • setName
  • setProperty
  • setType
  • addFault
  • setType,
  • addFault,
  • getAxisEndpoint,
  • getEffectivePolicy,
  • getParameterValue,
  • setParent,
  • toWSDL20

Popular in Java

  • Creating JSON documents from java classes using gson
  • startActivity (Activity)
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • addToBackStack (FragmentTransaction)
  • Point (java.awt)
    A point representing a location in (x,y) coordinate space, specified in integer precision.
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • DataSource (javax.sql)
    An interface for the creation of Connection objects which represent a connection to a database. This
  • JCheckBox (javax.swing)
  • Location (org.springframework.beans.factory.parsing)
    Class that models an arbitrary location in a Resource.Typically used to track the location of proble
  • Top Sublime Text plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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