Questions tagged as '.asmx'

0
answers

Error: invalid instruction suffix for 'push'

Good, today programming in asm I found this error and good as are my beginnings in this language after a while searching the internet, I have not found I would like to facilitate the failure I am committing, I have an ubuntu machine 32-bit. code...
asked by 19.05.2017 / 22:27
1
answer

How to receive a POST request

I am connecting to an api which asks me as a final step to receive status notification through a POST, that is, the api sends me a request in POST type. I have developed a web servise in .asmx type [WebService(Namespace = " http://tempuri.org/...
asked by 29.09.2018 / 02:16
1
answer

Configure maxReceivedMessageSize input and output of a web.config of an asmx

please who gives me a hand with the following: I have a .asmx web service, it receives and also sends pdf files (in Byte []), since they are large I need to configure the maxReceivedMessageSize, input manages to configure it by: <system....
asked by 15.10.2016 / 00:59
0
answers

XML read error: poorly formed IIS

I am new to the management of web services I have finished my class product and my webservice.asmx I show the code, well the fact is that when I publish correctly the web service in IIS no there are errors all right, long before returning the...
asked by 23.08.2018 / 10:20
1
answer

asm embedded in C

Before, it was enough to do int main(int argc,char **argv){ char f[]="cadena" asm("mov %0,%%rdi\n\t" "call puts\n\t" ::""r"(f):"rdi") } and it worked, but not now. I tried to load the symbol __GLOBAL_OFFEST_TABLE_ (even from...
asked by 17.01.2018 / 15:46
3
answers

Error calling web service (asmx)

I am creating a class that will be the structure that will always return all services (asynchronous calls) public class RespuestaServicio { public bool IsSuccess { get; set; } public string Error { get; set; } public int Codigo { get; set; } p...
asked by 22.02.2017 / 19:32
0
answers

Problem with Web Service ASMX when consuming it from Android

I have a problem with the web service in asmx that saves images and that I consume from an Android app: This is the error it generates:    System.NullReferenceException: Object reference not set as   instance of an object. in   WebS...
asked by 07.12.2016 / 15:20
0
answers

As itero on a byte in asm?

I choose to move by a bit byte to encrypt it, as I do to move by the byte?     
asked by 21.10.2018 / 17:11
0
answers

How to consume an asmx webservice from Java?

I have a webservice implemented as follows on ip 192.168.1.201 and port 888: When I click on invoke, it returns the following: What would be the correct way to collect this information from a Java program? I tried to pobar with...
asked by 24.10.2018 / 16:03