Simon Nash wrote:
Nishant Joshi wrote:
Hi Simon,
ParamBean.java
------------
package com.my.core.soa.services.pojo;
import java.io.Serializable;
public class ParamBean implements Serializable{
private static final long serialVersionUID = 1L;
String param;
String value;
public String getParam() {
return param;
}
public void setParam(String param) {
this.param = param;
}
public String getValue() {
return value;
}
public void setValue(String value) {
this.value= value;
}
}
MyServices.java
-------------------------
package com.my.core.soa.services;
import org.osoa.sca.annotations.Remotable;
import com.my.core.soa.services.pojo.ParamBean;
@Remotable
public interface MyServices {
public Long ProcessTask(ParamBean paramBean[]);
}
Please let me know if i can provide more input.
WAR deployed in Weblogic9.2
Thanks,
Nishant
>
Hi Nishant,
I tried these files using the latest 1.x trunk and also using 1.5.
In both cases the correct WSDL was generated.
Can you also post the implementation class and the composite file?
There might be some clues there.
Simon
Another possibility is that the WAR file might contain an XSD or
WSDL file with the incorrect schema definition for paramBean.
Simon