Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need my SOAP XML script to read variable from a csv file, line by line and send request to end-point for each variable.In the case below, values for "tel" are in a file called "telnumbers.txt".

<soapenv:Header/>
   <soapenv:Body>
      <usa:companyID>
         <employeeID>accounts</employeeID>
         <tel>1412341745</tel>
         <!--Zero or more repetitions:-->
         <OptionalAttributes>
            <Name>?</Name>
            <Value>?</Value>
         </OptionalAttributes>
      </usa:companyID>
   </soapenv:Body>
</soapenv:Envelope>
share|improve this question
the question is not clear! do you want us to write code for your homework? – brainless Sep 26 '10 at 8:33
Can you elaborate on SOAP XML script? – KMån Sep 26 '10 at 8:35
If you post code or XML, please highlight those lines in the text editor and click on the "code" button (101 010) on the editor toolbar to nicely format and syntax highlight it! – marc_s Sep 26 '10 at 9:40

closed as not a real question by Quentin, marc_s, Georg Fritzsche, bmargulies, Michael Petrotta Sep 28 '10 at 0:57

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

Browse other questions tagged or ask your own question.