Skip to content
  • WCF

    C# help csharp wcf security cryptography
    2
    0 Votes
    2 Posts
    0 Views
    realJSOPR
    wcf passing credentials with https transport - Google Search[^] ".45 ACP - because shooting twice is just silly" - JSOP, 2010 ----- You can never have too much ammo - unless you're swimming, or on fire. - JSOP, 2010 ----- When you pry the gun from my cold dead hands, be careful - the barrel will be very hot. - JSOP, 2013
  • 0 Votes
    11 Posts
    0 Views
    M
    Thank u so much vinod, i have modified the code a little and its perfectly working now.Thank u for ur time.
  • aws online training

    The Lounge cloud wcf com hosting security
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • IPV6 Compatibility

    C# help wcf sysadmin xml tutorial
    2
    0 Votes
    2 Posts
    0 Views
    L
    [https://support.microsoft.com/en-ca/help/929852/guidance-for-configuring-ipv6-in-windows-for-advanced-users\](https://support.microsoft.com/en-ca/help/929852/guidance-for-configuring-ipv6-in-windows-for-advanced-users) "(I) am amazed to see myself here rather than there ... now rather than then". ― Blaise Pascal
  • Abuse from another member

    Spam and Abuse Watch wcf com xml question
    3
    0 Votes
    3 Posts
    0 Views
    L
    OriginalGriff wrote: Sewer 1.0 :laugh: :laugh:
  • Binding "SelectedItems" of a Listbox

    WPF help csharp dotnet wpf wcf
    2
    0 Votes
    2 Posts
    2 Views
    L
    [How to: Use the Master-Detail Pattern with Hierarchical Data | Microsoft Docs](https://docs.microsoft.com/en-us/dotnet/framework/wpf/data/how-to-use-the-master-detail-pattern-with-hierarchical-data) "(I) am amazed to see myself here rather than there ... now rather than then". ― Blaise Pascal
  • dynamic URL for soap webservice

    C# wcf testing sales beta-testing xml
    2
    0 Votes
    2 Posts
    0 Views
    D
    This is not really related to C#. You should grab the WSDL from actual serivce URL by appending ?wsdl to it. Add that as a reference to your application code. By doing this, you get accurate service definition and a URL in app.config in your application. You can then generate a mock service using SOAP UI or any other tool of your choice and update the app.config URL to point to mock service. "It is easy to decipher extraterrestrial signals after deciphering Javascript and VB6 themselves.", ISanti[^]
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    3 Posts
    0 Views
    J
    Was that at the "Whiny Conference"? Still cracks me up; "Here's some free food. How dare you eat our free food!"
  • 0 Votes
    3 Posts
    0 Views
    M
    Typical MIT. Basically, one of the lecturers has "discovered" proxy servers, and is going yampy with them. I wanna be a eunuchs developer! Pass me a bread knife!
  • 0 Votes
    3 Posts
    20 Views
    S
    I have it working. Yes ObservableCollections are the way to go but generic Lists are fine as well. The problem is that when the Model is bound the WebService call has not completed so when the List property is bound it is still null. Even when updated at this point the ObservableCollection won't work because it has not been seeded. The solution is to seed the ObservableCollection, or List, on the Page's OnAppearing event and bind the ViewModel as the BindingContext in this event. My solution is below: protected override async void OnAppearing() { var vm = new ViewModel.ViewModel(); if (vm == null) return; HttpClient client = new HttpClient(); HttpResponseMessage responseGet = await client.GetAsync(vm.Geturi); string response = await responseGet.Content.ReadAsStringAsync(); //Xml Parsing var \_objPizzaList = new ObservableCollection(); XDocument doc = XDocument.Parse(response); vm.GetRequest(doc); this.BindingContext = vm; }
  • 0 Votes
    1 Posts
    9 Views
    No one has replied
  • Why "make"?

    C / C++ / MFC question c++ visual-studio wcf xml
    8
    0 Votes
    8 Posts
    0 Views
    CPalliniC
    baid is a IDE , bash is a shell. :rolleyes:
  • 0 Votes
    1 Posts
    9 Views
    No one has replied
  • Hyperlink Context Menu

    WPF help wpf wcf
    4
    0 Votes
    4 Posts
    2 Views
    K
    Figured It Out. I uses a binding proxy. See the answer here: [c# - WPF: Binding a ContextMenu to an MVVM Command - Stack Overflow](https://stackoverflow.com/questions/3583507/wpf-binding-a-contextmenu-to-an-mvvm-command) If it's not broken, fix it until it is. Everything makes sense in someone's mind. Ya can't fix stupid.
  • 0 Votes
    6 Posts
    0 Views
    M
    I have test this and the first form not affected with changes from FormMahasiswa private void FormMahasiswa_Load(object sender, EventArgs e) { Form1.glbData = new DataTable(); Form1.glbData.Columns.Add("Newww", typeof(int)); Form1.glbData.Columns.Add("Drug", typeof(string)); Form1.glbData.Columns.Add("Patient", typeof(string)); Form1.glbData.Columns.Add("Date", typeof(DateTime)); // Here we add five DataRows. Form1.glbData.Rows.Add(25, "Sample Change", "Change ", DateTime.Now); Form1.glbData.Rows.Add(50, "Enebrel", "Sam", DateTime.Now); Form1.glbData.Rows.Add(10, "Hydralazine", "Christoff", DateTime.Now); Form1.glbData.Rows.Add(21, "Combivent", "Janet", DateTime.Now); Form1.glbData.Rows.Add(100, "Dilantin", "Melanie", DateTime.Now); dataGridView1.DataSource = Form1.glbData; } Regards Toha
  • 0 Votes
    5 Posts
    0 Views
    OriginalGriffO
    And a trivial Google (using part of your last sentence as the search string) would have told you anyway: importing the WSDL into the C - Google Search[^] The top link is even expanded for you! Quote: Start Visual Studio. On the File menu, select New > Project. ... In the New Project dialog box, enter the desired settings, then click OK. In the Solution Explorer pane, right-click on References. ... In the Add Web Reference dialog box, enter the URL to the web service's WSDL document. Sent from my Amstrad PC 1640 Never throw anything away, Griff Bad command or file name. Bad, bad command! Sit! Stay! Staaaay... AntiTwitter: @DalekDave is now a follower!
  • Xamarin Forms Picker binding

    Mobile wpf mobile wcf architecture announcement
    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • .net 2 BindingSources to same DataTable

    ASP.NET csharp wpf wcf question
    3
    0 Votes
    3 Posts
    0 Views
    R
    Thanks, you are correct, BindingSource is probably specific to win forms and not one of the many shared classes with asp.net. I will repost in the win dev area, this problem is specific to the BindingSource implementation.
  • difference between api and web services

    .NET (Core and Framework) wcf json
    6
    0 Votes
    6 Posts
    2 Views
    S
    API API is the acronym for Application Programming Interface. It is a software interface that allows two applications to interact with each other without any user intervention. APIs provides product or service to communicate with other products and services without having to know how they're implemented. Web Service A Web service is a collection of open protocols and standards which are widely used for exchanging data between systems or applications. Software applications are written using various programming languages and running on multiple platforms. It allows you to use web services to exchange data over computer networks.