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 70731
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T19:46:37+00:00 2026-05-10T19:46:37+00:00

I want to be able to load a serialized xml class to a Soap

  • 0

I want to be able to load a serialized xml class to a Soap Envelope. I am starting so I am not filling the innards so it appears like:

<Envelope     xmlns='http://schemas.xmlsoap.org/soap/envelope/' />  

I want it to appear like:

<Envelope     xmlns='http://schemas.xmlsoap.org/soap/envelope/' ></Envelope>` 

The class I wrote is this:

[System.SerializableAttribute()] [System.Xml.Serialization.XmlTypeAttribute(AnonymousType = true, Namespace = 'http://schemas.xmlsoap.org/soap/envelope/')] [System.Xml.Serialization.XmlRootAttribute(Namespace = 'http://schemas.xmlsoap.org/soap/envelope/',ElementName='Envelope', IsNullable = true)] public class TestXmlEnvelope {   [System.Xml.Serialization.XmlElement(ElementName='Body', Namespace='http://schemas.xmlsoap.org/soap/envelope/')]   public System.Collections.ArrayList Body = new System.Collections.ArrayList(); } //class TestXmlEnvelope` 

I am using this as an example since other people might want it in an individual element. I am sure this must be simple but sadly I don’t know the right keyword for this.

As always thanks for your help.

[Edit] The error comes when I try to use this instruction

System.Xml.Serialization.XmlSerializer xmlout = new System.Xml.Serialization.XmlSerializer(typeof(TestXmlEnvelope)); System.IO.MemoryStream memOut = new System.IO.MemoryStream(); xmlout.Serialize(memOut, envelope, namespc); Microsoft.Web.Services.SoapEnvelope soapEnv = new Microsoft.Web.Services.SoapEnvelope(); soapEnv.Load(memOut); 

It gives me error ‘Root Element not found’.

[Edit] I fixed the error the problem was that after I serialized the object I didn’t set the memOut.Position = 0. Still I hope this question helps other people that may want to do this.

  • 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. 2026-05-10T19:46:37+00:00Added an answer on May 10, 2026 at 7:46 pm

    The main issue here is that the XmlSerializer calls WriteEndElement() on the XmlWriter when it would write an end tag. This, however, generates the shorthand <tag/> form when there is no content. The WriteFullEndElement() writes the end tag separately.

    You can inject your own XmlTextWriter into the middle that the serializer would then use to exhibit that functionality.

    Given that serializer is the appropriate XmlSerializer, try this:

    public class XmlTextWriterFull : XmlTextWriter {     public XmlTextWriterFull(TextWriter sink) : base(sink) { }      public override void WriteEndElement()     {         base.WriteFullEndElement();     } }  ...  var writer = new XmlTextWriterFull(innerwriter); serializer.Serialize(writer, obj); 

    [Edit] for the case of your added code, add facade constructors for:

    public XmlTextWriterFull(Stream stream, Encoding enc) : base(stream, enc) { } public XmlTextWriterFull(String str, Encoding enc) : base(str, enc) { } 

    Then, use the memory stream as your inner stream in the constructor as before:

    System.IO.MemoryStream memOut = new System.IO.MemoryStream(); XmlTextWriterFull writer = new XmlTextWriterFull(memOut, Encoding.UTF8Encoding); //Or the encoding of your choice xmlout.Serialize(writer, envelope, namespc); 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 61k
  • Answers 61k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer If there are some characters that do not occur in… May 11, 2026 at 9:53 am
  • added an answer You have to edit /etc/ssh/sshd_config or where it is located… May 11, 2026 at 9:53 am
  • added an answer Well if you have two arrays containing the property/method names… May 11, 2026 at 9:53 am

Related Questions

I want to be able to load a serialized xml class to a Soap
I'm writing a simple CMS. I want to be able to load a View,
For my current project I want to be able to load some classes from
I want to be able to capture the exception that is thrown when a
I want to be able to do: For Each thing In things End For
I want to be able to play sound files in my program. Where should
I want to be able to make an HTTP call updating some select boxes
I want to be able to view a SQL Server 2005 Reporting Services report
I want to be able to do this. MyInterface interface = new ServiceProxyHelper<ProxyType>(); Here's
I want to be able to generate PDF output from my (native) C++ Windows

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.