in reply to Re^3: SOAP::Lite server with c sharp client
in thread SOAP::Lite server with c sharp client

well, i am a beginner in Web Service, but with soap lite i wrote a complete Web Service (client and server sides) in Perl Language, and it works perfectly, i can send documents and images with "base64" encoding. My problem started with this c sharp client, so i hate C sharp ! ^_^

  • Comment on Re^4: SOAP::Lite server with c sharp client

Replies are listed 'Best First'.
Re^5: SOAP::Lite server with c sharp client
by Anonymous Monk on Apr 28, 2014 at 22:57 UTC
    :) so what class does  MyService.FUNCTIONPortClient soapClient use?

      this is the code, it is very simple.... now i am trying to force soap lite to use "document/literal" soap message

      using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsFormsApplication1 { public partial class Form1 : Form { public Form1() { InitializeComponent(); } string result = "xxx"; private void SubmitBtn_Click(object sender, EventArgs e) { // SERVICE REFERENCE-SPECIFIC CODE MyService.FUNCTIONPortClient soapClient = new MyService.FUN +CTIONPortClient (); result = soapClient.test_query("test from c# ! "); // the first source code part......