Avatar

Level 1
Chris,



Thanks. That is what I *was* doing, that got me all data
returned. The parameter never gets passed in the XML. It acts as if
a blank was passed and returns everything (just as you would expect
in the PeopleSoft search page when you just click Find without
specifying a key). It is expecting a partial key and will return
all keys that match (find method).



PS expects the key DL_CS_COMPID, and in Flex I've seen
Find__CompIntfc__DL_TREE_IB_CI also. So I've tried:

<mx:request>

<!-- <DL_CS_COMPID> -->

<Find__CompIntfc__DL_TREE_IB_CI>

{compID.text}

</Find__CompIntfc__DL_TREE_IB_CI>

<!-- </DL_CS_COMPID> -->

</mx:request>



(You can see I currently have dl_cs_compid commented out).
Both behave identically - they are ignored in the XML that is sent
from Flex. Here is a sample of what was received in PS:



<?xml version="1.0"?>

<M540564.V1:Find__CompIntfc__DL_TREE_IB_CI
xmlns:M540564.V1="
http://xmlns.oracle.com/Enterprise/Tools/schemas/M540564.V1"
xmlns:SOAP-ENV="
http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="
http://www.w3.org/2001/XMLSchema"
xmlns:xsi="
http://www.w3.org/2001/XMLSchema-instance"/>



I believe there should be a
<DL_CS_COMPID>value</DL_CS_COMPID> string in there.