草庐IT

c# - NetSuite SuiteTalk "customSearchJoin"从 SOAP XML 响应访问

coder 2024-07-02 原文

我仍在熟悉 NetSuite,但遇到了一个我无法解决的问题。

我正在构建一个 C# 函数以从 NetSuite 的 XML soap 响应中提取信息。此 XML 是保存的搜索调用的结果,其中包含一个标题为 customSearchJoin 的连接部分,我不确定如何访问它。下面我将展示 XML 部分以及我在 C# 函数中访问它的尝试。

我正在尝试访问值为 091736418

的字段

XML 段:

    <platformCore:searchRow xsi:type="tranSales:TransactionSearchRow" xmlns:tranSales="urn:sales_2014_1.transactions.webservices.netsuite.com">
    <tranSales:basic xmlns:platformCommon="urn:common_2014_1.platform.webservices.netsuite.com">
        <platformCommon:dateCreated>
            <platformCore:searchValue>2015-12-17T08:43:00.000-08:00</platformCore:searchValue>
        </platformCommon:dateCreated>
        <platformCommon:entity>
            <platformCore:searchValue internalId="615"/>
        </platformCommon:entity>
    </tranSales:basic>
    <tranSales:customerMainJoin xmlns:platformCommon="urn:common_2014_1.platform.webservices.netsuite.com">
        <platformCommon:altName>
            <platformCore:searchValue>Some Specific Customer</platformCore:searchValue>
        </platformCommon:altName>
    </tranSales:customerMainJoin>
    <tranSales:itemJoin xmlns:platformCommon="urn:common_2014_1.platform.webservices.netsuite.com">
        <platformCommon:itemId>
            <platformCore:searchValue>Some Product</platformCore:searchValue>
        </platformCommon:itemId>
    </tranSales:itemJoin>
    <tranSales:customSearchJoin xmlns:platformCommon="urn:common_2014_1.platform.webservices.netsuite.com">
        <platformCommon:customizationRef internalId="167" scriptId="custrecord_itmfulfillmentid"/>
        <platformCommon:searchRowBasic xsi:type="platformCommon:CustomRecordSearchRowBasic">
            <platformCommon:recType internalId="25"/>
            <platformCommon:customFieldList>
                <platformCore:customField xsi:type="platformCore:SearchColumnStringCustomField" scriptId="custrecord_ssccbarcode" internalId="169">
                    <platformCore:searchValue>091736418</platformCore:searchValue>
                </platformCore:customField>
            </platformCommon:customFieldList>
        </platformCommon:searchRowBasic>
    </tranSales:customSearchJoin>
</platformCore:searchRow>

C#函数:

    private void testCustomJoinSearch() {

    TransactionSearchAdvanced transSearchAdv = new TransactionSearchAdvanced
    {
        savedSearchScriptId = "customsearch_savedSearchID"
    };

    SearchResult searchResult = _service.search(transSearchAdv);

                if (searchResult.status.isSuccess)
                {
                    Console.WriteLine("Search Success");

                    foreach (TransactionSearchRow transSearchRow in searchResult.searchRowList)
                    {

                        // declare vars
                        string transInternalID = "";
                        string ssccBarcode = "";

                        //normal field
                        transInternalID = transSearchRow.basic. internalId[0].searchValue.internalId.ToString();

                        //joined and custom field ? Not sure this loop is correct
                        foreach (CustomSearchRowBasic customBasicSearchRow in transSearchRow.customSearchJoin)
                        {
                                        // ????

                        };

                        Console.WriteLine("transInternalID {0}", transInternalID);
                        Console.WriteLine("ssccBarcode {0}", ssccBarcode);
                    } // end main search row
                }
                else
                {
                    Console.WriteLine("Search Failure");
                    Console.WriteLine(searchResult.status.statusDetail);
                }
}

最佳答案

试试 xml linq。我修复了缺少一些命名空间定义的 xml,因此我添加了 root,然后关闭了结束标记 platformCore:searchRow 和 root。

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;

