Posts by Carlos Soares • 12 points
2 posts
-
-2
votes2
answers340
viewsA: How to communicate with SOAP webservice
Good morning. Follow example: public XmlDocument GetResultservice(XmlDocument envelope, string url) { try { HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url); byte[] buffer2 =…
-
0
votes1
answer25
viewsA: Two tables using Where
Use the clause no exists or not in: select * from perguntas a where 1 = 1 and not exists( select * from perguntas_respondidas b whre 1 = 1 and b.id_pergunta = a.id_pergunta and b.id_aluno = 12);…