Advertisement
Guest User

Untitled

a guest
Oct 18th, 2016
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.22 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <target name="abc">
  3. <appconfig singleNodeName="node value" environmentName="name value" />
  4. <adminServer URL="URL value" username="username value" password="password value"/>
  5. </target>
  6.  
  7. <?xml version="1.0" encoding="UTF-8"?>
  8. <Environments>
  9. <Environment>
  10. <Location>Local 1</Location>
  11. <Name>Environment 1</Name>
  12. <Node>Node 1</Node>
  13. <URL>some URL 1</URL>
  14. <UserName>user 1</UserName>
  15. <Password>password 1</Password>
  16. </Environment>
  17. <Environment>
  18. <Location>Local 2</Location>
  19. <Name>BPMEnv01</Name>
  20. <Node>BPMNode01</Node>
  21. <URL>some URL 2</URL>
  22. <UserName>user 2</UserName>
  23. <Password>password 2</Password>
  24. </Environment>
  25. </Environments>
  26.  
  27. <?xml version="1.0" encoding="UTF-8"?>
  28. <target name="abc">
  29. <xyz>
  30. <appconfig singleNodeName="node 1" environmentName="Environment 1" />
  31. <adminServer URL="URL 1" username="user 1" password="password 1"/>
  32. </xyz>
  33. <xyz>
  34. <appconfig singleNodeName="node 2" environmentName="Environment 2" />
  35. <adminServer URL="URL 2" username="user 2" password="password 2"/>
  36. </xyz>
  37. </target>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement