Monday, July 22, 2013

XmlToolBox.com is back online.

After my domain expired it changed state to Redemption state and in that state it cannot simply be renewed. I had to make a special request to my dns provider and pay 125$. Next year I will remember to renew it in time =)

The site is now up and running again on http://www.xmltoolbox.com

Friday, July 19, 2013

XML Toolbox moved to  

http://xmltoolbox.appspot.com
Hmm Im having some dificulties renewing xmltoolbox.com... Im not sure what happened but for now I have enabled xmltoolbox on appspot again.

http://xmltoolbox.appspot.com

XmlToolBox is down.

Hello.

I have been on vacation the last three weeks and didnt know the site was down. The problem was I forgot to renew the domain. I just payed for another year and the site should be back up soon.

Ole B.

Friday, June 29, 2012

Added a new tool to the box. Xpath evaluator

Ive added a new page to the toolbox. http://www.xmltoolbox.com/xpathevaluator.html for now all it does is show the value of the xpath.

If you paste an xml to the big field and type in an xpath. Then either press enter or tab out of the field and the big field will show the value of your xpath expression.

Im currently working on the xpath field to have intellisence.

Kind regards.
Ole Bille.

XmlToolBox moved to www.xmltoolbox.com

Hi.

Just wanted to let you know that I bought www.xmltoolbox.com and now the site has moved to the new domain.

Enjoy =)

Thursday, July 7, 2011

Bugfix to the xpath generator.

A user was kind enough to point out that when generating xpath for list items the xpath was generated wrong. It started at index 0 instead of 1. This is fixed.

Before when generating xpaths for this xml


<root>
  <list>
    <listitem>1</listitem>
    <listitem>2</listitem>
  </list>
</root>


The first item would result in this xpath.

/root/list/listitem[0]/text()

But now it is like this.

/root/list//listitem[1]/text()

As it should be. =)