PeopleTools and Lifecycle Management - PSFT (MOSC)

MOSC Banner

consuming webservice error

edited Aug 30, 2012 3:53PM in PeopleTools and Lifecycle Management - PSFT (MOSC) 5 commentsAnswered
Here is my code IN AE,
try
   Local string &payload, &responseStr;
   Local SOAPDoc &soapReq, &soapRes;
   Local XmlDoc &request, &response;
   
 
   &soapReq = CreateSOAPDoc();
   
   &soapReq.AddMethod("GETDAYATTENDANCE", 1);
   &soapReq.AddParm("strID", "mengxz");
  
   
   &result = &soapReq.ValidateSOAPDoc();
   If &result = 0 Then
      
      Warning &soapReq.GenXmlString();
      &request = &soapReq.XmlDoc;
      &response = SyncRequestXmlDoc(&request, Message.GETDAYATTENDANCEREQUEST, Node.PSFT_HR);
      
      &soapRes = CreateSOAPDoc();
      &soapRes.XmlDoc = &response;
      &OK = &soapRes.ValidateSOAPDoc();
      
      
      If All(&OK) Then
         &strXml = &soapRes.GenXmlString();
         
         MessageBox(0, "", 0, 0, &strXml);
      Else
         MessageBox(0, "", 0, 0, "Error. No reply");
      End-If;
      
   End-If;
   
   
catch Exception &xException;
   Warning "error" | &xException.DefaultText;
end-try;


THE PROCESS ENDS WITH MESSAGE. THE MESSAGE SAYS ' UNABLE TO GET OPERATION DEFINITION FOR %1'

IF I CHANGE THE CODE TO

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center