Sending a WFS-T requestWFS-T NamespaceProxy configuration problem with Glassfish and GeoServerhow to get json from describe feature typeIssue with a point insertion into a Geoserver points layer. WFS-TDeleting a layer using Get Request WFSWFS request works in Geoserver but server returns errorQGIS 2.16 adding certain WFS failedwfs-t geoserver xml post requestWFS layer not showing in openlayersGeoServer CQL Filter IN and strToLowerCase

extract characters between two commas?

When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?

Does a dangling wire really electrocute me if I'm standing in water?

Can a planet have a different gravitational pull depending on its location in orbit around its sun?

Is Fable (1996) connected in any way to the Fable franchise from Lionhead Studios?

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?

Why did the Germans forbid the possession of pet pigeons in Rostov-on-Don in 1941?

LWC and complex parameters

What happens when a metallic dragon and a chromatic dragon mate?

What does it exactly mean if a random variable follows a distribution

Ideas for 3rd eye abilities

Is there a familial term for apples and pears?

Piano - What is the notation for a double stop where both notes in the double stop are different lengths?

Can I find out the caloric content of bread by dehydrating it?

Where to refill my bottle in India?

Why do UK politicians seemingly ignore opinion polls on Brexit?

Could a US political party gain complete control over the government by removing checks & balances?

Landlord wants to switch my lease to a "Land contract" to "get back at the city"

Why was the "bread communication" in the arena of Catching Fire left out in the movie?

Is this food a bread or a loaf?

How is it possible for user's password to be changed after storage was encrypted? (on OS X, Android)

Does it makes sense to buy a new cycle to learn riding?

Why is my log file so massive? 22gb. I am running log backups

What is the meaning of "of trouble" in the following sentence?



Sending a WFS-T request


WFS-T NamespaceProxy configuration problem with Glassfish and GeoServerhow to get json from describe feature typeIssue with a point insertion into a Geoserver points layer. WFS-TDeleting a layer using Get Request WFSWFS request works in Geoserver but server returns errorQGIS 2.16 adding certain WFS failedwfs-t geoserver xml post requestWFS layer not showing in openlayersGeoServer CQL Filter IN and strToLowerCase






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








0















I have a geoserver which I want to edit using c-sharp, I managed to retrieve information from it, but I haven't found a way to make any changes - I know that there is WFS-T but I haven't found a way to initialize it, I made the xml file (with my insert/delete/update), but I'm not sure how to send it to my geoserver, how can I send it using csharp?



URL = "http://localhost:8080/geoserver/topp"


XML file:



<?xml version="1.0" ?>
<wfs:Transaction
version="2.0.0"
service="WFS"
xmlns:fes="http://www.opengis.net/fes/2.0"
xmlns:wfs="http://www.opengis.net/wfs/2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.opengis.net/wfs/2.0
http://schemas.opengis.net/wfs/2.0.0/wfs.xsd">
<wfs:Update typeName="topp:states">
<wfs:Property>
<wfs:ValueReference>STATE_NAME</wfs:ValueReference>
<wfs:Value>Caliwhilenia</wfs:Value>
</wfs:Property>
<ogc:Filter>
<ogc:PropertyName>STATE_NAME</ogc:PropertyName>
<ogc:Literal>California</ogc:Literal>
</ogc:Filter>
</wfs:Update>
</wfs:Transaction>


request code



 WebRequest request = WebRequest.Create(url); //the geoserver url

request.ContentType = "text/xml";
request.Method = "POST";
request.Credentials = new NetworkCredential("admin", "geoserver");

byte[] buffer = File.ReadAllBytes(xmlrequest); //Makes a change to the state's name
Stream reqstr = request.GetRequestStream();
reqstr.Write(buffer, 0, buffer.Length);
reqstr.Close();

WebResponse response = request.GetResponse();


The geoserver is not changing the state's name



Update: now it connects to the server but I'm getting a "OperationParsingFailed" exception, altough I find that there is noting wrong with my xml file










share|improve this question









New contributor




Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • please add the code you have so far, and a description of what is not working.

    – Ian Turton
    Apr 4 at 7:24











  • The post has been updated with my request attempt

    – Ido H Levi
    Apr 4 at 7:28











  • We'd also need to see the contents of UpdateXML and url

    – Ian Turton
    Apr 4 at 7:49











  • I've just updated them both

    – Ido H Levi
    Apr 4 at 8:07

















0















I have a geoserver which I want to edit using c-sharp, I managed to retrieve information from it, but I haven't found a way to make any changes - I know that there is WFS-T but I haven't found a way to initialize it, I made the xml file (with my insert/delete/update), but I'm not sure how to send it to my geoserver, how can I send it using csharp?



URL = "http://localhost:8080/geoserver/topp"


XML file:



