将 Java 桌面应用程序的多个实例与在线会计(quickbooks、peachtree)集成
我正在编写一个java桌面应用程序,它将连接到服务器并提取各种数据产品。客户将被收取“每次点击”费用(即 Acme 的 Sally 每天提取 1 次到数千次的数据报告,费用为 5 美元——我想要她的姓名、客户 ID、产品价格、日期/时间等)。每次她这样做时都会发送到quickbooks或peachtree)。因此,我们可能会拥有该应用程序的 10 个到最终数百个实例。
有人对我如何处理这个问题有任何建议吗?我只想使用 java,所以理想情况下会有一个用于 Quickbooks 或 peachtree 的 api 来允许这种集成。
谢谢!!! 马克
I am writing a java desktop application which will connect to a server and pull various data products. Customers will be charged a 'per-click' fee (i.e. Sally at Acme pulls a data report costing $5 anywhere from 1 to several thousand times per day -- I want her name, customer ID, product price, date/time, etc. sent to quickbooks or peachtree each time she does this). So we could potentially have anywhere from 10 to eventually several hundred instances of this application out there.
Anyone have any suggestions as to how I might approach this? I want to use ONLY java so ideally there would be an api out there for quickbooks or peachtree that would allow for this integration.
Thanks!!!
Marc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为需要更多细节。第一个问题是 Sally 从哪个应用程序中提取报告,如果是在 Quickbooks 在线中,您如何将该信息从网站获取到您的应用程序。为什么要将这些信息写入 Quickbooks。写入独立数据库可能更容易。听起来您尝试做的事情可能存在一些安全问题,这在浏览器中可能很难克服。
I think more detail is needed. The first problem is what application is Sally pulling a report from, if it is in Quickbooks online, how will you get that information from the website to your application. Why do you want to write that information to Quickbooks. Writing to an independent database may be easier. It sounds like there may be some security concerns with what you are trying to do, that may be difficult to overcome in the browser.