How to send XML from NFE consuming SEFAZ webservice

0

Recently colleague Rafael Corazzi posted a routine to send the XML consuming Sefaz webservice .

At one point in the routine, it instantiates a class:

SefazWebRequest request = new SefazWebRequest();

I'm using this example in my project, and I'd like to know where this class is set, or how to reference it in my project.

Thank you!

    
asked by anonymous 29.12.2014 / 19:21

1 answer

3

SefazWebRequest is possibly the result of the class generated by Visual Studio for this WSDL:

  

link

In this answer I'm teaching you how to generate this class .

    
29.12.2014 / 19:37