|
|||||||||
| Home >> All >> samples >> [ echo overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
samples.echo
Class InteropTestSoapBindingImpl

java.lang.Objectsamples.echo.InteropTestSoapBindingImpl
- public class InteropTestSoapBindingImpl
- extends java.lang.Object
| Constructor Summary | |
InteropTestSoapBindingImpl()
|
|
| Method Summary | |
java.lang.String[][] |
echo2DStringArray(java.lang.String[][] input2DStringArray)
|
byte[] |
echoBase64(byte[] inputBase64)
|
boolean |
echoBoolean(boolean inputBoolean)
|
java.util.Calendar |
echoDate(java.util.Calendar inputDate)
|
java.math.BigDecimal |
echoDecimal(java.math.BigDecimal inputDecimal)
|
float |
echoFloat(float inputFloat)
|
float[] |
echoFloatArray(float[] inputFloatArray)
|
byte[] |
echoHexBinary(byte[] inputHexBinary)
|
int |
echoInteger(int inputInteger)
|
int[] |
echoIntegerArray(int[] inputIntegerArray)
|
java.util.HashMap |
echoMap(java.util.HashMap input)
This method accepts a Map and echoes it back to the client. |
java.util.HashMap[] |
echoMapArray(java.util.HashMap[] input)
This method accepts an array of Maps and echoes it back to the client. |
org.apache.axis.types.NegativeInteger |
echoNegativeInteger(org.apache.axis.types.NegativeInteger input)
This method accepts a NegativeInteger (xsd:negativeInteger) and echoes it back to the client. |
samples.echo.SOAPArrayStruct |
echoNestedArray(samples.echo.SOAPArrayStruct inputStruct)
|
samples.echo.SOAPStructStruct |
echoNestedStruct(samples.echo.SOAPStructStruct inputStruct)
|
org.apache.axis.types.NonNegativeInteger |
echoNonNegativeInteger(org.apache.axis.types.NonNegativeInteger input)
This method accepts a NonNegativeInteger (xsd:nonNegativeInteger) and echoes it back to the client. |
org.apache.axis.types.NonPositiveInteger |
echoNonPositiveInteger(org.apache.axis.types.NonPositiveInteger input)
This method accepts a NonPositiveInteger (xsd:nonPositiveInteger) and echoes it back to the client. |
org.apache.axis.types.NormalizedString |
echoNormalizedString(org.apache.axis.types.NormalizedString input)
This method accepts a NormalizedString (xsd:normalizedString) and echoes it back to the client. |
org.apache.axis.types.PositiveInteger |
echoPositiveInteger(org.apache.axis.types.PositiveInteger input)
This method accepts a PositiveInteger (xsd:positiveInteger) and echoes it back to the client. |
samples.echo.SOAPStruct |
echoSimpleTypesAsStruct(java.lang.String inputString,
int inputInteger,
float inputFloat)
|
java.lang.String |
echoString(java.lang.String inputString)
|
java.lang.String[] |
echoStringArray(java.lang.String[] inputStringArray)
|
samples.echo.SOAPStruct |
echoStruct(samples.echo.SOAPStruct inputStruct)
|
samples.echo.SOAPStruct[] |
echoStructArray(samples.echo.SOAPStruct[] inputStructArray)
|
void |
echoStructAsSimpleTypes(samples.echo.SOAPStruct inputStruct,
javax.xml.rpc.holders.StringHolder outputString,
javax.xml.rpc.holders.IntHolder outputInteger,
javax.xml.rpc.holders.FloatHolder outputFloat)
|
org.apache.axis.types.Token |
echoToken(org.apache.axis.types.Token input)
This method accepts a Token (xsd:token) and echoes it back to the client. |
org.apache.axis.types.UnsignedByte |
echoUnsignedByte(org.apache.axis.types.UnsignedByte input)
This method accepts a UnsignedByte (xsd:unsignedByte) and echoes it back to the client. |
org.apache.axis.types.UnsignedInt |
echoUnsignedInt(org.apache.axis.types.UnsignedInt input)
This method accepts a UnsignedInt (xsd:unsignedInt) and echoes it back to the client. |
org.apache.axis.types.UnsignedLong |
echoUnsignedLong(org.apache.axis.types.UnsignedLong input)
This method accepts a UnsignedLong (xsd:unsignedLong) and echoes it back to the client. |
org.apache.axis.types.UnsignedShort |
echoUnsignedShort(org.apache.axis.types.UnsignedShort input)
This method accepts a UnsignedShort (xsd:unsignedShort) and echoes it back to the client. |
void |
echoVoid()
|
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
InteropTestSoapBindingImpl
public InteropTestSoapBindingImpl()
| Method Detail |
echoString
public java.lang.String echoString(java.lang.String inputString) throws java.rmi.RemoteException
echoStringArray
public java.lang.String[] echoStringArray(java.lang.String[] inputStringArray) throws java.rmi.RemoteException
echoInteger
public int echoInteger(int inputInteger)
throws java.rmi.RemoteException
echoIntegerArray
public int[] echoIntegerArray(int[] inputIntegerArray)
throws java.rmi.RemoteException
echoFloat
public float echoFloat(float inputFloat)
throws java.rmi.RemoteException
echoFloatArray
public float[] echoFloatArray(float[] inputFloatArray)
throws java.rmi.RemoteException
echoStruct
public samples.echo.SOAPStruct echoStruct(samples.echo.SOAPStruct inputStruct)
throws java.rmi.RemoteException
echoStructArray
public samples.echo.SOAPStruct[] echoStructArray(samples.echo.SOAPStruct[] inputStructArray)
throws java.rmi.RemoteException
echoVoid
public void echoVoid()
throws java.rmi.RemoteException
echoBase64
public byte[] echoBase64(byte[] inputBase64)
throws java.rmi.RemoteException
echoDate
public java.util.Calendar echoDate(java.util.Calendar inputDate) throws java.rmi.RemoteException
echoHexBinary
public byte[] echoHexBinary(byte[] inputHexBinary)
throws java.rmi.RemoteException
echoDecimal
public java.math.BigDecimal echoDecimal(java.math.BigDecimal inputDecimal) throws java.rmi.RemoteException
echoBoolean
public boolean echoBoolean(boolean inputBoolean)
throws java.rmi.RemoteException
echoStructAsSimpleTypes
public void echoStructAsSimpleTypes(samples.echo.SOAPStruct inputStruct,
javax.xml.rpc.holders.StringHolder outputString,
javax.xml.rpc.holders.IntHolder outputInteger,
javax.xml.rpc.holders.FloatHolder outputFloat)
throws java.rmi.RemoteException
echoSimpleTypesAsStruct
public samples.echo.SOAPStruct echoSimpleTypesAsStruct(java.lang.String inputString, int inputInteger, float inputFloat) throws java.rmi.RemoteException
echo2DStringArray
public java.lang.String[][] echo2DStringArray(java.lang.String[][] input2DStringArray) throws java.rmi.RemoteException
echoNestedStruct
public samples.echo.SOAPStructStruct echoNestedStruct(samples.echo.SOAPStructStruct inputStruct)
throws java.rmi.RemoteException
echoNestedArray
public samples.echo.SOAPArrayStruct echoNestedArray(samples.echo.SOAPArrayStruct inputStruct)
throws java.rmi.RemoteException
echoMap
public java.util.HashMap echoMap(java.util.HashMap input)
- This method accepts a Map and echoes it back to the client.
echoMapArray
public java.util.HashMap[] echoMapArray(java.util.HashMap[] input)
- This method accepts an array of Maps and echoes it back to the client.
echoToken
public org.apache.axis.types.Token echoToken(org.apache.axis.types.Token input) throws java.rmi.RemoteException
- This method accepts a Token (xsd:token) and echoes it back to the client.
echoNormalizedString
public org.apache.axis.types.NormalizedString echoNormalizedString(org.apache.axis.types.NormalizedString input) throws java.rmi.RemoteException
- This method accepts a NormalizedString (xsd:normalizedString) and echoes
it back to the client.
echoUnsignedLong
public org.apache.axis.types.UnsignedLong echoUnsignedLong(org.apache.axis.types.UnsignedLong input) throws java.rmi.RemoteException
- This method accepts a UnsignedLong (xsd:unsignedLong) and echoes
it back to the client.
echoUnsignedInt
public org.apache.axis.types.UnsignedInt echoUnsignedInt(org.apache.axis.types.UnsignedInt input) throws java.rmi.RemoteException
- This method accepts a UnsignedInt (xsd:unsignedInt) and echoes
it back to the client.
echoUnsignedShort
public org.apache.axis.types.UnsignedShort echoUnsignedShort(org.apache.axis.types.UnsignedShort input) throws java.rmi.RemoteException
- This method accepts a UnsignedShort (xsd:unsignedShort) and echoes
it back to the client.
echoUnsignedByte
public org.apache.axis.types.UnsignedByte echoUnsignedByte(org.apache.axis.types.UnsignedByte input) throws java.rmi.RemoteException
- This method accepts a UnsignedByte (xsd:unsignedByte) and echoes
it back to the client.
echoNonNegativeInteger
public org.apache.axis.types.NonNegativeInteger echoNonNegativeInteger(org.apache.axis.types.NonNegativeInteger input) throws java.rmi.RemoteException
- This method accepts a NonNegativeInteger (xsd:nonNegativeInteger) and echoes
it back to the client.
echoPositiveInteger
public org.apache.axis.types.PositiveInteger echoPositiveInteger(org.apache.axis.types.PositiveInteger input) throws java.rmi.RemoteException
- This method accepts a PositiveInteger (xsd:positiveInteger) and echoes
it back to the client.
echoNonPositiveInteger
public org.apache.axis.types.NonPositiveInteger echoNonPositiveInteger(org.apache.axis.types.NonPositiveInteger input) throws java.rmi.RemoteException
- This method accepts a NonPositiveInteger (xsd:nonPositiveInteger) and echoes
it back to the client.
echoNegativeInteger
public org.apache.axis.types.NegativeInteger echoNegativeInteger(org.apache.axis.types.NegativeInteger input) throws java.rmi.RemoteException
- This method accepts a NegativeInteger (xsd:negativeInteger) and echoes
it back to the client.
|
|||||||||
| Home >> All >> samples >> [ echo overview ] | PREV CLASS NEXT CLASS | ||||||||
SUMMARY: JAVADOC | SOURCE | DOWNLOAD | NESTED | FIELD | CONSTR | METHOD |
DETAIL: FIELD | CONSTR | METHOD | ||||||||
JAVADOC
samples.echo.InteropTestSoapBindingImpl