Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.9K
~561 People Reached
Favorite Forums
Favorite Tags
2 Posted Topics
Well I am not sure if my answer is relevent but I think you are asking about how to host that service so that you can interact with that when it is hosted on IIS.What I did was that I first created a WCF webservice library and then added a …
[code] interface Cricket { public void Pitch (String type); public void Seats (int num); } class Arrangement implemets Cricket { public void Pitch (String types); { System.out.println (types); } public void Seats (int nums) { System.out.println (nums); } } public Class Match { public static void main (String arg) { …
The End.
qadeer37