Skip to content
  • ComboBox Style Border Brush

    WPF css wpf wcf question
    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • WCF UnobservedTaskException

    C# csharp question wpf wcf sysadmin
    5
    0 Votes
    5 Posts
    0 Views
    B
    Perfect! That hack really works. (But I still will need some time to find out how it works...) :thumbsup: Oh sanctissimi Wilhelmus, Theodorus, et Fredericus!
  • Why I am awesome today in 2016

    The Lounge csharp javascript wcf linq com
    11
    0 Votes
    11 Posts
    0 Views
    F
    Almost. I received a message on one of my pagers (I had to carry two identical pagers, for two systems I supported, but with the same message tone. I was constantly checking the wrong one first.) to call a particular number... guess who's number that was! :wtf: - I would love to change the world, but they won’t give me the source code.
  • Back to .NET Framework

    The Lounge csharp javascript dotnet wcf asp-net
    9
    0 Votes
    9 Posts
    0 Views
    Sander RosselS
    #realJSOP wrote: So how is the crappy data format affecting the usability of .net framework vs .net core? It isn't. I just had some issues going back to .NET Framework, but, unrelated, that wasn't my biggest problem because that is the data format. #realJSOP wrote: How is .net core a panacea? I wouldn't call it a panacea, it has its issues (like no WCF/SOAP support). But it comes with DI out of the box, it's right there and all your need to do is add a few lines of services.AddTransient<ISomeService, SomeService>(); The same goes for logging, just add some loggers through extensions and inject ILogger. Or EF Core for that matter (turned out I can just use EF Core in .NET Framework too). And the configuration is read from a JSON file, and nowhere has it been as big as my smallest .NET Framework XML config file. It's also super easy to map JSON objects to .NET classes, so instead of putting everything in <appSettings> just add "SomeSetting": { "SomeSubSetting": { "SomeSubSubSetting": [ "v1", "v2" ] } } and it works. And with the ConfigurationBuilder I can just add builder.AddAzureKeyVault("[uri]"); and it'll add all my KV secrets like they were in my config file to begin with. Maybe it's not so much .NET Framework, but WCF, which is rather archaic in 2019 (no easy support for DI, so I had to use Unity or Windsor or MapSomething, went with a Unity plugin). I have it all set up now, but it cost me a while to figure it out. Best, Sander sanderrossel.com Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    1 Posts
    1 Views
    No one has replied
  • 0 Votes
    9 Posts
    7 Views
    Z
    This is the second time the same guy has done it. Look on the next page and he has another one. Hasn't learned. :doh: Social Media - A platform that makes it easier for the crazies to find each other. Everyone is born right handed. Only the strongest overcome it. Fight for left-handed rights and hand equality.
  • Security schmecurity!

    The Lounge csharp javascript wcf linq com
    16
    0 Votes
    16 Posts
    0 Views
    Sander RosselS
    Isn't it even against EU regulations now with GDPR and all? According to this blog it is...[^] Best, Sander sanderrossel.com Continuous Integration, Delivery, and Deployment arrgh.js - Bringing LINQ to JavaScript Object-Oriented Programming in C# Succinctly
  • WF and WCF given to the community

    The Insider News csharp java wcf com sysadmin
    2
    0 Votes
    2 Posts
    0 Views
    R
    No, they'll try to flick that bugger onto someone else. "They have a consciousness, they have a life, they have a soul! Damn you! Let the rabbits wear glasses! Save our brothers! Can I get an amen?"
  • 0 Votes
    12 Posts
    0 Views
    M
    "Plans"? Sorry, but WCF itself is a frustrating POS. Latest Article - A 4-Stack rPI Cluster with WiFi-Ethernet Bridging Learning to code with python is like learning to swim with those little arm floaties. It gives you undeserved confidence and will eventually drown you. - DangerBunny Artificial intelligence is the only remedy for natural stupidity. - CDP1802
  • GLobal plastics pact

    The Soapbox html wpf wcf announcement
    4
    0 Votes
    4 Posts
    4 Views
    M
    Yes, disappointing isnt it. Just makes the US look dumb.
  • 0 Votes
    1 Posts
    0 Views
    No one has replied
  • 0 Votes
    1 Posts
    4 Views
    No one has replied
  • 0 Votes
    3 Posts
    0 Views
    OriginalGriffO
    Two of them are four years old, and it's pretty much impossible to prove who plagiarised who after that time. :sigh: 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!
  • DataGrid Binding Problem

    WPF wpf wcf algorithms help
    10
    0 Votes
    10 Posts
    3 Views
    Richard DeemingR
    Looks like it's a known bug that dates back to 2009: Problems binding to SelectedValue with Microsoft’s WPF DataGrid | Nigel Spencer's Blog[^] c# - Bug in WPF DataGrid - Stack Overflow[^] The workaround seems to be to use a custom converter on the SelectedItem binding. "These people looked deep within my soul and assigned me a number based on the order in which I joined." - Homer
  • WPF DataGrid ComboBox Column

    WPF wpf csharp wcf help question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • DataGrid Binding Problem

    WPF help wpf wcf
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • 0 Votes
    4 Posts
    0 Views
    J
    I don't know. It looks like your still using the original models or classes to me and not the modified ones. I wrote mine like this, but used serialized classes and not actual XML Then tested it calling the API in the browser, and getting that white and blue page that shows the all the WSDL services. I remember seeing my class outputted on the screen, but can't remember if it was XML. But I wrote a Win App to call this web service and it worked really well. Public Function customers\_load( ByVal CustomerRequest As ws_customers_Request) As ws_customers_Response Dim customer As New ws\_customers\_Response Dim customerList As List(Of ws\_customers\_list) = Nothing Dim dwXCode As Integer = crm\_ef\_login.administrator\_Login( CustomerRequest.Credentials\_Key, CustomerRequest.Credentials\_Password ) If (0 = dwXCode) Then If CustomerRequest.PageIndex = 0 Then CustomerRequest.PageIndex = 1 If CustomerRequest.PageSize = 0 Then CustomerRequest.PageSize = 25 Dim m\_count As Integer = crm\_ws\_ef\_customers.customers\_Load( CustomerRequest.PageIndex, CustomerRequest.PageSize, customerList ) If (m\_count > 0) Then customer.response\_Code = "OK" customer.response\_Text = m\_count & " subscribers have loaded successfully" customer.customerList = customerList Else customer.response\_Code = "E001" customer.response\_Text = "No subscribers exist in the database" customer.customerList = customerList End If Else customer.response\_Code = "E000" customer.response\_Text = "Failed Authentication" customer.customerList = Nothing End If Return customer End Function Public Class ws_customers_Response Private m\_response\_Code As String Private m\_response\_Text As String Private m\_customerList As List(Of ws\_customers\_list) Public Property response\_Code As String Get Return m\_response\_Code End Get Set(value As String) m\_response\_Code = value End Set End Property Public Property response\_Text As String Get Return m\_response\_Text End Get Set(value As String) m\_response\_Text = val
  • 0 Votes
    2 Posts
    0 Views
    J
    . "the debugger doesn't tell me anything because this code compiles just fine" - random QA comment "Facebook is where you tell lies to your friends. Twitter is where you tell the truth to strangers." - chriselst "I don't drink any more... then again, I don't drink any less." - Mike Mullikins uncle
  • 0 Votes
    1 Posts
    0 Views
    No one has replied