Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6007695
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T01:43:04+00:00 2026-05-23T01:43:04+00:00

I have been having problems with the 400 Bad Response, and have got it

  • 0

I have been having problems with the 400 Bad Response, and have got it down to the XML sting that is getting passed. The string that works is

<Data xmlns=\"http://www.eysnap.com/mPlayer\">
<Name>Chris</Name>
<Age>29</Age>
<Period>123</Period>
<msg>Why</msg>
</Data>

However when I try and seralize it I get:

<?xml version="1.0" encoding="utf-16"?>
<Data xmlns:Namespace="http://www.eysnap.com/mPlayer">
<Name>Chris</Name>
<Age>29</Age>
<Period>123</Period>
<msg>Why</msg>
</Data>

I know that is the correct formatting, but I either need to set the xml output to a bare view or I need to configure my service to accept the correct view.

Client Post Code:

        StringBuilder s = new StringBuilder();
        StringWriter writter = new StringWriter(s);

        XmlWriterSettings settings = new XmlWriterSettings();
        settings.OmitXmlDeclaration=true;

        using(XmlWriter writer = XmlWriter.Create(writter,settings)){
        XmlSerializer x = new XmlSerializer(d.GetType());
        XmlSerializerNamespaces ns = new XmlSerializerNamespaces();
        ns.Add("Namespace","http://www.eysnap.com/mPlayer");
        x.Serialize(writter,d,ns);
        }

        string invalid = s.ToString();
        string valid ="<Data xmlns=\"http://www.eysnap.com/mPlayer\"><Name>Chris</Name><Age>29</Age><Period>12 Years</Period><msg>Fucking hell</msg></Data>";
            req.ContentLength = valid.Length;
            var sw = new StreamWriter(req.GetRequestStream());
            sw.Write(valid);
            sw.Close();

            res = (HttpWebResponse) req.GetResponse();
            Stream responseStream = res.GetResponseStream();
            var streamReader = new StreamReader(responseStream);

            //Read the response into an xml document
            var soapResonseXmlDocument = new XmlDocument();
            soapResonseXmlDocument.LoadXml(streamReader.ReadToEnd());

            //return only the xml representing the response details (inner request)
            TextBox1.Text = soapResonseXmlDocument.InnerXml;
            //Response.Write(soapResonseXMLDocument.InnerXml);

Rest Service Interface:

    [OperationContract]
    [WebInvoke(Method = "POST",
        ResponseFormat = WebMessageFormat.Xml,
        RequestFormat = WebMessageFormat.Xml,
        BodyStyle = WebMessageBodyStyle.Wrapped,
        UriTemplate = "auth")]
    ResponseData Auth(Data rData);

Thanks

Chris

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T01:43:05+00:00Added an answer on May 23, 2026 at 1:43 am

    What happens if you do this instead:

    XmlSerializer x = new XmlSerializer(d.GetType(), "http://www.eysnap.com/mPlayer");
    XmlSerializerNamespaces ns = new XmlSerializerNamespaces();
    ns.Add(String.Empty, "http://www.eysnap.com/mPlayer");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been having problems creating a relative layout in XML for a list
I have been having some problems trying to get my PHP running. When I
This is a really weird problem that I have been having. When I download
I have been creating Unit tests like crazy and find that I'm often having
I have a database that we are having problems with. Somehow the log has
I have been having problems with creating a download list of files for a
I have been having problems with this for some time now, and have come
I have been having some problems with some variables inside a class being deleted
I have been trying to tackle this problem , but I am having difficulty
I have been having some issues with LINQ-To-SQL around memory usage. I'm using it

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.