Here's a page from the manual that I have been sent.  This is what the server 
wants.  This is the sample they gave me.  What I would be doing have a few more 
fields in it, but not a lot more.

________________________________________________________________________________

To post messages and parse responses programmatically, a program must be 
written to post and parse response messages. 


Example 1:  The following section provides examples of a SOAP Request and 
Response involved in posting messages and obtaining the response message.  

Example: Request
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
  <soap:Body>
    <GetBankInformation xmlns="http://webservice.icheck.net/";>
      <objAuthentication>
        <UserName>UserName1</UserName>
        <Password>Password1</Password>
        <TransactionID>12455</TransactionID>
        <ClientID>112233</ClientID>
      </objAuthentication>
      <ABA>021200012</ABA>
    </GetBankInformation>
  </soap:Body>
</soap:Envelope>


Example: Response
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xmlns:xsd="http://www.w3.org/2001/XMLSchema";>
  <soap:Body>
    <GetBankInformationResponse xmlns="http://webservice.icheck.net/";>
      <GetBankInformationResult>
        <GeneralInformation>
          <Version>6.3.1.0</Version>
          <TransactionID>4564</TransactionID>
          <TimeStamp>1/30/2003 12:18:02 PM</TimeStamp>
        </GeneralInformation>
        <StatusInformation>
          <Status>true</Status>
        </StatusInformation>
        <ErrorInformation />
        <BankInformation>
          <ABA>021200012</ABA>
          <AbbrName>PNC BANK, NATIONAL ASSOCIATION</AbbrName>
          <Street>222 RIDGEWOOD AVE</Street>
          <City>GLEN RIDGE</City>
          <State>NJ</State>
          <PhoneNumber>9732252424</PhoneNumber>
          <LastUpdate>12:00:00 AM</LastUpdate>
        </BankInformation>
      </GetBankInformationResult>
    </GetBankInformationResponse>
  </soap:Body>
</soap:Envelope>



Thanks.

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Discover CFTicket - The leading ColdFusion Help Desk and Trouble 
Ticket application

http://www.houseoffusion.com/banners/view.cfm?bannerid=48

Message: http://www.houseoffusion.com/lists.cfm/link=i:4:206448
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to