Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

muniratnam

@muniratnam
About
Posts
13
Topics
6
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Connection Error
    M muniratnam

    Hi ravi, I have given http://localhost/servicemodelsamples/service/calculatorservice the same but the same error i am getting.... Regards Muni

    WCF and WF help csharp wcf tutorial workspace

  • Connection Error
    M muniratnam

    Hi ravi, Thanks 4r ur reply. I am also cofigured the same as you told.But still i am getting the erorr. My full code like this nothing but i got it from msdn Service -------- Program.Cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ServiceModel; using System.ServiceModel.Description; namespace Microsoft.ServiceModel.Samples { // Define a service contract. [ServiceContract(Namespace = "http://Microsoft.ServiceModel.Samples")] public interface ICalculator { [OperationContract] double Add(double n1, double n2); [OperationContract] double Subtract(double n1, double n2); [OperationContract] double Multiply(double n1, double n2); [OperationContract] double Divide(double n1, double n2); } // Service class that implements the service contract. // Added code to write output to the console window. public class CalculatorService : ICalculator { public double Add(double n1, double n2) { double result = n1 + n2; Console.WriteLine("Received Add({0},{1})", n1, n2); Console.WriteLine("Return: {0}", result); return result; } public double Subtract(double n1, double n2) { double result = n1 - n2; Console.WriteLine("Received Subtract({0},{1})", n1, n2); Console.WriteLine("Return: {0}", result); return result; } public double Multiply(double n1, double n2) { double result = n1 * n2; Console.WriteLine("Received Multiply({0},{1})", n1, n2); Console.WriteLine("Return: {0}", result); return result; } public double Divide(double n1, double n2) { double result = n1 / n2; Console.WriteLine("Received Divide({0},{1})", n1, n2); Console.WriteLine("Return: {0}", result); return result; } } class Program { static void Main(string[] args) { // Step 1 of the address configuration procedure: Create a URI to serve as the base address. Uri baseAddress = new Uri("http://localhost:8000/ServiceModelSamples/Service"); // Step 2 of the hosting procedure: Create ServiceHost ServiceHost selfHost = new ServiceHost(typeof(CalculatorService), baseAddress);

    WCF and WF help csharp wcf tutorial workspace

  • Connection Error
    M muniratnam

    Hi egenis, Thanks 4r ur reply. I am also cofigured the same as you told.But still i am getting the erorr. My full code like this nothing but i got it from msdn Service -------- Program.Cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ServiceModel; using System.ServiceModel.Description; namespace Microsoft.ServiceModel.Samples { // Define a service contract. [ServiceContract(Namespace = "http://Microsoft.ServiceModel.Samples")] public interface ICalculator { [OperationContract] double Add(double n1, double n2); [OperationContract] double Subtract(double n1, double n2); [OperationContract] double Multiply(double n1, double n2); [OperationContract] double Divide(double n1, double n2); } // Service class that implements the service contract. // Added code to write output to the console window. public class CalculatorService : ICalculator { public double Add(double n1, double n2) { double result = n1 + n2; Console.WriteLine("Received Add({0},{1})", n1, n2); Console.WriteLine("Return: {0}", result); return result; } public double Subtract(double n1, double n2) { double result = n1 - n2; Console.WriteLine("Received Subtract({0},{1})", n1, n2); Console.WriteLine("Return: {0}", result); return result; } public double Multiply(double n1, double n2) { double result = n1 * n2; Console.WriteLine("Received Multiply({0},{1})", n1, n2); Console.WriteLine("Return: {0}", result); return result; } public double Divide(double n1, double n2) { double result = n1 / n2; Console.WriteLine("Received Divide({0},{1})", n1, n2); Console.WriteLine("Return: {0}", result); return result; } } class Program { static void Main(string[] args) { // Step 1 of the address configuration procedure: Create a URI to serve as the base address. Uri baseAddress = new Uri("http://localhost:8000/ServiceModelSamples/Service"); // Step 2 of the hosting procedure: Create ServiceHost ServiceHost selfHost = new ServiceHost(typeof(CalculatorService), baseAddress);

    WCF and WF help csharp wcf tutorial workspace

  • Basics of sharepoint
    M muniratnam

    Hi saanj, Thanks for ur reply...

    SharePoint sharepoint com tutorial question workspace

  • Connection Error
    M muniratnam

    Hi guys, I am new to the WCF environment i tried the basic example from msdn site... I have created Service and client .... But i am getting this error .. please help me somebody. An unhandled exception of type 'System.ServiceModel.EndpointNotFoundException' occurred in mscorlib.dll Additional information: Could not connect to http://localhost/servicemodelsamples/service.svc. TCP error code 10061: No connection could be made because the target machine actively refused it 127.0.0.1:80. thanks in advance Regs muni

    WCF and WF help csharp wcf tutorial workspace

  • Basics of sharepoint
    M muniratnam

    Hi guys i know basics of sharepoint(MOSS) site creation, search configuration, Document libraray management, web parts development, Editing existing home pages and inner pages. But i want to know what is full flow of developing new sharepoint site.. I want to know the basics steps for example... what are all I have to do for creating full flow sharepoint website. Please let me know through steps if possible. (if u people having any documents please mail me at munirathinam@gmail.com) Thanks in Advance. Regs Muni

    SharePoint sharepoint com tutorial question workspace

  • Assembly "AjaxControlToolkit, Version=3.0.30512.17815, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e" does not contain a script with hash code "865923e8"
    M muniratnam

    Hi guys, I have used Ajaxcontroltoolkit in my website in Visual Studio 2008. Some times i am getting this error. Assembly "AjaxControlToolkit, Version=3.0.30512.17815, Culture=neutral, PublicKeyToken=28f01b0e84b6d53e" does not contain a script with hash code "865923e8" can u people help me regarding this issue. Thanks In Advance. Muni

    ASP.NET help csharp visual-studio cryptography tools

  • Update panel problem
    M muniratnam

    Default.aspx ---------- <body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager> <!-- Site Container --> <asp:UpdatePanel ID="UpdatePanel" runat="server"> <ContentTemplate> <div> <asp:PlaceHolder ID="PlaceHolder_content" runat="server"></asp:PlaceHolder> </div> </div> </ContentTemplate> </asp:UpdatePanel> <!-- /Site Container --> </form> </body> Default.aspx.cs --------------- public string page; protected void Page_Load(object sender, EventArgs e) { PlaceHolder_content.Controls.Clear(); CompareScheme CompareScheme_Ctrl = (CompareScheme)LoadControl("CompareScheme.ascx"); PlaceHolder_content.Controls.Add(CompareScheme_Ctrl); } CompareScheme.ascx (user COntrol) ------------------- <div class="find_fund" style="padding-left: 10px; padding-top: 10px;"> <div class="find_top"> <div class="topnews_label"> Compare Schemes</div> </div> <div class="find_middle1"> <div class="LH" style="margin-left: 1px; margin-right: 1px;"> <table cellpadding="0" cellspacing="0" border="0" width="100%" > <tr> <td> Select Category </td> <td> <asp:DropDownList ID="ddl_category" style="width:250px; font-size: 12px; color: #828282; padding-left: 6px;" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ddl_category_SelectedIndexChanged"> </asp:DropDownList> </td> </tr> <tr> <td> Select Scheme1 </td> <td> <asp:DropDownList ID="ddl_scheme1" style="width:250px; font-size: 12px; color: #828282; padding-left: 6px;" Width="250px" runat="server"> </asp:DropDownList> </td> </tr>

    ASP.NET help announcement

  • Update panel problem
    M muniratnam

    Hi guys, I have one problem while using update panel. i am loading usercontrols through placeholder. In that usercontrols i have used update panel. Consider i am having an linkbutton in the usercontrol, the linkbutton event is not firing at first time.... any body knows the solution .... its urgent plz reply... Regards Muniratnam

    ASP.NET help announcement

  • How to convert hexa color value into color like (Red)
    M muniratnam

    hi please use this i think it may usefull for u controlname.Style.Add("color", "#4B4B4B");// "#4B4B4B" is an hexadecimal value from db Regs muni

    ASP.NET database docker tutorial

  • How to enable cookie support in the browser programatically
    M muniratnam

    Hi Guys, I got a big issue. That i have developed an application based on cookie. But my clients gave me feedback its not functioning in their browser. I found that it may be a cookie problem. I want to know how to enable the browser support of cookie. For example, my IE is not supporting the cookie for that i need to check with the browser settings for the cookie or javascript support. So i want to enable the cookie support the client browser programatically instead of doing manually. Pls help me for this issue in javascript or c# Regards Muni

    Web Development help tutorial csharp javascript beta-testing

  • creating dynamic textbox
    M muniratnam

    hi i got the solution of getting dynamic textbox at runtime I did it with the help of javascript. I have created a server side textbox first and then i found the count of columns from the excell. according to the count i made it with the help of javascript for loop. Thanks for your response. regs muni

    C# help tutorial

  • creating dynamic textbox
    M muniratnam

    hi guys i want to create dynamic textbox according to the excell column values... for example i have 2 columns in excell A & B i want to create textbox for getting values of A & B. Plz help me is there any idea from urs.

    C# help tutorial
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups