in src/wsdl/org/apache/axis/wsdl/wsdl2ws/cpp/ServiceWriter.java [111:281]
protected void writeMethods() throws WrapperFault
{
MethodInfo minfo;
try
{
c_writer.write(
"\n/* This function is called by the AxisEngine when something went wrong"
+ "\n with the current web service request processing. Appropriate actions should"
+ "\n be taken here.*/");
c_writer.write("\nvoid " + c_classname + "::\nonFault()\n{\n}");
/*writer.write(
"\n/* This function is called by the AxisEngine when this web service"
+ "\n library is first loaded. So here we can initialize any global/static"
+ "\n data structures of this web service or open database connections *//*");
writer.write("\nvoid " + classname + "::\ninit()\n{\n}");
writer.write(
"\n/* This function is called by the AxisEngine when this web service"
+ "\n library is unloaded. So we can deallocate any global/static data structures"
+ "\n and close database connections etc here. *//*");
writer.write("\nvoid " + classname + "::\nfini()\n{\n}");*/
c_writer.write("\n\n");
for (int i = 0; i < methods.size(); i++)
{
minfo = (MethodInfo) this.methods.get(i);
boolean isAllTreatedAsOutParams = false;
ParameterInfo returntype = null;
int noOfOutParams = minfo.getOutputParameterTypes().size();
if (0 == noOfOutParams)
{
returntype = null;
c_writer.write("void ");
}
else
{
if (1 == noOfOutParams)
{
returntype =
(ParameterInfo) minfo
.getOutputParameterTypes()
.iterator()
.next();
String returnTypeName = returntype.getLangName();
String returnType = CUtils.getClassNameFromParamInfoConsideringArrays(returntype,wscontext);
if ((CUtils.isArrayType(returnType))
|| (CUtils.isSimpleType(returntype.getLangName())
&& (returntype.isNillable()|| returntype.isOptional())
&& !(CUtils.isPointerType(returnTypeName))))
{
c_writer.write(
returnType
+ " * ");
}
else
{
c_writer.write(
returnType
+ " ");
}
}
else
{
isAllTreatedAsOutParams = true;
c_writer.write("void ");
}
}
c_writer.write(c_classname + "::\n" + minfo.getSanitizedMethodName() + "(");
//write parameter names
boolean hasInputParms = false;
Iterator params = minfo.getInputParameterTypes().iterator();
if (params.hasNext())
{
hasInputParms = true;
ParameterInfo fparam = (ParameterInfo) params.next();
String fparamTypeName = fparam.getLangName();
String fparamType = CUtils.getClassNameFromParamInfoConsideringArrays(fparam,wscontext);
if (fparam.getType().isAttachment())
{
c_writer.write("ISoapAttachment *Value" + 0);
}
else if ((CUtils.isArrayType(fparamType))
|| (CUtils.isSimpleType(fparamTypeName)
&& (fparam.isNillable()|| fparam.isOptional())
&& !(CUtils.isPointerType(fparamTypeName))))
{
c_writer.write(
fparamType
+ " * Value"
+ 0);
}
else
{
c_writer.write(
fparamType
+ " Value"
+ 0);
}
}
for (int j = 1; params.hasNext(); j++)
{
ParameterInfo nparam = (ParameterInfo) params.next();
String paramTypeName = nparam.getLangName();
String paramType = CUtils.getClassNameFromParamInfoConsideringArrays(nparam,wscontext);
if (nparam.getType().isAttachment())
{
c_writer.write(", ISoapAttachment *Value" + j);
}
else if ((CUtils.isArrayType(paramType))
|| (CUtils.isSimpleType(paramTypeName)
&& (nparam.isNillable()|| nparam.isOptional())
&& !(CUtils.isPointerType(paramTypeName))))
{
c_writer.write(
","
+ paramType
+ " * Value"
+ j);
}
else
{
c_writer.write(
","
+ paramType
+ " Value"
+ j);
}
}
if (isAllTreatedAsOutParams)
{
params = minfo.getOutputParameterTypes().iterator();
for (int j = 0; params.hasNext(); j++)
{
ParameterInfo nparam = (ParameterInfo) params.next();
if (0 != j || hasInputParms)
{
c_writer.write(",");
}
String typeName = CUtils.getClassNameFromParamInfoConsideringArrays(
nparam, wscontext);
c_writer.write(" AXIS_OUT_PARAM "
+ typeName + " ");
if (( nparam.isOptional() || nparam.isNillable() )
&& CUtils.isSimpleType(typeName)
&& !CUtils.isPointerType(typeName)
&& !nparam.isArray())
{
c_writer.write("*");
}
c_writer.write("* OutValue" + j);
}
}
c_writer.write(") \n{\n}\n\n");
}
}
catch (Exception e)
{
throw new WrapperFault(e);
}
}