<?xml version="1.0" ?>
<wfs:Transaction
version="2.0.0"
service="WFS"
xmlns:fes="http://www.opengis.net/fes/2.0"
xmlns:wfs="http://www.opengis.net/wfs/2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.opengis.net/wfs/2.0
http://schemas.opengis.net/wfs/2.0.0/wfs.xsd">
<wfs:Update typeName="topp:states">
<wfs:Property>
<wfs:ValueReference>STATE_NAME</wfs:ValueReference>
<wfs:Value>Caliwhilenia</wfs:Value>
</wfs:Property>
<ogc:Filter>
<ogc:PropertyName>STATE_NAME</ogc:PropertyName>
<ogc:Literal>California</ogc:Literal>
</ogc:Filter>
</wfs:Update>
</wfs:Transaction>


request code



 WebRequest request = WebRequest.Create(url); //the geoserver url

request.ContentType = "text/xml";
request.Method = "POST";
request.Credentials = new NetworkCredential("admin", "geoserver");

byte[] buffer = File.ReadAllBytes(xmlrequest); //Makes a change to the state's name
Stream reqstr = request.GetRequestStream();
reqstr.Write(buffer, 0, buffer.Length);
reqstr.Close();

WebResponse response = request.GetResponse();


The geoserver is not changing the state's name



Update: now it connects to the server but I'm getting a "OperationParsingFailed" exception, altough I find that there is noting wrong with my xml file










share|improve this question









New contributor




Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















  • please add the code you have so far, and a description of what is not working.

    – Ian Turton
    Apr 4 at 7:24











  • The post has been updated with my request attempt

    – Ido H Levi
    Apr 4 at 7:28











  • We'd also need to see the contents of UpdateXML and url

    – Ian Turton
    Apr 4 at 7:49











  • I've just updated them both

    – Ido H Levi
    Apr 4 at 8:07













0












0








0








I have a geoserver which I want to edit using c-sharp, I managed to retrieve information from it, but I haven't found a way to make any changes - I know that there is WFS-T but I haven't found a way to initialize it, I made the xml file (with my insert/delete/update), but I'm not sure how to send it to my geoserver, how can I send it using csharp?



URL = "http://localhost:8080/geoserver/topp"


XML file:



<?xml version="1.0" ?>
<wfs:Transaction
version="2.0.0"
service="WFS"
xmlns:fes="http://www.opengis.net/fes/2.0"
xmlns:wfs="http://www.opengis.net/wfs/2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.opengis.net/wfs/2.0
http://schemas.opengis.net/wfs/2.0.0/wfs.xsd">
<wfs:Update typeName="topp:states">
<wfs:Property>
<wfs:ValueReference>STATE_NAME</wfs:ValueReference>
<wfs:Value>Caliwhilenia</wfs:Value>
</wfs:Property>
<ogc:Filter>
<ogc:PropertyName>STATE_NAME</ogc:PropertyName>
<ogc:Literal>California</ogc:Literal>
</ogc:Filter>
</wfs:Update>
</wfs:Transaction>


request code



 WebRequest request = WebRequest.Create(url); //the geoserver url

request.ContentType = "text/xml";
request.Method = "POST";
request.Credentials = new NetworkCredential("admin", "geoserver");

byte[] buffer = File.ReadAllBytes(xmlrequest); //Makes a change to the state's name
Stream reqstr = request.GetRequestStream();
reqstr.Write(buffer, 0, buffer.Length);
reqstr.Close();

WebResponse response = request.GetResponse();


The geoserver is not changing the state's name



Update: now it connects to the server but I'm getting a "OperationParsingFailed" exception, altough I find that there is noting wrong with my xml file










share|improve this question









New contributor




Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I have a geoserver which I want to edit using c-sharp, I managed to retrieve information from it, but I haven't found a way to make any changes - I know that there is WFS-T but I haven't found a way to initialize it, I made the xml file (with my insert/delete/update), but I'm not sure how to send it to my geoserver, how can I send it using csharp?



URL = "http://localhost:8080/geoserver/topp"


XML file:



<?xml version="1.0" ?>
<wfs:Transaction
version="2.0.0"
service="WFS"
xmlns:fes="http://www.opengis.net/fes/2.0"
xmlns:wfs="http://www.opengis.net/wfs/2.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.opengis.net/wfs/2.0
http://schemas.opengis.net/wfs/2.0.0/wfs.xsd">
<wfs:Update typeName="topp:states">
<wfs:Property>
<wfs:ValueReference>STATE_NAME</wfs:ValueReference>
<wfs:Value>Caliwhilenia</wfs:Value>
</wfs:Property>
<ogc:Filter>
<ogc:PropertyName>STATE_NAME</ogc:PropertyName>
<ogc:Literal>California</ogc:Literal>
</ogc:Filter>
</wfs:Update>
</wfs:Transaction>


request code



 WebRequest request = WebRequest.Create(url); //the geoserver url

request.ContentType = "text/xml";
request.Method = "POST";
request.Credentials = new NetworkCredential("admin", "geoserver");

