Hi! <br>I&#39;m using WFSTFeatureEditing.js with Tinyows and i got some problem on transaction.<br><br>with this XML : <br>&quot;&lt;wfs:Transaction xmlns:wfs=\&quot;<a href="http://www.opengis.net/wfs\">http://www.opengis.net/wfs\</a>&quot; service=\&quot;WFS\&quot; version=\&quot;1.0.0\&quot; xsi:schemaLocation=\&quot;<a href="http://www.opengis.net/wfs">http://www.opengis.net/wfs</a> <a href="http://schemas.opengis.net/wfs/1.0.0/WFS-transaction.xsd\">http://schemas.opengis.net/wfs/1.0.0/WFS-transaction.xsd\</a>&quot; xmlns:xsi=\&quot;<a href="http://www.w3.org/2001/XMLSchema-instance\">http://www.w3.org/2001/XMLSchema-instance\</a>&quot;&gt;&quot;+<br>
&quot;&lt;wfs:Insert&gt;&quot;+<br>&quot;&lt;feature:CASERNE_VIEW_MODIF xmlns:feature=\&quot;<a href="http://balblabla.qc.ca/\">http://balblabla.qc.ca/\</a>&quot;&gt;&quot;+<br>&quot;&lt;feature:geom_p&gt;&quot;+<br>&quot;&lt;gml:Point xmlns:gml=\&quot;<a href="http://www.opengis.net/gml\">http://www.opengis.net/gml\</a>&quot; srsName=\&quot;EPSG:900913\&quot;&gt;&quot;+<br>
&quot;&lt;gml:coordinates decimal=\&quot;.\&quot; cs=\&quot;,\&quot; ts=\&quot; \&quot;&gt;-8026012.4235639,5923239.9348854&lt;/gml:coordinates&gt;&quot;+<br>&quot;&lt;/gml:Point&gt;&quot;+<br>&quot;&lt;/feature:geom_p&gt;&quot;+<br>
&quot;&lt;feature:nom_muncp&gt;fff&lt;/feature:nom_muncp&gt;&quot;+<br>&quot;&lt;feature:role&gt;test_marc&lt;/feature:role&gt;&quot;+<br>&quot;&lt;feature:nom_rue&gt;ééé&lt;/feature:nom_rue&gt;&quot;+<br>&quot;&lt;/feature:CASERNE_VIEW_MODIF&gt;&quot;+<br>
&quot;&lt;/wfs:Insert&gt;&quot;+<br>&quot;&lt;/wfs:Transaction&gt;&quot;<br><br>everything is OK when Content-type = text/xml but when Content-type=application/xml nothing works.<br>so i tried to set the content-type.<br>
i set my manager like this :<br><br>    manager = new GeoExt.ux.WFSTFeatureEditingManager({<br>        &quot;map&quot;: oMap,<br>        &quot;toolbar&quot;: oToolbar,<br>        &quot;url&quot;: tinyURL,<br>        &quot;toggleGroup&quot;: &quot;map&quot;,<br>
        &quot;actionGroup&quot;: &quot;map&quot;,<br>        &quot;mainPanelContainer&quot;: WFSextWindow,<br>        &quot;ignoredAttributes&quot;: {name:[&quot;the_geom&quot;, &quot;geom_p&quot;, &quot;geom_s&quot;, &quot;geom_l&quot;, &quot;ogc_fid&quot;]},<br>
        &quot;geomProperty&quot;: {name:[&quot;geom_p&quot;,&quot;geom_s&quot;,&quot;geom_l&quot;, &quot;the_geom&quot;]},<br>        &quot;DEFAULT_PROTOCOL_OPTIONS&quot;: {featureNS: Host.obtenir(), srsName: &quot;EPSG:900913&quot;,  headers: {<br>
        &quot;CONTENT-TYPE&quot;: &quot;text/xml&quot;}},<br>        &quot;featureEditorGridContainerOptions&quot;: {&quot;width&quot;: 400}<br>    });<br>    <br>the GetFeature is OK (content-type=text/xml) but any transactions (INSERT, UPDATE) had content-type=application/xml<br>
<br>transaction use Openlayers.Strategy.Save() so i can&#39;t see how to set the headers of the request<br><br>Marc-andré Trottier<br><br><br><br> <br>