If I have systems that are based on realtime data, how can I ensure that all the information that is current is redundantly stored in a file? So that when the program starts again, it uses this information to initialize itself back to where it was when it closed.
I know of xstream and HSQLDB. but wasn't sure if this was the best option ...
I want to get the generate-id(.) of all the text nodes after node <m/> and before node </n>. I am looking for some generic XSL and not tightly coupled to the sample input pattern mentioned below. For any input pattern i want to get the ids of all the text nodes between node <m/> and <n/>.
Sample input for better understanding:
<a>
<b...
I have a .Net webserivce that accepts XML in string format. XML String sent into the webserivce can represent any Object in the system. I need to check the first node to figure out what object to deserialize the XML string. For this I will have to load the XML into an XMLDocument (Don't want to use RegEx or string compare). I am wonderin...
Hi everyone ,
i want to acces an Element of an XML. But somehow. i get null as the Result and that does not make any sense to me.
Can you find the mistake ?
...
Hi,
My question is about defining an XML schema that will validate the following sample XML:
<rules>
<other>...</other>
<bool>...</bool>
<other>...</other>
<string>...</string>
<other>...</other>
</rules>
The order of the child nodes does not matter. The cardinality of the child nodes is 0..unbounded.
All the chi...
How do I declare an Android UI element using XML?
...
i'm trying to use ghostdoc with vwd express 2008.
I know that vwd express doesn't support add in but i can't help asking if there's still a way to get it working?
or is there a ghostdoc equivalent for vwd express?
...
I'm fairly new to Eclipse so if this is something simple I apologize, however when I attempt to add an external JAR file to my build path (specifically the "rt.jar" file which contains certain tools that I require) and then rebuild my project, Eclipse will hang at the end of the Build process. It'll get to 100% then just hang there usin...
I am creating an xml file on the fly. When a user generates this file I want it to open up a download file dialog with the content that was generated. There is no actual file because it is just generated through php. Any ideas on how to do this?
...
Hi,
Our state government has opened its transport timetable data. The data is in xml based TransXchange standard format.
The problem is the data files are huge. The sample data file itself is 300 MB.
The good thing is most of the data is redundant and I don't need it for my application. I am wondering what options do I have of insert...
I am trying to make the transition from using call-template to using applay templates and match but i'm not getting any data displayed only what is between the volunteer tags.
When i use call template it works fine but it was suggested that i use applay-templates and match and not it doesn't work
Any ideas how to make this work? I can ...
Hello. I've used code below to send XML to my REST API. $xml_string_data contains proper XML, and it is passed well to mypi.php:
//set POST variables
$url = 'http://www.server.cu/mypi.php';
$fields = array(
'data'=>urlencode($xml_string_data)
);
//url-ify the data for the POST
$fields_st...
Our application uses a XML configuation file. I thought that it would be nice to distribute some XML editor with our application, so that the user can conveniently edit the config file. Features should be:
Small and lightweight (ideally, a small .exe that does not require installation),
free, with license terms that permit distributing...
Hi everybody!
Currently, we use programming registration of WCF proxies in Windsor container using WCF Integration Facility. For example:
container.Register(
Component.For<CalculatorSoap>()
.Named("calculatorSoap")
.LifeStyle.Transient
.ActAs(new DefaultClientModel
{
Endpoint = WcfEndpoint.FromConfig...
I want to print only unique values from a dataset into the list component, avoiding duplicate values.
How do I do it ?
Please help.
...
I'm trying to get xsl to drop a value into a text box via the html ... something like
Name : <input id="Name" type="text" value=<xsl:value-of select="something"/> />
but that doesn't work (didn't expect it to) -- is there a way to make this work?
...
I have a code like
res = doc.evalute(xpathExpr,doc,
function(prefix) {return namespaces[prefix] || null;},
XPathResult.ANY_TYPE,null );
Here doc is DOM document node
When i run for loop like this
for(i in doc) alert(i);
it gives evaluate method
but when i tried to use this method on dom node ...
I cannot find the answer for this question.
I read that doubling the bracket should help so something like
<node>http://test.com?test={{0}}</node>
But it didn't
...
I have a schema from a third party that I've generated c# objects from using Xsd2Code (other options like xsd.exe, xmlspy etc either crashed or spewed 40mb of code that required their library to work)
Anyway, here's an example of a problem element from the schema:
<xsd:schema xmlns:ns1="something" xmlns:ns2="somethinelse" targetNamesp...
I'm trying to send a string of XML as part of the query string. Normally I'd POST this XML but I'm sending it to a 3rd party system that I can't POST stuff to.
So, as it goes, I need the 3rd party system to request the services of one of the pages in my system. (explanation: the 3rd party system produces PDFs of my web pages. I give it...