problems with xsd:anyType
581123Jun 22 2007 — edited Jun 22 2007Hello !
There is a problem with the type xsd:anyType.
I use a bpel process, inside this process I invoke a web service, implemented with RPC/encoded. The request messages to the web services need the attribute xsi:type="...".
The Oracle Process Manager write this attribute to the specific element, with the type xsd:anyType. For examble <task xsi:type="xsd:anyType">value</task> -> that is the problem. The web services is deployed on a axis engine.
Is it possible to change the type information manuall ? When I create the message manuall like <from> <task xsi:type="xsd:string">value</task></from> ?
xsi:type="xsd:anyType" wrong
xsi:type="xsd:string" right
Is the type anyType in the message, axis can not found this type to deserialize !
It must be a other type, like xsd:string, but I can't take it to the message. Oracle invoke a failure, like type failure.
Can I help me, anybody ?