Click here to Skip to main content
15,892,005 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,

Our requirement is to create a .NET Webservice and use it in PeopleSoft Intergration Broker as a Message. Could you please share us with detailed information on how to go about in creating the web service in .NET and sending it to PeopleSoft Intergration Broker as a Message.
Posted
Updated 12-Mar-12 3:32am
v2
Comments
justinonday 12-Mar-12 8:34am    
are you googled?
ZurdoDev 12-Mar-12 8:50am    
I don't think anyone is going to give you that much information. Do you know how to create a .Net web service? Have you looked at PeopleSoft's api and how to interact with it? Have you done anything?

1 solution

Message is the packet of data which contains important information. WCF uses these messages to transfer information from Source to destination.

Message contract can be applied to type using MessageContract attribute. Custom Header and Body can be included to message using 'MessageHeader' and 'MessageBodyMember'atttribute. Let us see the sample message contract as:
C#
[MessageContract]
public class EmployeeDetails
{
    [MessageHeader]
    public string EmpID;
}


When using Message contract type as parameter, you can use only one parameter in service operation as:
C#
[OperationContract]
void PeopleSoftSave(EmployeeDetails emp);
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900