NumberFormatException when passing null value to Decimals
Has anyone had problems passing null values to decimal elements?
I have a PL/SQL procedure that I have exposed as a web service using JDeveloper 10.1.3.3.
I also have a BPEL processes invoking the PLSQL web service. Three of the input elements are decimals, the rest are strings. Testing from the BPEL Console, the BPEL process only works when you pass values for all decimal elements. If you leave any one of the three decimals blank, the BPEL processes times out and the error is:
<Faulthttp://schemas.xmlsoap.org/soap/envelope/>
<faultcode>env:Server</faultcode>
<faultstring>com.oracle.bpel.client.delivery.ReceiveTimeOutException: Waiting for response has timed out. The conversation id is 8fae436740305e63:5cb89ea8:115d720cb63:-7700. Please check the process instance for detail.</faultstring>
</Fault>
The remoteFault summary part shows:
[java.lang.NumberFormatException]
Any ideas??