xslt - Can you add a DTD schema to an biztalk created XML if you don't have the DTD? -
we need create xml shipping software company deal with.
basically, output xml needs contain below doctype
<!doctype interface_create_shipment system "interface_create_shipment.dtd">
but don't have file, adding mappings doctype system causes error don't know if work. possible let biztalk add doctype without dtd being avaible on side? or make new dtd same name able create file?
you have set own custom xml declaration @ design time in pipeline component
in "add processing instructions text" field should put
<?xml version="1.0" standalone="no" ?><!doctype interface_create_shipment system "interface_create_shipment.dtd">
don't forget set add xml declaration false
more details available here http://cherifmahieddine.com/2013/09/23/custom-biztalk-xml-declaration/
Comments
Post a Comment