here is Netbeans generated service code for the "create" method:

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for create complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained
within this class.
 * 
 * <pre>
 * &lt;complexType name="create">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType";>
 *       &lt;sequence>
 *         &lt;element name="arg0"
type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         &lt;element name="arg1"
type="{http://www.w3.org/2001/XMLSchema}string"; minOccurs="0"/>
 *         &lt;element name="arg2"
type="{http://www.w3.org/2001/XMLSchema}base64Binary"; minOccurs="0"/>
 *         &lt;element name="arg3"
type="{http://www.w3.org/2001/XMLSchema}string"; minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "create", propOrder = {
    "arg0",
    "arg1",
    "arg2",
    "arg3"
})
public class Create {

    protected int arg0;
    protected String arg1;
    protected byte[] arg2;
    protected String arg3;

    /**
     * Gets the value of the arg0 property.
     * 
     */
    public int getArg0() {
        return arg0;
    }

    /**
     * Sets the value of the arg0 property.
     * 
     */
    public void setArg0(int value) {
        this.arg0 = value;
    }

    /**
     * Gets the value of the arg1 property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getArg1() {
        return arg1;
    }

    /**
     * Sets the value of the arg1 property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setArg1(String value) {
        this.arg1 = value;
    }

    /**
     * Gets the value of the arg2 property.
     * 
     * @return
     *     possible object is
     *     byte[]
     */
    public byte[] getArg2() {
        return arg2;
    }

    /**
     * Sets the value of the arg2 property.
     * 
     * @param value
     *     allowed object is
     *     byte[]
     */
    public void setArg2(byte[] value) {
        this.arg2 = value;
    }

    /**
     * Gets the value of the arg3 property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getArg3() {
        return arg3;
    }

    /**
     * Sets the value of the arg3 property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setArg3(String value) {
        this.arg3 = value;
    }

}




--
View this message in context: 
http://cxf.547215.n5.nabble.com/java-lang-IllegalArgumentException-argument-type-mismatch-tp5712055p5712057.html
Sent from the cxf-user mailing list archive at Nabble.com.

Reply via email to