Can I formatter XML directly in browser?
Yes. The XML route runs in browser so you can inspect the result without sending the document to a server.
Format WSDL documents with browser-side pretty printing so service definitions, bindings, and messages are easier to inspect.
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://example.com/weather" targetNamespace="http://example.com/weather" name="WeatherService"><wsdl:message name="GetForecastRequest"><wsdl:part name="city" type="xsd:string" xmlns:xsd="http://www.w3.org/2001/XMLSchema"/></wsdl:message><wsdl:portType name="WeatherPortType"><wsdl:operation name="GetForecast"><wsdl:input message="tns:GetForecastRequest"/></wsdl:operation></wsdl:portType><wsdl:binding name="WeatherBinding" type="tns:WeatherPortType"><soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/></wsdl:binding></wsdl:definitions>
<?xml version="1.0" encoding="UTF-8"?>
<wsdl:definitions xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://example.com/weather" targetNamespace="http://example.com/weather" name="WeatherService"><wsdl:message name="GetForecastRequest"><wsdl:part name="city" type="xsd:string" xmlns:xsd="http://www.w3.org/2001/XMLSchema"/></wsdl:message><wsdl:portType name="WeatherPortType"><wsdl:operation name="GetForecast"><wsdl:input message="tns:GetForecastRequest"/></wsdl:operation></wsdl:portType><wsdl:binding name="WeatherBinding" type="tns:WeatherPortType"><soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/></wsdl:binding></wsdl:definitions>
Yes. The XML route runs in browser so you can inspect the result without sending the document to a server.
Yes. The shared workspace keeps the processed result visible so you can review and copy it immediately after running the tool.