我是netsuite的新手。我需要在我的实现类中使用netsuite进行upsert opertaion。我试图使用upsert操作方法(使用netsuite wsdl生成)将我的upsertrequest对象传递给netsuite。我需要使用我的凭据和密码将对象传递给netsuite。
我已经在我的实现中导入了netsuite登录类loginrequest,loginresponse来使用我的凭据进行登录,
如何使用java代码将我的凭据传递给netsuite来进行登录?我是否需要使用http客户端或SOAP发送upsertrequest对象和凭据来登录?
例如: emailid:test@gmail.com 密码:测试 account_id:123
答案 0 :(得分:0)
您是否看过Netsuite提供的示例应用程序?它们是一个非常有用的工具,可能会帮助您回答您的问题。您可以在此处找到它们:http://www.netsuite.com/portal/developers/resources/suitetalk-sample-applications.shtml
据我所知:(我通常使用php与Netsuite进行交互,所以我的知识有限,但我已经使用了几次java) 您需要使用SOAP 来插入对象。通过创建新的NsClientObject登录后,只需在创建对象上调用适当的方法即可。这将自动进行身份验证。
ns = new NSClient();//assumes you have set your credentials in nsclient.properties in the root of the project
ns.callRelevantMethod();
如果您对php代码感兴趣,我的博客上有很多例子(Netsuite sample code)
此外,http://usergroup.netsuite.com是一个论坛,您可以在其中查看大量示例代码,并且netsuite开发人员通常会在查询中发布回复。您可能也想尝试一下。
这有帮助吗?