开发者

Bulk Addition SOAP/XML

开发者 https://www.devze.com 2023-02-02 00:30 出处:网络
I have a SOAP/XML script that adds EmployeeIDs in a db as below. <soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:sach=\"http://www.abc.com/SACHEmployeeProvision

I have a SOAP/XML script that adds EmployeeIDs in a db as below.

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:sach="http://www.abc.com/SACHEmployeeProvision/">
   <soapenv:Header/>
   <soapenv:Body>
      <sach:EmployeeInfo EMPLOYEEID="123727396907">
<AttributeList Name = "EMPLOYEE" Value = "OHIO-123727396907"/>              
         <AttributeList Name = "NAME_GIVEN" Value = "abc"/>
         <AttributeList Name = "NAME_FAMILY" Value = "xyz"/>
         <AttributeList Name = "GENDER" Value = "F"/>
         <开发者_Python百科;AttributeList Name = "LANGUAGE" Value = "E"/>
         <AttributeList Name = "STATUS" Value = "ACTIVE"/>
         </sach:EmployeeInfo>
   </soapenv:Body>
</soapenv:Envelope>>

I currently use SOAPUI to add EMPLOYEEID one at a time. How do I do this in bulk? Perhaps using perl or java.

Thanks.


For Java, you can use a JAX-WS client.

For Perl consider SOAP::Lite.

Your answer doesn't specify whether you want to add a different employee ID for each employee and where you are getting that data, but given the tools to interface with SOAP in your chosen language you should be able to get started and ask further questions here as needed.

0

精彩评论

暂无评论...
验证码 换一张
取 消