Search

You searched for the word(s): userid:650671

Matching Posts

  • Re: Doubt about WWF, WCF and WPF

    Yes, I ment WPF!! Thank you, that was the name I was looking for! Best regards,
    Posted to Free For All (Forum) by dvd.ribeiro on 11/11/2009
  • Http WCF - setting property with BasicHttpBinding not working

    Hi, I have a WCF Service, published via http. I configured on web.config two endpoints - one wsHttpBinging, and another basicHttpBinding. On my ServiceContract (aka interface), I defined the property like this: ApplicationCredentials Credentials { [OperationContract(Name="CredentialsGet")] get; [OperationContract(Name = "CredentialsSet")] set; } ApplicationCredentials Credentials { [OperationContract(Name="CredentialsGet")] get; [OperationContract(Name = "CredentialsSet"
    Posted to XML Web Services (Forum) by dvd.ribeiro on 11/11/2009
  • Doubt about WWF, WCF and WPF

    Hello, I'm new at WCF, APF and WWF. I'm able to create and deploy applications with the first two, and I haven't tried the WWF yet. However, I need to perform a presentation in order to explain what this three tecniques are, and I know what each one is and what it does, avdantages, etc... My doubt is to explain the base of this three concepts. I know that they began with the 3.0 Framework, but isn't there a designation for these techniques? I've searched for "Microsoft Foundation"
    Posted to Free For All (Forum) by dvd.ribeiro on 11/10/2009
  • LINQ & SQL: Bad Storage property

    Hi, I'm accessing a simple table by LINQ. My SQL Table structure is this: CREATE TABLE Tbl_Person( id int identity(1,1) primary key not null, name nvarchar(255), personType nvarchar(255), [status] int not null ) The Database is express, is on a system file. My C# class goes like this: (Person.cs) using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml.Linq; using System.Data.Linq; using System.Data.Linq.Mapping; using System.ServiceModel; using System
  • Re: LINQ & SQL: Bad Storage property

    Hi, the problem was with the Storage tags above the Person class properties. I've replaced it with Name and works fine! However, now I have another issue. I added the Service reference to my Silverlight application, and I am not able to call the operation. I have 2 endpoints, a BasicHttp and a WsHttp, configured like this: <service name="MyWCFServices.Complex.HelloWorldService" behaviorConfiguration="MyServiceTypeBehaviors"> <endpoint address="basic" binding
  • Re: C# Call Web User Control Method Dynamically

    Yes, this was the answer. I've created this class (WebUserControl): public class WebUserControl : System.Web.UI.UserControl { public WebUserControl() { } // Save Data to Session public virtual void SaveControl() { } } public class WebUserControl : System.Web.UI.UserControl { public WebUserControl() { } // Save Data to Session public virtual void SaveControl() { } } And then my usercontrols inherit from this base class, and override the "SaveControl" method to save my objects to session
    Posted to Web Forms (Forum) by dvd.ribeiro on 10/22/2009
  • Re: WCF Service - coexist as Windows and as Web Service?

    Thank you a lot. Best regards,
    Posted to WCF REST Starter Kit (Forum) by dvd.ribeiro on 10/19/2009
  • WCF Service - coexist as Windows and as Web Service?

    Hi, I have a WCF simple service (calculator), and I created the code for it as a Windows Service. It has the interface, the service, and a windowsservice.cs class like this: public class CalculatorWindowsService : ServiceBase { public ServiceHost serviceHost = null; public CalculatorWindowsService() { // Name the Windows Service ServiceName = "WCFWindowsCalculatorService"; } public static void Main() { ServiceBase.Run(new CalculatorWindowsService()); } // Start the Windows service. protected
    Posted to WCF REST Starter Kit (Forum) by dvd.ribeiro on 10/14/2009
  • C# DataTable.DefaultView.Sort and GridView - not sorting well

    Hi, I have a DataTable, something like this: ID TEXT LINES 1 MyText1 1 2 MyText2 0 8 MyText8 133 9 MyText9 1 10 MyText10 3 And I want to order the DataTable By the column LINES. So, I apply this code (My DataTable's name is dt): dt.DefaultView.Sort = "[LINES] ASC"; GridView1.DataSource = dt; GridView1.DataBind(); And the result on my screen is: ID TEXT LINES 2 MyText2 0 1 MyText1 1 9 MyText9 1 8 MyText8 133 10 MyText10 3 So, the Row which contains the LINES = 3, should be before the
  • Re: C# ImageButton Add Attributes on OnClick Event not working

    I understand your code, and its useful. However, my purpose is: When I press ImgBtnForward, after that, anytime I press it, it throws a Javascript code. By other words: Press 1st time: executes server-side OnClick event Press 2nd time: executes javascript code AND OnClick event I appreciate your opinions and your help, thank you for your constant support! However I'm not been able to solve this situation, even after seeking for the solution!
    Posted to Web Forms (Forum) by dvd.ribeiro on 8/4/2009
Page 1 of 24 (234 items) 1 2 3 4 5 Next > ... Last »