Posts by Vitor Canova • 464 points
6 posts
-
6
votes1
answer4278
viewsQ: How to sign a PDF digitally in C#?
I need to digitally sign one PDF previously created. This PDF is being created through a Web Service who uses the Interop of Office to generate from a Template Office. I already have access to ICP…
-
2
votes1
answer561
viewsA: Problems Xamarin Asynchronous method
As you need to use the asynchronous shape probably what you need is this: using (var client = new Service1Client()) { string resultado = await client.envioPessoaAsync(); } Imagining that you created…
-
1
votes1
answer1086
viewsA: SCRIPT5009: 'Formdata' is not set
Formdata (that is part of the Xmlhttprequest Level 2) is not supported in lower IE versions than IE10 or when you are using some compatibility mode. You can see the support matrix here. But if you…
-
3
votes2
answers408
viewsQ: What is the simplest way to recover certain elements of an XML with Linq?
I got the following XML: <clientes> <cliente> <documentos/> <livros> <livro nome="Nome1"/> <livro nome="Nome2"/> </livros> </cliente> <cliente>…
-
6
votes1
answer674
viewsQ: How to define the culture in a WCF Webservice?
I have a plea WCF rotating in the IIS where the server language/culture is all defined in English. There is no possibility for me to change the server settings so that I could change the culture or…
-
16
votes4
answers13140
viewsA: What is the difference between operators '==' and '==' in Javascript?
The difference is that if used == there will be a coercion of the value for both sides of the expression to have the same type. In the case of === there will be no coercion and so the code below…