You need to sign in to do that
Don't have an account?
Kishore B T 21
How do i send a XML to Tally Server?
Hello Guys,
I have a XML request i need to HIT tally Server, How do I achieve this?
<ENVELOPE>
<HEADER>
<TALLYREQUEST>Export Data</TALLYREQUEST>
</HEADER>
<BODY>
<EXPORTDATA>
<REQUESTDESC>
<REPORTNAME>List of Accounts</REPORTNAME>
<STATICVARIABLES>
<SVEXPORTFORMAT>$$SysName:XML</SVEXPORTFORMAT>
<ACCOUNTTYPE>All Inventory Masters</ACCOUNTTYPE>
</STATICVARIABLES>
</REQUESTDESC>
</EXPORTDATA>
</BODY>
</ENVELOPE>
The Request is also I get in XML?
Please guide me on how to achieve this functionality.
Thanks in Advance.
The inbound request would be an Apex SOAP class (https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_web_services.htm) that your external server would consume.
You can achive this by using the HTTP requests from SFDC. The response also get on XML from tally system.
Refere below example to get this done.
Replace all soap body contant with your tally server content.
Please mark this question is solved if this help you.