Hi, In the eConnect help file it states that the serialization classes take the objects you create and serialize them to disk creating an xml file then reads back in the xml file to pass to the eConnect_EntryPoint method. This has to be done for each transaction you pass to the eConnect_EntryPoint method. WOW!! That’s a lot of disk I/O !!
Since the eConnect_EntryPoint method requires an xml document stored in a variable why must we serialize it? Why can’t we just create an xml document in code (memory) and pass it to the eConnect_EntryPoint method?? Is this possible? I would really like to avoid all that disk I/O!
G