in Education by
Since a while I am facing the following error when trying to launch any kind of application with the Azure Emulator: Microsoft Azure Tools: Method not found: 'Void Microsoft.WindowsAzure.ServiceModel.Service.set_IsSLBPartialGS(Microsoft.WindowsAzure.ServiceModel.Expression)'. A restart of my machine usually solves this for a while, but I tend to run into this problem daily, and if I see this warning once, there's no way to get around it without a reboot. Sadly, I can also not find a lot of documentation, if any. I am using the Azure Tools V2.9. Does anyone have a solution, or at least a hint as to what this could be? JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
Problem: The Azure SDK v2.9 is shipped with a mismatched version of assemblies. One of the assemblies is missing a setter for the property called IsSLBPartialGS. Fix: Copy the 2 assemblies Microsoft.WindowsAzure.ServiceModel.dll and Microsoft.WindowsAzure.ServiceModel.Comon.dll from: "C:\Program Files\Microsoft SDKs\Azure\Emulator" to: "C:\Program Files\Microsoft SDKs\Azure\Emulator\devfabric" Note that you'll need admin rights for this operation. I recommend making a backup before overwriting any assemblies. How the I found the fix: I wrote my own decompiler and symbol inspector to in order to compare assemblies and their contents. After comparing multiple folders, I found that the Microsoft.Windows.Azure.ServiceModel.dll in the Emulator folder has the AssemblyFileVersion: 1.0.6696.103 (rd_sm.180206-1102) while the one in the DevFabric folder is version: 1.0.6696.47 (rd_sm.160421-1505) Note that both AssemblyVersion's are the same (as shown in .NetReflector to be 1.0.0.0), however the AssemblyFileVersions are different. Looking further between the differences in the decompiled code from my program, I found that the assembly in the DevFabric (which is a slightly older version) is missing some key classes/methods/properties including the following: See picture of code difference

Related questions

0 votes
    import re text = 'The quick. black n brown? fox jumps*over the lazy dog.' print(re.split('; | ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 26, 2022 in Education by JackTerrance
0 votes
    import re text = 'The quick. black n brown? fox jumps*over the lazy dog.' print(re.split('; | ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 26, 2022 in Education by JackTerrance
0 votes
    import re text = 'The quick. black n brown? fox jumps*over the lazy dog.' print(re.split('; | ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 26, 2022 in Education by JackTerrance
0 votes
    import re text = 'The quick. black n brown? fox jumps*over the lazy dog.' print(re.split('; | ... , JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 24, 2022 in Education by JackTerrance
0 votes
    Q)Which is not life cycle method of Servlet ? * service ( ) delete ( ) init ( ) doPost ( ) Select the correct answer from above options...
asked Dec 19, 2021 in Education by JackTerrance
0 votes
    Q)Which is not life cycle method of Servlet ? * service ( ) delete ( ) init ( ) doPost ( ) Select the correct answer from above options...
asked Dec 18, 2021 in Education by JackTerrance
0 votes
    We are trying to run automated tests using Microsoft Test Manager 2015. We've almost reached our goal. This ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 8, 2022 in Education by JackTerrance
0 votes
    My application sends email using Microsoft Graph. We followed the documentation, this was working as expected for ... for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 17, 2022 in Education by JackTerrance
0 votes
    I am receiving the error "'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine" ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 16, 2022 in Education by JackTerrance
0 votes
    Which actions can you perform with Microsoft Azure Active Directory Connect but not with Microsoft Azure Active Directory ... . (4)Connect to multiple on-premises forests....
asked Sep 23, 2021 in Technology by JackTerrance
0 votes
    Can renewal notifications be in Microsoft Teams and not email?...
asked Mar 10, 2021 in Technology by JackTerrance
0 votes
    I want create expression with reflection in c#. I am target script is: using (var service = new ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 14, 2022 in Education by JackTerrance
0 votes
    Simplify the Boolean expression using algebraic method (A’+B)(A+B) Select the correct answer from above options...
asked Dec 12, 2021 in Education by JackTerrance
0 votes
    I write this code in R to produce a csv file from my diff function, but I'm getting that error. for(girdi1 in 1:304) { print(girdi1) meslek1...
asked Jun 2, 2022 in Education by JackTerrance
0 votes
    I am new to spring-maven-hibernate and i cannot solve this following error here is my console output. ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 1, 2022 in Education by JackTerrance
...