Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
79 views

xmltasks not working

I have the following task and for some reason is not matching my file: <xmltask source="nbproject/project.xml" dest="nbproject/project.xml"> <replace ...
0
votes
1answer
32 views

Copy one value over to another with xmltask

Is it possible for an xml task to copy the value of one node into another node for each element in a list? Source XML: <a> <b> <c1>foo</c1> <c2></c2> ...
0
votes
1answer
24 views

find a value of a sibling node in xml file with ant xmltask

I have the following xml block (a standard jboss web.xml file) : <web-app> <servlet> <init-param> <param-name>checkInterval</param-name> ...
0
votes
2answers
130 views

MSBuild: changing project references to file binary references

I have a few .net / C# projects that I'm building with MSBuild. In the project I'm building, there are some project references to other C# projects. I'm only building individual projects, so I'd ...
0
votes
1answer
560 views

How to extend an XML File using ant xmltask by copying tags from a source-file to the dest-file in specific positions

Im trying to create a special web.xml for local development. I have some tags stored in a separate xml-file which need to be selected and pasted to specific positions inside the final web.xml. To ...
0
votes
3answers
311 views

Has Sun deprecated Java DTD URL's?

We use the xmltask ANT task for conditional logic (ie: if statements) in our ANT scripts. Currently this task is bombing, apparently because can't reach "http://java.sun.com/dtd/application_1_3.dtd". ...