1

我是 netsuite 的新手。我需要在我的实现类中使用 netsuite 进行 upsert 操作。我正在尝试使用 upsert 操作方法(使用 netsuite wsdl 生成)将我的 upsertrequest 对象传递给 netsuite。我需要使用我的凭据和密码将对象传递给网络套件。

我在我的实现中导入了 netsuite 登录类 loginrequest,loginresponse 以使用我的凭据进行登录,

我需要如何通过使用 java 代码将我的凭据传递给 netsuite 来进行登录?我是否需要使用 http 客户端或 SOAP 发送 upsertrequest 对象和凭据进行登录?

例如:emailid:test@gmail.com 密码:test account_id:123

4

1 回答 1

1

您是否看过 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 示例代码

此外, http ://usergroup.netsuite.com 是一个论坛,您可以在其中看到大量示例代码,并且 netsuite 开发人员经常会发布对查询的回复。您可能也想尝试一下。

这些帮助有用?

于 2012-04-25T20:10:13.183 回答