我想在SOAP Web服务中创建一个将字符串数组作为参数并返回字符串数组的方法。
public String[] modifyStrings(String[] inputParams){
// loop trhough and modify each string
// return modified string array
}
I don't have much experience with xml and xsd schema's and I'm having a little trouble with the syntax / formatiing
Using the exaple project here as a base https://howtodoinjava.com/spring-boot/spring-boot-soap-webservice-example/
我正在尝试添加自己的自定义方法,该方法将String数组作为参数并返回String数组
我的问题是如何为xsd文件中的字符串数组参数定义复杂类型,请求和响应?
根据上面给出的示例项目,student.xsd的外观如何? 我猜测我需要定义第二个xsd来声明stringArray并将其导入到student.xsd中?还是如果它们都有不同的目标名称空间,有什么方法可以将它们组合到一个单独的xsd文件中?