Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Visual Studio C# : Complex Demo : error in XML file during deserialisation #34

Open
GoogleCodeExporter opened this issue Feb 29, 2016 · 0 comments

Comments

@GoogleCodeExporter
Copy link

What steps will reproduce the problem?

1. Visual Studio C# (target NET3.5 and NET4.0), Windows OS
2. Add webreference to demo.php
3. call SayHello() : success, C# gets the Response as string
4. call GetComplexType() : Fails, error in XML file 


This is my C# function to test demo.php:


   private void button1_Click(object sender, EventArgs e)
        {
            WebRef.SoapDemo demo = new WebRef.SoapDemo();

            string response;
            response = demo.SayHello("Steve");

            WebRef.ComplexTypeDemo c;
            c =  demo.GetComplexType();
        }

During call of GetComplexType() I get exception "Error in XML-Dokument (2,694)"

What is going wrong ? Did I miss something ?

Thank you very much to release php-wsdl-generator to the public.
Could you please add some C# example code snippets ?

Cheers
Carsten

Original issue reported on code.google.com by [email protected] on 21 Oct 2014 at 5:49

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant