Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
1answer
177 views

jaxb and xlink - friends or foes?

i want to build a rest service via cxf. this is already done with only two objects "Earthpart" and "Earthquake". when i call localhost/earthpars i get a xml list of the earthparts with the ...
3
votes
1answer
189 views

How can I get the value of an attribute called xlink:href of an xml node by using php

i just cant do it, dont kno whey. How can I get the value of an attribute called xlink:href of an xml node by using php. Please please someone just give me a nudge. i am new to php This is the XML ...
2
votes
1answer
65 views

Create an hyperlink from SVG to a block in XSL-FO / PDF

Hope somebody can help me, I'm stuck. I am creating a set of SVG's and HTML files from an XML doc (via XSLT2), and I have hyperlinks in my SVG graphics (with xlink:href) to the HTML files. Basically, ...
2
votes
2answers
1k views

.NET library for use with XBRL or XLINK

Does anyone know of a good .NET library I can use to process XBRL or XLINK documents?
1
vote
1answer
86 views

How to force JAXB marshaller to use xlink references?

I use JAXB marshaller to store some java objects as XML files. Some of these objects reference each other, so I unsurprisingly obtain this error: [com.sun.istack.internal.SAXException2: A cycle is ...
1
vote
2answers
79 views

Ampersands (&) in xlink:href attributes of SVG images?

I'm building an SVG document which contains various image tags. The xlink:href (source URL) attributes for the images contain query strings with ampersands. If I escape them as %26 or the ascii ...
1
vote
3answers
113 views

XML: How to load the contents of one xml file into another

I would just like to be able to dynamically write the contents of an xml file from another xml file. A.XML contains: <?xml version="1.0"?> <node> -Include Contents of b.xml </node> ...
1
vote
6answers
217 views

XML: How to read one file into another

I have a file: A.xml containing something like this: <?xml version="1.0"?> <headernode> </headernode> Inside of the headernode i need to be able to dynamically load the contents ...
1
vote
2answers
607 views

Cannot open a local file using fopen()

HI. i am trying to open a local file from xml created by xlink i have parsed the file path in $resourceRef variable and it looks like that file:/./birds/birds.txt without the quotes. Please someone ...
1
vote
1answer
339 views

Custom content types: XLink vs. Atom

I'm trying to design a RESTful interface for a filesystem-like web service. To provide hyperlinkability among the various resources (files, directories, etc.), I thought I would use XLink. However, ...
1
vote
1answer
206 views

How to link from SVG?

What I tried is this <a xlink:target="http://ponyoverflow.com"> <text class="text" x="20" y="718" text-anchor="start">Mail Order Ponies</text> </a> and variations with ...
0
votes
1answer
12 views

XML and X-Link usage

I just have a simple question, let's say I have a read only XML file, and I want to create links or make link for elements in the file, how will that be possible?
0
votes
1answer
61 views

XLink & XPointer in real world app

Do you know some real examples of implementation and real use of extended XLink and XPointer? Does extended XLink or XPointer have some data model - can it be somehow a part of the DOM? Are there ...
0
votes
1answer
89 views

svg: Open (a xlink:href) another svg image in current frame - cross browser nightmare?

I have been bashing my head against this problem for awhile now and I was hoping for some help/advice. I have an svg graphic which I have embedded into an iframe (icky I know, but we have created our ...
0
votes
0answers
94 views

Embedding xlink:href into response of WCF Restful service using .NET 4.0

I'm using the WCF REST Service Application project in .NET 4.0 and VS 2010. I've created a RESTful web service, but I want to embed a link from one record to another, like the specification in this: ...
0
votes
0answers
55 views

make xlink xml document self-contained

I have a xml document that uses xlink to refer to centralized information in a separate document. <gmd:distributorContact xlink:actuate="onRequest" xlink:href="../ResponsibleParties.ISO.xml#MYORG" ...
0
votes
2answers
289 views

How can I link JavaScript to SVG?

I have a project that works with SVG and JS. Nowadays the SVG is responsible for calling the JS. In the middle of the SVG code there is an instruction like that: planta30263.svg <?xml ...
0
votes
1answer
381 views

ASP.net Creating an XLink node in and XDocument

I am trying to programmatically add a new XLink node to an XDocument but .Net seems to be creating them as atomized namespaces and names and I can't find any code to add XLink nodes to XML? My code ...
0
votes
1answer
241 views

Using XLink to refer to nodes within same document

The general gist of a simple XLink to another node in the same document seems to be: <root xmlns:xlink="http://www.w3.org/1999/xlink"> <firstChild id="ID1" /> ... <ref ...