Xamlparse Exception occured - xamlparseexception

I am getting this error again and again in silver light code .It says, The invocation of the constructor on type "LookupControl.SilverCrmLookup" that matches the specified binding constraints threw an exception. Though there is no error in code .

Check your XAML there must be something wrong in there ..

Related

Syntax of JMS Header property

I am getting the an error while executing the code below
jmsMsg.setStringProperty("MessageHeader.ServiceName","MyService");
The error is
java.lang.IllegalArgumentException: The property name 'MessageHeader.ServiceName' is not a valid java identifier.
But as per this post! my property name is a valid one.
What is going wrong here?
I don't think it likes the . (dot) character in the name. Can you can that to something like underscore and see if that works? I get a false when running Character.isJavaIdentifierPart('c').

If an exception pointer is thrown, can EXPECT_THROW in google test capture this exception?

For example, I have a code like:
TEST_F(Testmyexception, testthrownexception)
{
EXPECT_THROW(throw new myexception(), myexception);
}
After compiling and running, it gives an error: Actual: it throws a different type.
Does anynone know the answer?
Thanks,
You're throwing a pointer to a myexception, so you have to expect a pointer in the check:
EXPECT_THROW(throw new myexception(), myexception*);
I think you want:
EXPECT_THROW(throw std::underflow_error(""), std::underflow_error);
BTW the syntax to throw an instance of myexception is:
throw myexception();
the "new" keyword should not be used here.

System.Runtime.InteropServices.MarshalDirectiveException occured

I wrote a very simple code that reads and writes from a card. I got an error:
An unhandled exception of type
'System.Runtime.InteropServices.MarshalDirectiveException' occured in
ReadandWrite.exe
Additional information: PInvoke restriction: can not return variants.
Code Snippet:
Console.WriteLine("Address = 0x3c3, Value = 0x", MX4.r_1byte(963).ToString)
I am trying to understand the error and how to fix it.
Sounds like you're forgetting to declare an Interop Type for one or more of your Public methods/properties. See this MSDN thread.

Mono compilation error CS0121: The call is ambiguous between the following methods or properties

I get the following compilation error in Monodevelop:
Error CS0121: The call is ambiguous between the following methods or properties:
'System.Linq.Enumerable.ToArray<AudioBitrateCalculationStream>(this System.Collections.Generic.IEnumerable<AudioBitrateCalculationStream>)' and
'System.Linq.Enumerable.ToArray<AudioBitrateCalculationStream>(this System.Collections.Generic.IEnumerable<AudioBitrateCalculationStream>)' (CS0121)
Both definitions are exactly the same. I cannot understand what the issue is. Internet search does not help.

xml parser terminated Objective-C

I want to pars my xml file in objective-c, but I got an error
*** Terminating app due to uncaught exception 'NSUnknownKeyException', reason:
'[<Presentation1Name 0x74592f0> setValue:forUndefinedKey:]: this class is not key value
coding-compliant for the key slide.'
*** First throw call stack:
(0x1c93012 0x10d0e7e 0x1d1bfb1 0xb7d711 0xafeec8 0xafe9b7 0x5129 0xbb11c7 0x48c65ee
0x48c5f07 0xbaf6d2 0x2008 0x157b7 0x15da7 0x16fab 0x28315 0x2924b 0x1acf8 0x1beedf9
0x1beead0 0x1c08bf5 0x1c08962 0x1c39bb6 0x1c38f44 0x1c38e1b 0x167da 0x1865c 0x1e5d
0x1d85)
libc++abi.dylib: terminate called throwing an exception
(lldb)
ment to lowercase presentation , I don"t have an error bu I can not pars the label="presentation1" but when I change it to Upercase P -> Presentation I can pars it but with terminated process
Would you please give me some hint for finding the problem?
aPresentation is your own class so its hard to know exactly what its made up of. However your error is coming up when you try to do (unless there is more code that your not showing) :
[aPresentation setValue:currentElementValue forKey:elementName];
here you are saying you have a property in the object aPresentation with the name elementName; specifically your error is saying there is no property with the name "slide"
Is there a property (variable) with the name "slide"? Apparently not.
I would suggest hard coding what the elementName is because apparently they are not lining up with your class.
According to the xml your property (within aPresentation) should be named "slides" so either rename the property in your class to slides or just change element name into what you know it to be.
[aPresentation setValue:currentElementValue forKey:#"slideLabel"];
some of this is guess work without seeing the class structure of Presentation1Name
I would also like to point out some conventions you are not following which makes this code very hard to read. Property names should be capitalized (first letter), including numbers in your class names is ok but not used very often and probably not needed in this case. you are checking if the elementName is Slides or slide and really that stuff shouldnt change and you should be able to remove one of those statements. i would also recommend to always use brackets, some of your else statments dont