namespace ConsoleApplication70
{
    class Program
    {
        static void Main(string[] args)
        {
            string xml =
                "<?xml version=\"1.0\" encoding=\"utf-8\" ?>" +
                "<Root xmlns:platformCore=\"abc\" xmlns:xsi=\"def\">" +
                "<platformCore:searchRow xsi:type=\"tranSales:TransactionSearchRow\" xmlns:tranSales=\"urn:sales_2014_1.transactions.webservices.netsuite.com\">" +
                "<tranSales:basic xmlns:platformCommon=\"urn:common_2014_1.platform.webservices.netsuite.com\">" +
                    "<platformCommon:dateCreated>" +
                        "<platformCore:searchValue>2015-12-17T08:43:00.000-08:00</platformCore:searchValue>" +
                    "</platformCommon:dateCreated>" +
                    "<platformCommon:entity>" +
                        "<platformCore:searchValue internalId=\"615\"/>" +
                    "</platformCommon:entity>" +
                "</tranSales:basic>" +
                "<tranSales:customerMainJoin xmlns:platformCommon=\"urn:common_2014_1.platform.webservices.netsuite.com\">" +
                    "<platformCommon:altName>" +
                        "<platformCore:searchValue>Some Specific Customer</platformCore:searchValue>" +
                    "</platformCommon:altName>" +
                "</tranSales:customerMainJoin>" +
                "<tranSales:itemJoin xmlns:platformCommon=\"urn:common_2014_1.platform.webservices.netsuite.com\">" +
                    "<platformCommon:itemId>" +
                        "<platformCore:searchValue>Some Product</platformCore:searchValue>" +
                    "</platformCommon:itemId>" +
                "</tranSales:itemJoin>" +
                "<tranSales:customSearchJoin xmlns:platformCommon=\"urn:common_2014_1.platform.webservices.netsuite.com\">" +
                    "<platformCommon:customizationRef internalId=\"167\" scriptId=\"custrecord_itmfulfillmentid\"/>" +
                    "<platformCommon:searchRowBasic xsi:type=\"platformCommon:CustomRecordSearchRowBasic\">" +
                        "<platformCommon:recType internalId=\"25\"/>" +
                        "<platformCommon:customFieldList>" +
                            "<platformCore:customField xsi:type=\"platformCore:SearchColumnStringCustomField\" scriptId=\"custrecord_ssccbarcode\" internalId=\"169\">" +
                                "<platformCore:searchValue>091736418</platformCore:searchValue>" +
                            "</platformCore:customField>" +
                        "</platformCommon:customFieldList>" +
                    "</platformCommon:searchRowBasic>" +
                "</tranSales:customSearchJoin>" +
                "</platformCore:searchRow>" +
                "</Root>";

            XDocument doc = XDocument.Parse(xml);

            string searchvalue = doc.Descendants().Where(x => x.Name.LocalName == "customSearchJoin")
                .Descendants().Where(y => y.Name.LocalName == "searchValue").Select(z => (string)z).FirstOrDefault();

        }
    }
}

关于c# - NetSuite SuiteTalk "customSearchJoin"从 SOAP XML 响应访问,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34881273/

