- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
伙计们!我收到以下错误消息,但我不知道该怎么做。这是一个已知的 net-ldap 错误吗?我试图更新我的 gem ,我已经在互联网上寻找更多信息。第一部分没问题,我从我的 ldap 数据库中获取了我的数据,但最后出现了这个错误。
/usr/local/lib/ruby/gems/1.9.1/gems/net-ldap-0.3.1/lib/net/ber/core_ext/string.rb:23:in
encode': "\x8E" from ASCII-8BIT to UTF-8
raw_utf8_encoded' from /usr/local/lib/ruby/gems/1.9.1/gems/net-ldap-0.3.1/lib/net/ber/core_ext/string.rb:15:in
(Encoding::UndefinedConversionError) from
/usr/local/lib/ruby/gems/1.9.1/gems/net-ldap-0.3.1/lib/net/ber/core_ext/string.rb:23:in
to_ber' from
block in search' from /usr/local/lib/ruby/gems/1.9.1/gems/net-ldap-0.3.1/lib/net/ldap.rb:1367:in
/usr/local/lib/ruby/gems/1.9.1/gems/net-ldap-0.3.1/lib/net/ldap.rb:1396:in
loop' from
search' from /usr/local/lib/ruby/gems/1.9.1/gems/net-ldap-0.3.1/lib/net/ldap.rb:637:in `search'
/usr/local/lib/ruby/gems/1.9.1/gems/net-ldap-0.3.1/lib/net/ldap.rb:1367:in
这是我的代码:
require 'rubygems'
require 'net/ldap'
ldap = Net::LDAP.new
ldap.host = 'xxxxxx'
ldap.authenticate "cn=admin, dc=xxxx, dc=xxxxx, dc=de", "xxxxx!"
#puts ldap.bind
if ldap.bind
# authentication succeeded
else
# authentication failed
# p ldap.get_operation_result
end
filter = Net::LDAP::Filter.eq("uid", "*")
treebase = "xxxxx, dc=xxxxxx, dc=de"
ldap.search(:base => treebase, :filter => filter) do |entry|
puts "DN: #{entry.dn}"
entry.each do |attribute, values|
puts " #{attribute}:"
values.each do |value|
puts " --->#{value}"
end
end
end
最佳答案
net-ldap [1],[2],[3],[4] v0.3.1 中存在很多编码问题。几个补丁已经合并,但遗憾的是,这个伟大的项目似乎半放弃了,并且没有将更改推送到 rubygems。直接从 github 上使用它对我来说效果很好,如果你使用的是 bundler,那么在你的 Gemfile 中粘贴这样的东西很容易:
gem "net-ldap", :git => "git://github.com/ruby-ldap/ruby-net-ldap.git", :ref => '8a182675f4'
1 - https://github.com/ruby-ldap/ruby-net-ldap/pull/41
2 - https://github.com/ruby-ldap/ruby-net-ldap/pull/44
3 - https://github.com/ruby-ldap/ruby-net-ldap/pull/64
4 - https://github.com/ruby-ldap/ruby-net-ldap/pull/55
关于ruby - net ldap - 编码::UndefinedConversionError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11118353/
我正在构建一个使用Chef-DK的Rails应用。 我想要实现的是执行与chef update 相同的代码。 这是代码中有趣的部分: require 'chef-dk/command/update'
我有 somefile 我想使用 base64 进行编码 File.open('data/somefile.edf').read.encoding => # base64_string = Base6
每次尝试将哈希值转换为 JSON 字符串时,我都会收到 Encoding::UndefinedConversionError - "\xC2"from ASCII-8BIT to UTF-8 错误。我
我正在使用以下代码将图像上传到我的 rails 根目录的/public/uploads/文件夹中。 uploaded_io = params[:product_image] File.open(R
伙计们!我收到以下错误消息,但我不知道该怎么做。这是一个已知的 net-ldap 错误吗?我试图更新我的 gem ,我已经在互联网上寻找更多信息。第一部分没问题,我从我的 ldap 数据库中获取了我的
我有一个网站需要加密和存储上传到服务器的二进制文件。上传和存储工作正常,但在尝试写入加密文件时出现此错误: Encoding::UndefinedConversionError ("\xDD" fro
在 Windows 上出现以下错误: Encoding::UndefinedConversionError: "\xEF" from ASCII-8BIT to UTF-8 代码: text = Fi
当我这样做时: require 'open-uri' response = open('some-html-page-url-here') response.read 在某个 url 上我收到以下错误
直到最近,我的机器上一切正常,但几天后我不断收到错误 Encoding::UndefinedConversionError: U+2713 from UTF-8 to US-ASCII 任何时候我发帖
我正在关注 Michael Hartl 的 Ruby on Rails Tutorial .我已经完成了教程,但现在当我尝试运行命令时 bundle exec rspec spec/ 我收到一大堆 E
2.2 和 raisl 4.1。我试图从用户读取 xlsx 文件。 { :multipart => true,:class => 'form-horizontal' }) do |f| %>
当我尝试使用 Mechanize 和 Ruby 2.0 提交文本区域时,我总是得到一个 Encoding::UndefinedConversionError: U+0151 from UTF-8 to
我尝试使用最新版本的 ruby,但是当运行 gem install rails 时,总是出现错误 ERROR: While executing gem ... (Encoding::Undefi
在生产中遇到此错误,但无法弄清楚问题出在哪里。相同的请求适用于本地开发。但生产失败。我正在为移动客户端使用构建 API 错误跟踪 `` Encoding::UndefinedConversionErr
我正在开发一个 Rails API 项目。这是我的代码片段 class PeopleController 最佳答案 我已经多次遇到这个问题,所以我通常会尝试在将其保存到数据库之前删除任何对 UTF-
我正在尝试删除 anchor 链接之间的 52: 52 new 使用这段代码: def self.parse_products product_hash = {} pr
我在保存新联系人时收到以下错误。有没有办法强制转换 "\xC2" 以将其强制保存为 UTF-8 格式? c = Contact.new c.save! Encoding::UndefinedConve
我试图获取这个 CSV-File使用 Net::HTTP。 File.open(file, "w:UTF-8") do |f| content = Net::HTTP.get_response(U
tvdb 中的汉尼拔剧集里有奇怪的角色。 例如: Œuf 于是ruby吐出: ./manifesto.rb:19:in `encode': "\xC3" from ASCII-8BIT to UTF-
我正在尝试使用 Carrierwave 将多个文件上传到一个名为 Post 的记录,其中包含一个名为 images 的 json 属性。但是当我尝试保存记录时,出现了这个错误: (0.5ms)
我是一名优秀的程序员,十分优秀!