similar to: Returning multiple models or models with child rows in AWS

Displaying 20 results from an estimated 20000 matches similar to: "Returning multiple models or models with child rows in AWS"

2008 Apr 10
2
Trouble with trusted domains
Hello list, perhaps someone can guide me, finding out what's going wrong in the following scenario (Active Directory , Samba 3.0.20b same with 3.0.28a): CHILD1.CONTOSO.COM <-trusts-> CONTOSO.COM <-trusts->CHILD2.CONTOSO.COM | | | User: CHILD1\testtest | Samba
2018 Mar 21
0
how to add a child to a child in XML
Hi, XML doesn't use the `$` to access child nodes. Instead use either `[name]` to get a list of children of that name or `[[name]]` to get the just the first child of that name encountered in the genealogy. Thus for your example... > root$child1 NULL > root[['child1']] <child1 name1="A" name2="B" name3="C"/> On the other hand, you might
2018 Mar 21
2
how to add a child to a child in XML
I am trying to add a child to a child using XML package in R. the following fails library(XML) node1 <- c("val1","val2","val3") names(node1) <- c("att1","att2","att3") root <- xmlNode("root", attrs=node1) node2 <- LETTERS[1:3] names(node2) <- paste("name",1:3,sep="") root <-
2006 May 06
1
3.0.23pre1 trusted domain failed
Hi, Recently, upgrade samba from 3.0.14a to 3.0.23pre1. And found trusted domain user couldn't logon to Samba share. The command nsquery to query a user from trusted domain failed also. For example: parent.com Win2003 DC |---Child1.parent.com Win2003 DC |---Child2.parent.com Win2003 DC Kinit OK. Net ads join to Child1 OK. Restart the server with winbindd. Wbinfo -m can display trusted
2016 Aug 16
0
Question about trusted domain list in samba-4.4.x
Hi list, This is my domain enviroment and all DC are windows 2008r2 http://i.imgur.com/8cNOtm2.jpeg When I used samba-4.0.5, I join my box to domain "HC1" , I got trusted domain "CHILD2" in "wbinfo -m". [/share/Public] # wbinfo -m BUILTIN MYBOX HC1 CHILD1 TREEROOT HC2 CHILD2 Then I upgraded my box to samba-4.4.4, I lost CHILD2 in "wbinfo -m".
2018 Mar 22
0
how to add a child to a child in XML
Hi, It's a reasonable question. The answer is that it actually is included, but there are many instances across packages where multiple functions are documented on a single help page. The following brings up such a page... (for XML_3.98-1.9) > library(XML) > ?newXMLNode You can see the same on line... https://www.rdocumentation.org/packages/XML/versions/3.98-1.9/topics/newXMLDoc
2018 Mar 22
2
how to add a child to a child in XML
Big thanks. newXMLNode works great. Wonder why it is not included in the documentation. There is newXMLDoc and newXMLNamespace, but no mention of newXMLNode. Stephen From: Ben Tupper [mailto:btupper at bigelow.org] Sent: Wednesday, March 21, 2018 6:18 PM To: Bond, Stephen Cc: r-help Subject: Re: [R] how to add a child to a child in XML Hi, XML doesn't use the `$` to access child nodes.
2018 Mar 22
1
how to add a child to a child in XML
Just to clarify and hopefully catch the attention of the maintainer: The newXMLNode function is not mentioned in: https://cran.r-project.org/web/packages/XML/XML.pdf which supposedly describes all functions in the package. Stephen From: Ben Tupper [mailto:btupper at bigelow.org] Sent: Thursday, March 22, 2018 10:40 AM To: Bond, Stephen Cc: r-help Subject: Re: [R] how to add a child to a
2016 Jul 27
3
Lost trusted domain in samba-4.4.4
Here is my smb.conf: [/usr/local/samba/var] # cat /etc/config/smb.conf [global] client schannel = false server schannel = false client ipc signing = false client signing = false server signing = false winbind sealed pipes = false require strong key = false passdb backend = smbpasswd workgroup = HC1 security = ADS server string = encrypt passwords = Yes username level = 0 map to guest = Bad User
2016 Jul 27
0
Lost trusted domain in samba-4.4.4
On 27/07/16 10:33, hy wu wrote: > > Here is my smb.conf: > > [/usr/local/samba/var] # cat /etc/config/smb.conf > [global] > > client schannel = false > server schannel = false > client ipc signing = false > client signing = false > server signing = false > winbind sealed pipes = false > require strong key = false > > passdb backend = smbpasswd >
2016 Jul 27
0
Lost trusted domain in samba-4.4.4
On 27/07/16 09:35, hy wu wrote: > Hi list, > > This is my domain enviroment and all DC are windows 2008r2 > > http://i.imgur.com/8cNOtm2.jpeg > > When I used samba-4.0.5, I join my box to domain "HC1" , I got trusted > domain "CHILD2" in "wbinfo -m". > > [/share/Public] # wbinfo -m > BUILTIN > MYBOX > HC1 > CHILD1 >
2006 Aug 14
6
Testing fails with fixtures not when invoked directly
I have three files organization.rb, company.rb, and department.rb. I want to ensure the department always has a company require File.dirname(__FILE__) + ''/../test_helper'' class OrganizationTest < Test::Unit::TestCase fixtures :organizations def setup @smo = organizations(:smo) end def test_department_company_defaults_to_parent org = Department.new(:name =>
2016 Jul 27
2
Lost trusted domain in samba-4.4.4
Hi list, This is my domain enviroment and all DC are windows 2008r2 http://i.imgur.com/8cNOtm2.jpeg When I used samba-4.0.5, I join my box to domain "HC1" , I got trusted domain "CHILD2" in "wbinfo -m". [/share/Public] # wbinfo -m BUILTIN MYBOX HC1 CHILD1 TREEROOT HC2 CHILD2 Then I upgraded my box to samba-4.4.4, I lost CHILD2 in "wbinfo -m".
2011 Jul 05
0
Problem in accessing bucket of my AWS S3 account
I tried to establish connection to my aws s3 account like this in my irb console - AWS::S3::Base.establish_connection!(:access_key_id => ''my access key'', :secret_access_key => ''my secret key'', :server => " s3-ap-southeast-1.amazonaws.com") And it works well and prompt this - => #<AWS::S3::Connection:0x8cd86d0
2006 Jun 06
1
Returning related models with ActionWebService
Hi, I have an ActionWebService set up and I am wondering if it is possible to return related models through its intrinsic support for ActiveRecord. For instance, suppose I have an Author model that has_many Books. I would like to return a particular author and all of their books in one SOAP message. For now, I''ve been deconstructing the ActiveRecord Model and stuffing it all into
2016 Sep 20
0
idmap_ad
See inline comments: On Mon, 19 Sep 2016 17:36:05 -0400 Gaiseric Vandal via samba <samba at lists.samba.org> wrote: > > > I am trying to configure idmap_ad on a linux member server (fedora > core 23, samba 4.3.11) with a Windows 2008 domain controller. The > domain is "MYDOMAIN.COM" with a child domain of > "CHILD1.MYDOMAIN.COM." By default those
2006 Nov 07
4
Samba v3.0.23c + FreeBSD 6.1 - Failed to set servicePrincipalNames
Hello, We recently upgraded to the latest Samba3 version v3.0.23c. If the Samba system and the AD belong to the same domain, I am able to perform a 'net ads join' by supplying either a 'Domain Admins' or a 'Domain Users' credential. However if the Samba system and the AD belong to different domain, I can perform the 'net ads join' by supplying a 'Domain
2019 Dec 03
0
[centos/centos.org] branch master updated: Added AWS as sponsor
This is an automated email from the git hooks/post-receive script. arrfab pushed a commit to branch master in repository centos/centos.org. The following commit(s) were added to refs/heads/master by this push: new 973d90a Added AWS as sponsor 973d90a is described below commit 973d90a1c09ad0ef6efdf200cc0e102f75442448 Author: Fabian Arrotin <arrfab at centos.org> AuthorDate: Tue Dec 3
2016 Sep 22
2
idmap_ad
Thanks to various people for the feedback. I had created a test domain group "IT" with a gidNumber. Under active directory users and groups, the test users had IT as the primary group. Under the regular windows settings , the primary group was still "Domain Users" which did not have a gidNumber. Once I set a gidNumber , all was OK. This also worked on Samba 3.6.25
2014 Nov 03
1
Official AWS AMIs: eu-central-1 support?
Hello all, and thank you very much for the Centos 7 HVM AMI [1], greatly appreciated! This AMI does not work on the newly launched AWS Frankfurt region (eu-central-1). Any plans for fixing that? According to the AWS announcement [2], "The Region supports all sizes of T2, M3, C3, R3, and I2 instances". (We'll be running the CentOS 7 HVM AMI going forward, but looks like none of