有关c# - NetSuite SuiteTalk "customSearchJoin"从 SOAP XML 响应访问的更多相关文章

  1. ruby - 为什么我可以在 Ruby 中使用 Object#send 访问私有(private)/ protected 方法? - 2

    类classAprivatedeffooputs:fooendpublicdefbarputs:barendprivatedefzimputs:zimendprotecteddefdibputs:dibendendA的实例a=A.new测试a.foorescueputs:faila.barrescueputs:faila.zimrescueputs:faila.dibrescueputs:faila.gazrescueputs:fail测试输出failbarfailfailfail.发送测试[:foo,:bar,:zim,:dib,:gaz].each{|m|a.send(m)resc

  2. ruby-on-rails - rails : "missing partial" when calling 'render' in RSpec test - 2

    我正在尝试测试是否存在表单。我是Rails新手。我的new.html.erb_spec.rb文件的内容是:require'spec_helper'describe"messages/new.html.erb"doit"shouldrendertheform"dorender'/messages/new.html.erb'reponse.shouldhave_form_putting_to(@message)with_submit_buttonendendView本身,new.html.erb,有代码:当我运行rspec时,它失败了:1)messages/new.html.erbshou

  3. ruby-on-rails - 由于 "wkhtmltopdf",PDFKIT 显然无法正常工作 - 2

    我在从html页面生成PDF时遇到问题。我正在使用PDFkit。在安装它的过程中,我注意到我需要wkhtmltopdf。所以我也安装了它。我做了PDFkit的文档所说的一切......现在我在尝试加载PDF时遇到了这个错误。这里是错误:commandfailed:"/usr/local/bin/wkhtmltopdf""--margin-right""0.75in""--page-size""Letter""--margin-top""0.75in""--margin-bottom""0.75in""--encoding""UTF-8""--margin-left""0.75in""-

  4. ruby - 检查 "command"的输出应该包含 NilClass 的意外崩溃 - 2

    为了将Cucumber用于命令行脚本,我按照提供的说明安装了arubagem。它在我的Gemfile中,我可以验证是否安装了正确的版本并且我已经包含了require'aruba/cucumber'在'features/env.rb'中为了确保它能正常工作,我写了以下场景:@announceScenario:Testingcucumber/arubaGivenablankslateThentheoutputfrom"ls-la"shouldcontain"drw"假设事情应该失败。它确实失败了,但失败的原因是错误的:@announceScenario:Testingcucumber/ar

  5. ruby-on-rails - 在混合/模块中覆盖模型的属性访问器 - 2

    我有一个包含模块的模型。我想在模块中覆盖模型的访问器方法。例如:classBlah这显然行不通。有什么想法可以实现吗? 最佳答案 您的代码看起来是正确的。我们正在毫无困难地使用这个确切的模式。如果我没记错的话,Rails使用#method_missing作为属性setter,因此您的模块将优先,阻止ActiveRecord的setter。如果您正在使用ActiveSupport::Concern(参见thisblogpost),那么您的实例方法需要进入一个特殊的模块:classBlah

  6. ruby - 续集在添加关联时访问many_to_many连接表 - 2

    我正在使用Sequel构建一个愿望list系统。我有一个wishlists和itemstable和一个items_wishlists连接表(该名称是续集选择的名称)。items_wishlists表还有一个用于facebookid的额外列(因此我可以存储opengraph操作),这是一个NOTNULL列。我还有Wishlist和Item具有续集many_to_many关联的模型已建立。Wishlist类也有:selectmany_to_many关联的选项设置为select:[:items.*,:items_wishlists__facebook_action_id].有没有一种方法可以

  7. ruby-on-rails - 迷你测试错误 : "NameError: uninitialized constant" - 2

    我遵循MichaelHartl的“RubyonRails教程:学习Web开发”,并创建了检查用户名和电子邮件长度有效性的测试(名称最多50个字符,电子邮件最多255个字符)。test/helpers/application_helper_test.rb的内容是:require'test_helper'classApplicationHelperTest在运行bundleexecraketest时,所有测试都通过了,但我看到以下消息在最后被标记为错误:ERROR["test_full_title_helper",ApplicationHelperTest,1.820016791]test

  8. ruby-on-rails - 相关表上的范围为 "WHERE ... LIKE" - 2

    我正在尝试从Postgresql表(table1)中获取数据,该表由另一个相关表(property)的字段(table2)过滤。在纯SQL中,我会这样编写查询:SELECT*FROMtable1JOINtable2USING(table2_id)WHEREtable2.propertyLIKE'query%'这工作正常:scope:my_scope,->(query){includes(:table2).where("table2.property":query)}但我真正需要的是使用LIKE运算符进行过滤,而不是严格相等。然而,这是行不通的:scope:my_scope,->(que

  9. 使用 ACL 调用 upload_file 时出现 Ruby S3 "Access Denied"错误 - 2

    我正在尝试编写一个将文件上传到AWS并公开该文件的Ruby脚本。我做了以下事情:s3=Aws::S3::Resource.new(credentials:Aws::Credentials.new(KEY,SECRET),region:'us-west-2')obj=s3.bucket('stg-db').object('key')obj.upload_file(filename)这似乎工作正常,除了该文件不是公开可用的,而且我无法获得它的公共(public)URL。但是当我登录到S3时,我可以正常查看我的文件。为了使其公开可用,我将最后一行更改为obj.upload_file(file

  10. ruby-on-rails - 每次我尝试部署时,我都会得到 - (gcloud.preview.app.deploy) 错误响应 : [4] DEADLINE_EXCEEDED - 2

    我是Google云的新手,我正在尝试对其进行首次部署。我的第一个部署是RubyonRails项目。我基本上是在关注thisguideinthegoogleclouddocumentation.唯一的区别是我使用的是我自己的项目,而不是他们提供的“helloworld”项目。这是我的app.yaml文件runtime:customvm:trueentrypoint:bundleexecrackup-p8080-Eproductionconfig.ruresources:cpu:0.5memory_gb:1.3disk_size_gb:10当我转到我的项目目录并运行gcloudprevie

随机推荐