Questions tagged [xml]

Extensible Markup Language

Extensible Markup Language (XML) is a markup language that defines a set of rules for encoding documents in a format that is both human-readable and machine-readable. It is defined in the XML 1.0 Specification produced by the W3C, and several other related specifications, all gratis open standards.

Source: wikipedia

Official W3C page

141 questions
0
votes
1 answer

How to uniquely identity certificates

We have a service receiving a loot of signed XML documents, some of them are signed with a self-signed certificate and some are signed from a trusted certificate authority. What is the best way to make sure the certificate used to sign the XML…
Mr Zach
  • 247
  • 1
  • 6
0
votes
1 answer

Extract data from multiple XMLs and generate CSV report - Powershell

I have few connectionstrings which are xml files. I need to generate a CSV report using all these connectionstrings with the following output: Below is my PS script which works fine for 1 file and gives me the desired output. I have been playing…
user3421341
  • 33
  • 1
  • 1
  • 8
0
votes
1 answer

Use for [$i] variable to create csv columns - Powershell

I am trying to grab information from the connectionstrings.config file and populate it to a CSV. I have the following script so far: $Filename = "C:\new.config" [xml]$config = Get-Content $fileName $CSCount =…
user3421341
  • 33
  • 1
  • 1
  • 8
0
votes
1 answer

Interpreting a Deadlock Log / XDL file

I've generated the following XML + XDL:
SB2055
  • 33
  • 5
0
votes
0 answers

mod_security blocking SOAP client simulation

I'm writing a PHP SOAP server and I'm using PAW ( mac app ) to simulate SOAP client request on my local server I get a SOAP response on production server a get an 403 Forbidden error, since on this server I did have previous issue with mod security…
al404IT
  • 123
  • 1
  • 7
0
votes
1 answer

"Class 'XMLWriter' not found" Error in php | php55w-xml-5.5.24-1.w6.x86_64.rpm is missing

I am getting this error in PHP in server Fatal Error (E_ERROR): Class 'XMLWriter' not found . we are using Cent OS 6 After exploring some sites, we found that we need to install php55w-xml-5.5.24-1.w6.x86_64.rpm. But the link is not working, I am…
Hitesh
  • 111
  • 6
0
votes
0 answers

Manual autodiscover implementation failing. Why?

I am managing a mail server, and would like to have my Outlook users be able to automatically set up their mail server information. Normally this is done with an autodiscover file. Here's how I understand it works with mymaildomain.com as an example…
jeddings
  • 1
  • 1
0
votes
2 answers

nginx vs apache when returning XML files

My head is tangled around this problem I have: Here's a link to an XML file on nginx: http://tag.sprtad.com/files/vast.xml here's a link to an XML file on Apache http://serve.sprtad.com/test.xml This XML file is sort of a configuration file that can…
Leon
  • 101
  • 1
0
votes
1 answer

How to change Zimbra Welcome page

I have configured a zimbra mail server. It is working fine. But I want to make one of my own html page as welcome file before login page. I have tried to edit the web.xml file but it is of no use. please can you tell me how to do that?
Sushovan
  • 111
  • 1
  • 2
0
votes
1 answer

Editing XML files from powershell

I have this XML file below which I need to edit. RD Web Access

RD Web…

user2629636
  • 774
  • 5
  • 19
  • 40
0
votes
3 answers

WGET Localhost 0 bytes

Hi I am trying to execute wget locally using cron, I have been told by my hosting that due to a local loopback that this won't work? I am attempting the following command: wget -q -O /pathtofile/blah.xml "http://myurl/myfeed.php?id=26" What I am…
simon
0
votes
1 answer

virsh XML interface allocation

I am trying to launch VM using a XML. This VM will be having 5 interfaces each connected to certain bridge. Issue here is allocation of these interfaces is random. My XML
0
votes
1 answer

XMLReader giving a timeout when opening external XML

I'm having a timeout when trying to open an external XML (which exists, I can see it in the browser when placing the direct link). I am sure XMLReader is installed and on, and it works if calling a local XML (tested and works as expected). But when…
jackJoe
  • 121
  • 6
0
votes
1 answer

Talking to Websphere XML access 'wps/config'

I'm trying to talk to a remote XMLAccess tool part of WebSphere Portal on the internet at a url that looks like that http://site/wps/config Where can i get the IBM tool to do that (a link would be great)? or can i just do it by forging manually POST…
Benjamin
  • 147
  • 1
  • 1
  • 6
0
votes
0 answers

Generating XML SAML with signature using xmlsec1

I am trying generate XML SAML with signature to SSO, but I have a problem and I don't know what is wrong. I don't have experience with Linux. I generated privkey and cacert with lib openssl. Next step, I install lib xmlsec1: yum install xmlsec1 yum…