3
Answers

Modify SOAP messages

josec

josec

20y
1.9k
1
Hi all... Does anybody know how can I modify (usind C# ) the SOAP response message (from my Web Service to the client side) to include my own faultstring node with my own error description in the body element??? I mean.... I want my SOAP response message looks like:
my error message THANK'S
Answers (3)
0
Abdur Rafay

Abdur Rafay

NA 8 1.2k 9y
To Dipankar Biswas: I did that with Console.ReadLine(); By the way thanks a lot for the help.
0
Abdur Rafay

Abdur Rafay

NA 8 1.2k 9y
Hi,
I am pasting my server code. it is just accepting and receiving data from one client and keep connected to that only client. I want to receive data from different client after one another.
Below is my server code. Please help me.

Server Code:
using System;
using System.IO;
using System.Text;
using System.Net;
using System.Net.Sockets;

public class serv
{
    public static void Main()
    {
        try
        {
            IPAddress ipAd = IPAddress.Parse("115.167.97.145");
            // use local m/c IP address, and 
            // use the same in the client
            while (true)
            {
                /* Initializes the Listener */
                TcpListener myList = new TcpListener(ipAd, 1063);

                /* Start Listeneting at the specified port */
                myList.Start();

                Console.WriteLine("\nListening Port of The Server is 1063...");
                Console.WriteLine("Local Connection:" +  myList.LocalEndpoint);
                Console.WriteLine("Waiting for a connection.....");
                
                Socket s = myList.AcceptSocket();
                Console.WriteLine("Remote Connection " + s.RemoteEndPoint);

                byte[] b = new byte[225];
                int k = s.Receive(b);
                Console.WriteLine("Recieving Data from Client...");
                for (int i = 0; i < k; i++)
                    Console.Write(Convert.ToChar(b[i]));

                ASCIIEncoding asen = new ASCIIEncoding();
                s.Send(asen.GetBytes("The string was recieved by the server." + "\nStream Acknowledged\n\n"));
                //s.Send(asen.GetBytes("\nStream Acknowledged"));
                Console.WriteLine("\nAcknowledgement has been sent to the Client\n");
                /* clean up */
                s.Close();
                myList.Stop();
            }
        }
        catch (Exception e)
        {
            Console.WriteLine("Error..... " + e.StackTrace);
        }
    }
0
Dipankar Biswas

Dipankar Biswas

NA 3k 125.6k 9y
hi 

 I don't no clearly..  but try to change here
  s.close();
  myList.stop();


 Thanks..
0
Abdur Rafay

Abdur Rafay

NA 8 1.2k 9y
Both programs are running but after receiving/sending data windows close and received data could not be viewed easily.
0
Dipankar Biswas

Dipankar Biswas

NA 3k 125.6k 9y