byte[] buffer = File.ReadAllBytes(xmlrequest); //Makes a change to the state's name
Stream reqstr = request.GetRequestStream();
reqstr.Write(buffer, 0, buffer.Length);
reqstr.Close();

WebResponse response = request.GetResponse();


The geoserver is not changing the state's name



Update: now it connects to the server but I'm getting a "OperationParsingFailed" exception, altough I find that there is noting wrong with my xml file







geoserver c# wfs wfs-t






share|improve this question









New contributor




Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited Apr 4 at 9:29







Ido H Levi













New contributor




Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked Apr 4 at 7:19









Ido H LeviIdo H Levi

12




12




New contributor




Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












  • please add the code you have so far, and a description of what is not working.

    – Ian Turton
    Apr 4 at 7:24











  • The post has been updated with my request attempt

    – Ido H Levi
    Apr 4 at 7:28











  • We'd also need to see the contents of UpdateXML and url

    – Ian Turton
    Apr 4 at 7:49











  • I've just updated them both

    – Ido H Levi
    Apr 4 at 8:07

















  • please add the code you have so far, and a description of what is not working.

    – Ian Turton
    Apr 4 at 7:24











  • The post has been updated with my request attempt

    – Ido H Levi
    Apr 4 at 7:28











  • We'd also need to see the contents of UpdateXML and url

    – Ian Turton
    Apr 4 at 7:49











  • I've just updated them both

    – Ido H Levi
    Apr 4 at 8:07
















please add the code you have so far, and a description of what is not working.

– Ian Turton
Apr 4 at 7:24





please add the code you have so far, and a description of what is not working.

– Ian Turton
Apr 4 at 7:24













The post has been updated with my request attempt

– Ido H Levi
Apr 4 at 7:28





The post has been updated with my request attempt

– Ido H Levi
Apr 4 at 7:28













We'd also need to see the contents of UpdateXML and url

– Ian Turton
Apr 4 at 7:49





We'd also need to see the contents of UpdateXML and url

– Ian Turton
Apr 4 at 7:49













I've just updated them both

– Ido H Levi
Apr 4 at 8:07





I've just updated them both

– Ido H Levi
Apr 4 at 8:07










1 Answer
1






active

oldest

votes


















0














Problem was that I didn't used all of my namespaces which has made a conflict, removed the unnecessary ones and it works like magic






share|improve this answer








New contributor




Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.




















    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "79"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );






    Ido H Levi is a new contributor. Be nice, and check out our Code of Conduct.









    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317730%2fsending-a-wfs-t-request%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    1 Answer
    1






    active

    oldest

    votes








    1 Answer
    1






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    0














    Problem was that I didn't used all of my namespaces which has made a conflict, removed the unnecessary ones and it works like magic






    share|improve this answer








    New contributor




    Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.
























      0














      Problem was that I didn't used all of my namespaces which has made a conflict, removed the unnecessary ones and it works like magic






      share|improve this answer








      New contributor




      Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















        0












        0








        0







        Problem was that I didn't used all of my namespaces which has made a conflict, removed the unnecessary ones and it works like magic






        share|improve this answer








        New contributor




        Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.










        Problem was that I didn't used all of my namespaces which has made a conflict, removed the unnecessary ones and it works like magic







        share|improve this answer








        New contributor




        Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        share|improve this answer



        share|improve this answer






        New contributor




        Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered Apr 4 at 11:49









        Ido H LeviIdo H Levi

        12




        12




        New contributor




        Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        Ido H Levi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.




















            Ido H Levi is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            Ido H Levi is a new contributor. Be nice, and check out our Code of Conduct.












            Ido H Levi is a new contributor. Be nice, and check out our Code of Conduct.











            Ido H Levi is a new contributor. Be nice, and check out our Code of Conduct.














            Thanks for contributing an answer to Geographic Information Systems Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgis.stackexchange.com%2fquestions%2f317730%2fsending-a-wfs-t-request%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            រឿង រ៉ូមេអូ និង ហ្ស៊ុយលីយេ សង្ខេបរឿង តួអង្គ បញ្ជីណែនាំ

            QGIS export composer to PDF scale the map [closed] Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern) Announcing the arrival of Valued Associate #679: Cesar Manara Unicorn Meta Zoo #1: Why another podcast?Print Composer QGIS 2.6, how to export image?QGIS 2.8.1 print composer won't export all OpenCycleMap base layer tilesSave Print/Map QGIS composer view as PNG/PDF using Python (without changing anything in visible layout)?Export QGIS Print Composer PDF with searchable text labelsQGIS Print Composer does not change from landscape to portrait orientation?How can I avoid map size and scale changes in print composer?Fuzzy PDF export in QGIS running on macSierra OSExport the legend into its 100% size using Print ComposerScale-dependent rendering in QGIS PDF output

            PDF-ში გადმოწერა სანავიგაციო მენიუproject page