Example #1
0
def quickbooksServer():
    """Interface to QuickBooks server responding to  *post* requests to */quickbooks/server.asmx*.
    
    (Part of QuickBooks protocol, see module CntlrQuickBooks.)
    """
    from arelle import CntlrQuickBooks
    response.content_type = 'text/xml; charset=UTF-8'
    return CntlrQuickBooks.server(cntlr, request.body, request.urlparts)
Example #2
0
def quickbooksServer():
    """Interface to QuickBooks server responding to  *post* requests to */quickbooks/server.asmx*.
    
    (Part of QuickBooks protocol, see module CntlrQuickBooks.)
    """
    from arelle import CntlrQuickBooks
    response.content_type = 'text/xml; charset=UTF-8'
    return CntlrQuickBooks.server(cntlr, request.body, request.urlparts)
Example #3
0
def quickbooksServer():
    from arelle import CntlrQuickBooks
    response.content_type = 'text/xml; charset=UTF-8'
    return CntlrQuickBooks.server(cntlr, request.body, request.urlparts)