我已经解析了 PNAgent.dtd使用 Delphi 2010 中的 XML 数据绑定(bind)向导从 Citrix Web 界面获取文件,this是结果单位。
然后我尝试用它读取以下 XML:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE PNAgent_Configuration SYSTEM "PNAgent.dtd"[]>
<PNAgent_Configuration xmlns:xsi="http://www.w3.org/2000/10/XMLSchema-instance">
<FolderDisplay>
<StartMenuDisplay>
<Enabled>true</Enabled>
<RootFolder root="programs">
</RootFolder>
</StartMenuDisplay>
<DesktopDisplay>
<Enabled>false</Enabled>
<Icon>
<Name>
</Name>
</Icon>
</DesktopDisplay>
<SystemTrayMenuDisplay>
<Enabled>true</Enabled>
</SystemTrayMenuDisplay>
</FolderDisplay>
<DesktopIntegration>
<StartMenu>add</StartMenu>
<Desktop>add</Desktop>
</DesktopIntegration>
<ConfigurationFile>
<Location modifiable="true" forcedefault="false" replaceServerLocation="true" RedirectNow="false">http://2003xa/Citrix/PNAgent/config.xml</Location>
<Refresh>
<OnApplicationStart>false</OnApplicationStart>
<OnResourceRequest>false</OnResourceRequest>
<Poll>
<Enabled>false</Enabled>
<Period>8</Period>
</Poll>
</Refresh>
</ConfigurationFile>
<Request>
<Enumeration>
<Location replaceServerLocation="true" modifiable="true" forcedefault="false" RedirectNow="false">http://2003xa/Citrix/PNAgent/enum.aspx</Location>
<Smartcard_Location replaceServerLocation="true">https://2003xa/Citrix/PNAgent/smartcard_enum.aspx</Smartcard_Location>
<Integrated_Location replaceServerLocation="true">http://2003xa/Citrix/PNAgent/integrated_enum.aspx</Integrated_Location>
<Refresh>
<OnApplicationStart modifiable="false" forcedefault="true">true</OnApplicationStart>
<OnResourceRequest modifiable="false" forcedefault="true">false</OnResourceRequest>
<Poll modifiable="false" forcedefault="true">
<Enabled>true</Enabled>
<Period>6</Period>
</Poll>
</Refresh>
</Enumeration>
<Resource>
<Location replaceServerLocation="true" modifiable="true" forcedefault="false" RedirectNow="false">http://2003xa/Citrix/PNAgent/launch.aspx</Location>
<Smartcard_Location replaceServerLocation="true">https://2003xa/Citrix/PNAgent/smartcard_launch.aspx</Smartcard_Location>
<Integrated_Location replaceServerLocation="true">http://2003xa/Citrix/PNAgent/integrated_launch.aspx</Integrated_Location>
</Resource>
<Reconnect>
<Location replaceServerLocation="true" modifiable="true" forcedefault="false" RedirectNow="false">http://2003xa/Citrix/PNAgent/reconnect.aspx</Location>
<Smartcard_Location replaceServerLocation="true">https://2003xa/Citrix/PNAgent/smartcard_reconnect.aspx</Smartcard_Location>
<Integrated_Location replaceServerLocation="true">http://2003xa/Citrix/PNAgent/integrated_reconnect.aspx</Integrated_Location>
</Reconnect>
<Change_Password>
<Location replaceServerLocation="true" modifiable="true" forcedefault="false" RedirectNow="false">http://2003xa/Citrix/PNAgent/change_password.aspx</Location>
</Change_Password>
<MachineControl>
<Location replaceServerLocation="true">http://2003xa/Citrix/PNAgent/desktopControl.aspx</Location>
<Smartcard_Location replaceServerLocation="true">https://2003xa/Citrix/PNAgent/smartcard_desktopControl.aspx</Smartcard_Location>
<Integrated_Location replaceServerLocation="true">http://2003xa/Citrix/PNAgent/integrated_desktopControl.aspx</Integrated_Location>
</MachineControl>
</Request>
<Failover>
</Failover>
<Logon>
<LogonMethod>prompt</LogonMethod>
<EnableSmartcardPromptAutoLogon>false</EnableSmartcardPromptAutoLogon>
<EnableSavePassword>false</EnableSavePassword>
<EnableKerberos>false</EnableKerberos>
<SupportNDS>false</SupportNDS>
<NDS_Settings>
<DefaultTree>
</DefaultTree>
</NDS_Settings>
<CaptureSmartCardPin>false</CaptureSmartCardPin>
</Logon>
<ChangePassword>
<Allow>Never</Allow>
<Method>Direct-Only</Method>
</ChangePassword>
<UserInterface>
<ServerSettings>true</ServerSettings>
<FolderDisplaySettings>true</FolderDisplaySettings>
<RefreshSettings>false</RefreshSettings>
<ReconnectSettings>true</ReconnectSettings>
</UserInterface>
<ReconnectOptions>
<ReconnectFromLogon>
<Disconnected>true</Disconnected>
<Active>true</Active>
</ReconnectFromLogon>
<ReconnectFromButton>
<Disconnected>true</Disconnected>
<Active>true</Active>
</ReconnectFromButton>
</ReconnectOptions>
<FileCleanup>
<Logoff>false</Logoff>
<Exit>false</Exit>
<RefreshApp directoryDepth="0">true</RefreshApp>
</FileCleanup>
<ICA_Options>
<DisplaySize>
<Options>
<Mode>seamless</Mode>
<Mode>fullscreen</Mode>
<Dimension>
<Width>640</Width>
<Height>480</Height>
</Dimension>
<Dimension>
<Width>800</Width>
<Height>600</Height>
</Dimension>
<Dimension>
<Width>1024</Width>
<Height>768</Height>
</Dimension>
<Dimension>
<Width>1280</Width>
<Height>1024</Height>
</Dimension>
<Dimension>
<Width>1600</Width>
<Height>1200</Height>
</Dimension>
</Options>
</DisplaySize>
<ColorDepth>
<Options>4</Options>
<Options>8</Options>
</ColorDepth>
<Audio>
<Options>high</Options>
<Options>medium</Options>
<Options>low</Options>
<Options>off</Options>
</Audio>
<TransparentKeyPassthrough>
<Options>local</Options>
<Options>remote</Options>
<Options>fullscreenonly</Options>
</TransparentKeyPassthrough>
<SpecialFolderRedirection modifiable="false">
<Enabled>false</Enabled>
</SpecialFolderRedirection>
</ICA_Options>
<AppAccess>
<AppAccessMethod>Remote</AppAccessMethod>
</AppAccess>
</PNAgent_Configuration>
为什么 PNAgent.Request.Enumeration.Location.ReplaceServerLocation 是一个空字符串而不是我期望的“http://2003xa/Citrix/PNAgent/enum.aspx”?
procedure TForm1.Button3Click(Sender: TObject);
var
XML: IXMLDocument;
PNAgent: IXMLPNAgent_ConfigurationType;
begin
XML := TXMlDocument.Create(nil);
XML.LoadFromFile('config.xml');
PNAgent := NewPNAgent_Configuration;
PNAgent.Text := XML.XML.Text;
Memo1.Lines.Add(Format('Server Location: %s', [PNAgent.Request.Enumeration.Location.ReplaceServerLocation]));
当我检查 PNAgent.Request.XML 的值时,它显示如下(似乎缺少值):
'<Request><Enumeration><Location replaceServerLocation=""/></Enumeration></Request>'
最佳答案
当我注意到除了 LoadXMLDocument 之外,生成的单元中还有一个 LoadPNAgent_Configuration 时,我想测试 TLama 的答案。当我尝试时,它完美运行!
procedure TForm1.Button3Click(Sender: TObject);
var
XML: IXMLDocument;
PNAgent: IXMLPNAgent_ConfigurationType;
begin
PNAgent := LoadPNAgent_Configuration('config.xml');
Memo1.Lines.Add(Format('Server Location: %s', [PNAgent.Request.Enumeration.Location.NodeValue]));
end;
实现是:
function LoadPNAgent_Configuration(const FileName: string): IXMLPNAgent_ConfigurationType;
begin
Result := LoadXMLDocument(FileName).GetDocBinding('PNAgent_Configuration', TXMLPNAgent_ConfigurationType, TargetNamespace) as IXMLPNAgent_ConfigurationType;
end;
关于xml - 解析 XML 数据绑定(bind)向导时值为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10650842/
我有一个字符串input="maybe(thisis|thatwas)some((nice|ugly)(day|night)|(strange(weather|time)))"Ruby中解析该字符串的最佳方法是什么?我的意思是脚本应该能够像这样构建句子:maybethisissomeuglynightmaybethatwassomenicenightmaybethiswassomestrangetime等等,你明白了......我应该一个字符一个字符地读取字符串并构建一个带有堆栈的状态机来存储括号值以供以后计算,还是有更好的方法?也许为此目的准备了一个开箱即用的库?
我主要使用Ruby来执行此操作,但到目前为止我的攻击计划如下:使用gemsrdf、rdf-rdfa和rdf-microdata或mida来解析给定任何URI的数据。我认为最好映射到像schema.org这样的统一模式,例如使用这个yaml文件,它试图描述数据词汇表和opengraph到schema.org之间的转换:#SchemaXtoschema.orgconversion#data-vocabularyDV:name:namestreet-address:streetAddressregion:addressRegionlocality:addressLocalityphoto:i
我正在使用ruby1.9解析以下带有MacRoman字符的csv文件#encoding:ISO-8859-1#csv_parse.csvName,main-dialogue"Marceu","Giveittohimóhe,hiswife."我做了以下解析。require'csv'input_string=File.read("../csv_parse.rb").force_encoding("ISO-8859-1").encode("UTF-8")#=>"Name,main-dialogue\r\n\"Marceu\",\"Giveittohim\x97he,hiswife.\"\
我有一个对象has_many应呈现为xml的子对象。这不是问题。我的问题是我创建了一个Hash包含此数据,就像解析器需要它一样。但是rails自动将整个文件包含在.........我需要摆脱type="array"和我该如何处理?我没有在文档中找到任何内容。 最佳答案 我遇到了同样的问题;这是我的XML:我在用这个:entries.to_xml将散列数据转换为XML,但这会将条目的数据包装到中所以我修改了:entries.to_xml(root:"Contacts")但这仍然将转换后的XML包装在“联系人”中,将我的XML代码修改为
我希望我的UserPrice模型的属性在它们为空或不验证数值时默认为0。这些属性是tax_rate、shipping_cost和price。classCreateUserPrices8,:scale=>2t.decimal:tax_rate,:precision=>8,:scale=>2t.decimal:shipping_cost,:precision=>8,:scale=>2endendend起初,我将所有3列的:default=>0放在表格中,但我不想要这样,因为它已经填充了字段,我想使用占位符。这是我的UserPrice模型:classUserPrice回答before_val
它不等于主线程的binding,这个toplevel作用域是什么?此作用域与主线程中的binding有何不同?>ruby-e'putsTOPLEVEL_BINDING===binding'false 最佳答案 事实是,TOPLEVEL_BINDING始终引用Binding的预定义全局实例,而Kernel#binding创建的新实例>Binding每次封装当前执行上下文。在顶层,它们都包含相同的绑定(bind),但它们不是同一个对象,您无法使用==或===测试它们的绑定(bind)相等性。putsTOPLEVEL_BINDINGput
有时我需要处理键/值数据。我不喜欢使用数组,因为它们在大小上没有限制(很容易不小心添加超过2个项目,而且您最终需要稍后验证大小)。此外,0和1的索引变成了魔数(MagicNumber),并且在传达含义方面做得很差(“当我说0时,我的意思是head...”)。散列也不合适,因为可能会不小心添加额外的条目。我写了下面的类来解决这个问题:classPairattr_accessor:head,:taildefinitialize(h,t)@head,@tail=h,tendend它工作得很好并且解决了问题,但我很想知道:Ruby标准库是否已经带有这样一个类? 最佳
简而言之错误:NOTE:Gem::SourceIndex#add_specisdeprecated,useSpecification.add_spec.Itwillberemovedonorafter2011-11-01.Gem::SourceIndex#add_speccalledfrom/opt/local/lib/ruby/site_ruby/1.8/rubygems/source_index.rb:91./opt/local/lib/ruby/gems/1.8/gems/rails-2.3.8/lib/rails/gem_dependency.rb:275:in`==':und
我正在尝试使用Curbgem执行以下POST以解析云curl-XPOST\-H"X-Parse-Application-Id:PARSE_APP_ID"\-H"X-Parse-REST-API-Key:PARSE_API_KEY"\-H"Content-Type:image/jpeg"\--data-binary'@myPicture.jpg'\https://api.parse.com/1/files/pic.jpg用这个:curl=Curl::Easy.new("https://api.parse.com/1/files/lion.jpg")curl.multipart_form_
无论您是想搭建桌面端、WEB端或者移动端APP应用,HOOPSPlatform组件都可以为您提供弹性的3D集成架构,同时,由工业领域3D技术专家组成的HOOPS技术团队也能为您提供技术支持服务。如果您的客户期望有一种在多个平台(桌面/WEB/APP,而且某些客户端是“瘦”客户端)快速、方便地将数据接入到3D应用系统的解决方案,并且当访问数据时,在各个平台上的性能和用户体验保持一致,HOOPSPlatform将帮助您完成。利用HOOPSPlatform,您可以开发在任何环境下的3D基础应用架构。HOOPSPlatform可以帮您打造3D创新型产品,HOOPSSDK包含的技术有:快速且准确的CAD