214,877 questions
3
votes
0
answers
50
views
Android "paddingHorizontal" Doesn't Work on TextInputEdieText
XML:
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/name_inputLayout"
android:layout_width="match_parent"
android:layout_height="...
1
vote
1
answer
46
views
Why structs constructed from XML have empty fields?
I am trying to write an XML parser which will load a data from XML file and convert it to golang structs, but apparently it is not working and I have no idea why. I wrote a test to troubleshoot it, ...
-2
votes
0
answers
29
views
How to add a schemeid at a element at XML-file with VB.Net [closed]
I'm creating a XML-file with VB.Net
I need to add the following element to the xml-file with XmlTextWriter:
<cbc:EndpointID schemeID="9925">VAT-number</cbc:EndpointID>
My code:
...
0
votes
1
answer
47
views
Android Material3 Outlined Button Looks Different from Guideline
XML:
<Button
android:id="@+id/send_button"
style="@style/Widget.Material3.Button.OutlinedButton"
android:layout_width="wrap_content"
android:...
0
votes
0
answers
26
views
Tally purchase order creation with XML request is failing
I'm trying to create a purchase order with XML request, but the request fails each time with an error saying that the voucher date is missing. But the voucher date is already given. The port 9000 is ...
2
votes
1
answer
142
views
+50
How do I prevent a Maven mojo parameter from being encoded on write to XML?
I'm writing a custom Maven plugin for building a Flatpak from a Java project. In a Maven mojo I understand we use @Parameter annotations to parse pom.xml file configurations. For example:
pom.xml:
<...
0
votes
1
answer
70
views
How to split the book in the chapters format
In the below example we are trying split the book in the chapters format.
Can anyone help.
INPUT XML:
book.xml
<?xml version="1.0" encoding="UTF-8"?>
<book>
<...
-1
votes
0
answers
28
views
Mondial Relay SOAP API "Invalid XML" error with Unexpected close tag despite correct XML in Node/React
I am integrating Mondial Relay’s SOAP API in a Node.js application using the soap npm package.
I am trying to create a shipment with the WSI2_CreationExpedition method and then generate the shipping ...
0
votes
0
answers
31
views
xml-crypto (v2.1.5) signed XML rejected by API - "Invalid File" despite removing injected Id
I am implementing an XML signing solution using Node.js to authenticate with a strict external API. I need to sign a "Seed" XML to obtain an access token. The API returns an generic "...
1
vote
0
answers
37
views
How to load types from SIEMENS OPC interface XML into an Opc.Ua.NetStandard C# server?
I have an .xml file exported from TIA Portal, with UADataTypes, UAObjects and UAVariables - something like this:
<UADataType NodeId="ns=1;i=3500" BrowseName="1:...
-3
votes
1
answer
75
views
How to randomly show top 10 records from an XML feed? [closed]
Here in my WordPress plugin I am using the following Code to read an xml feed.
$itsw_rss_feed = simplexml_load_file($itsw_feedurls[wp_rand(0,count($itsw_feedurls) - 1)]);
then using a for loop I am ...
0
votes
1
answer
58
views
How to lookup multiple values of a key in a map in xslt 3.0
I am new to XSLT and I am trying to simply print one of the values of a key in XSLT3.0. Please help me with this.
My XML:
<AggregatedData>
<wd:Report_Data xmlns:wd="urn:com.workday....
Advice
0
votes
1
replies
40
views
BridgeLink 4.6.0: How to validate XML against XSD (with dependent imports) using Lookup Manager? Java access removed
I am working on BridgeLink 4.6.0, and I need to validate XML files (CCD/CCDA) using XSD schemas.
Earlier versions of BridgeLink allowed Java access inside JavaScript (e.g., Java.type, Java.extend, ...
1
vote
0
answers
72
views
xml in chess pgn using python
<line fen="rnbqkbnr/pppppppp/8/8/8/8/PPPPPPPP/RNBQKBNR w KQkq - 0 1">
<move m="e4"/>
<move m="e5"/>
<move m="d4"/>
<...
3
votes
0
answers
85
views
XML signature validation failing using SignedXML
We are validating the signature in XML responses (for Peppol).
For this we are using the SignedXml (System.Security.Cryptography.Xml) class in C#. Which works fine, most of the times.
For some XML ...