Skip to main content
Filter by
Sorted by
Tagged with
2 votes
2 answers
79 views

I am trying to identify only reports with a hyperlink to another report. I am using SQL Server 2019 (150). My SQL: SELECT C.ItemID, C.Name AS ReportName, C.Path AS ReportPath, CONVERT(...
John S's user avatar
  • 29
1 vote
3 answers
176 views

I have a table of answers from a submission form that I need to convert to an XML file and upload to a website. Each row is one answer from one submissions and the answers need to be stored as the ...
sushi's user avatar
  • 332
4 votes
1 answer
126 views

I get the following error, while trying to validate XML using a schema: lxml.etree.XMLSchemaParseError: Element '{http://www.w3.org/2001/XMLSchema}attributeGroup', attribute 'ref': The QName value '{...
Bogdan Prădatu's user avatar
0 votes
0 answers
64 views

I am trying to export the Voucher Register report from Tally in a columnar format using XML requests. My goal is to automate this process so that the exported output matches the way it appears when ...
AlainZer01's user avatar
0 votes
0 answers
61 views

I am learning to program Android applications and features. My current project is a simple and basic keyboard with the following features: Cannot go uppercase -- so no shift button Cannot change ...
Martin Sieburg's user avatar
0 votes
1 answer
86 views

I have a piece of code where I am opening an XML file from VB NET console app, than I Save As this file as XLSX file Dim oxl As Excel.Application Dim owbs As Excel.Workbooks Dim owb As Excel.Workbook ...
Petr Šmejkal's user avatar
0 votes
0 answers
53 views

I have been searched since over a week for the fail I seems to have done. I simply want to read in a testing XML-File as follows: <?xml version="1.0" encoding="utf-8"?> <...
ABurk85NG's user avatar
1 vote
0 answers
79 views

I’m making an application where I’m converting a .xml to a .ui file (qtdesigner), and rendering that using pyqt. However, there is some data in the .xml that I do not want to render (e.g. as metadata);...
GYA007's user avatar
  • 43
1 vote
0 answers
42 views

The W3C Atom docs contain this paragraph: If type="html", then this element contains entity escaped html. <title type="html"> AT&amp;amp;T bought &amp;lt;b&amp;...
mb21's user avatar
  • 40.3k
0 votes
1 answer
102 views

I need to deserialize XML into polymorphic Java classes where the subtype is determined not just by a type attribute on <component>, but also by a sibling <version> element. For example, &...
towi's user avatar
  • 22.5k
0 votes
0 answers
45 views

I admit I am an XPath novice and I have Googled my face off on this topic so please be gentle. Is it possible to dynamically name identifiers without using XSLT, Java, or Python? Incoming data ...
waywardRobin's user avatar
1 vote
1 answer
49 views

here is the code for the main page activity <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://...
zeynepkurtulus's user avatar
0 votes
1 answer
99 views

The answer to my earier question How do I access an XML node that uses quote marks with xmlstarlet? shows how to access a node using the namespace, and in that case, deleting the entire node. ...
BlueDogRanch's user avatar
0 votes
0 answers
43 views

I'm trying to create a navigation drawer in Android Studio. However, the NavigationView view in the XML file takes up the whole screen and prevents me from viewing the Toolbar and other features. How ...
999's user avatar
  • 11
1 vote
3 answers
127 views

There is an outdated section within the data, and I need to replace it. The replacement data is static and needs to go in place of existing Nodes. <headerNode1> <headerNode2> <...
Maggie's user avatar
  • 11
-4 votes
1 answer
66 views

I am using JAXB to process XML input wrapped in a SOAP 1.2. However, I am getting an exception during unmarshaling: javax.xml.bind.UnmarshalException: unexpected element (uri:"", local:"...
user149408's user avatar
  • 6,269
0 votes
0 answers
108 views

I’m writing a sitemap XML parser using lxml.etree.iterparse class Sitemap: """Class to parse Sitemap (type=urlset) and Sitemap Index (type=sitemapindex) files""" ...
abebus's user avatar
  • 1
0 votes
0 answers
105 views

I am trying to set up XML validation in Azure api management policy. I have the following policy set up. The purchase order schemas is there in the schemas section: <inbound> <base />...
Nirjal Khadka's user avatar
-3 votes
1 answer
86 views

I need to convert an XML file to another format. A system creates an XML log with entries like this, I now know that the format was probably selected to allow extension without changing the schema: &...
AndersG's user avatar
  • 151
0 votes
2 answers
76 views

Using Saxon 12.8, I can compile an XML source to a TEX file. I am using the XSL file for Latex from TEIC/Stylesheets to do this. My XML source however has some math that will need the amsmath package. ...
SO Stinks's user avatar
  • 3,465
1 vote
2 answers
91 views

I am trying to convert an XML string into multi-dimensioned PHP array. The difficulties are that XML comes with attributes and has nested values. My code works at parent level data but I am not sure ...
user5705009's user avatar
0 votes
2 answers
90 views

See the XML code of a table below. My task is to add an attribute (MOREROWS) to every ENTRY element which has one or more consecutive following rows with the text "##rowspan##" in the ENTRY ...
Hermund's user avatar
  • 15
0 votes
1 answer
56 views

I’m working with a grid table in SAPUI5 and have a requirement to count the characters of the operation description field. The character count should update live and be displayed below the field, ...
k34l's user avatar
  • 103
2 votes
2 answers
78 views

I have a large sequence of maps: 15,000 rows of 85 columns, initially created from sql: <xsl:variable name="original-sequence" select="sql:prepared-query($connection, $sql)()"/&...
lschult2's user avatar
  • 450
0 votes
2 answers
65 views

I am writing an XML comparison tool and need to ignore the object, rather than a property, order. For instance: XML 1. <Root> <Vehicles> <Vehicle> <...
Nathan Ash-Vie's user avatar