Displaying 14 results from an estimated 14 matches for "integrat".
Did you mean:
integrate
2006 Oct 10
5
Cisco CCM - Asterisk
Hi!
I'm trying to communicate a Cisco CCM 4.0 with Asterisk 1.2.11, I 've followed the info in
http://www.voip-info.org/tiki-index.php?page=Asterisk+Cisco+CallManager+Integration
but still not able to make Asterisk communicate with Cisco. I keep on receiving ---
SIP/2.0 400 Bad Request - 'Malformed/Missing URL'
--- and ---
SIP/2.0 404 Not Found ---
messages everytime I send a call. Had play a lot with the way SIP messages are sent to the Cis...
2004 Apr 06
3
samba pam kerberos
Hi Everybody,
We are working on samba 3.0.2a with sun
kerberos SEAM and Netscape iDirectory Server support.
We are able to integrate samba with ldap support. we
tried integrater kerberos for authentication. We found
a solution using pam via pam_krb5 module provided by
the sun solaris 8.
One important fact we found out using samba pam
authentication, it directly calls for an account
management function instead of an authentica...
2000 Feb 28
1
Failed RPC Call
....0 on my fileserver. I've tried
both the "stock" version of samba that came with Mandrake and also a fresh
build from the tarball off samba.org's mirror site. Here is the problem:
I have a series of services established, all of which work. I added an
additional service called [Integrator] and suddenly I get an error message
in Windows (NT 4.0 and 95) that says an RPC call failed. I cannot access
any Samba services on the fileserver except through smbclient. If I comment
out the service and restart smbd/nmbd, everything is okay again. I put it
back and restart, I get the error...
2010 Jan 15
3
Inexpensive Flac player for separates system?
...m with following criteria;
- Transport from UPnP (DNLA) NAS using either WiFi or Cat5 networking
- Toslink digital out for using existing HiFi DAC.
- Low power consuption (eg just few Watts - it's just a decoder anyway).
There seems a real lack of Flac players that are cheap and HiFi separates
integratable like current-day CD players. All solutions I've seen are
either expensive boutique heavy-weights or portable devices.
Squeezebox doesn't count for me - requires PC to be on, thus breaking rule 3
above as a few-hundred Watt music player system (pretty irresponsible
solution if you ask...
2008 Mar 05
0
dspam+sendmail+virtual users
...to setup something like this...
Sendmail MTA -> DSPAM -> LDA/Dovecot
Can someone give me some sendmail.mc configuration examples on how I
can set this up? I was having trouble getting sendmail to deliver to
dspam and then to dovecot's deliver.
Thanks
PS: I am not using the IMAP DSPAM integratation libs (yet)... I am
using 1.1. When will 1.1 of this come out?
2009 Jan 12
0
No subject
...goal and the most important issue for Compiz-Fusion is t=
o make smooth scrolling a reality. =3B I consider it the first bug sinc=
e Beryl that was never fixed. =3B And thanks Danny B. for maintaining t=
he git repository.<br><br>I will write more later concerning KDE 4 integrat=
ion in about two days.<br><br>From charlie.<br><br /><hr />Share your holid=
ay memories for free with Windows LiveT Photos. <a href=3D'http://www.micro=
soft.com/windows/windowslive/photos.aspx' target=3D'_new'>Get started now.<=
/a></b...
2006 Jan 23
0
Need an RoR Developer ...
...e Development first and then
realized that''s not the right place. Please excuse the cross-post.)
I''m looking for an RoR developer for a project I want to begin ASAP.
It''s a task-management+extra-features type project. Should be
relatively simple.
It would have to be integrateable into our existing systems which are
right now all in PHP.
Thanks,
MJ
--
Posted via http://www.ruby-forum.com/.
2002 Dec 06
0
Samba Tip´s
...is in samba.
>
> ok...
>
> i want to know too if exist some application (GUI) that can runs in another
> machine (not linux) that can create users, shares, groups and rights for the
> domain (samba acting like pdc) or if is much difficulty to implement a LDAP
> enviroment to integrat both platforms users accounts.
there is a web browser interface to samba that will let you create
shares. I think it is possible to use the native windows tools to add
users and modify groups, and it is certainly possible to set permissions
with native windows tools.
You may want to get a hold of...
2024 Jun 13
1
Integration of functions with a vector argument
? Wed, 12 Jun 2024 23:42:18 +0000
"Levine, Michael" <mlevins at purdue.edu> ?????:
> f.int1 <- function(x,y) {Vectorize (function(y) f(c(x,y),H=H,j=j))}
Vectorize returns a callable function(y), so wrapping it in a
function(x,y) will not work. Since you'd like to integrate over y, we
can perform the same transformation manually using vapply:
# A version of f(...) that can be integrated over y
f.int1 <- function(y, x, H, j)
vapply(y, function(y) f(c(x,y), H = H, j = j), numeric(1))
The same transformation can be performed using Vectorize as follows:
f.int1 <...
2001 Jul 01
1
indexing
...<- function(str,indexmat=CRAN.index,ignore.case=TRUE) {
noquote(all.ind[unique(c(grep(str,indexmat[,"Function"],ignore.case=ignore.case),
grep(str,indexmat[,"Description"],ignore.case=ignore.case))),])
}
CRAN.index <- create.index()
search.ind("integrat?")
search.ind("adapt")
search.ind("permute")
search.ind("Durbin")
** NEW ADDRESS as of Aug. 1 ***
Zoology Department, University of Florida
bolker@zoo.ufl.edu
(352) 392-5697
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-devel...
2010 Jan 15
0
Inexpensive Flac player for separates system?
...l potential for quality when you
> separate the transport from the DAC via TOSLINK. I suppose that if
> you mention "cheapest" then you're perhaps not concerned about
> sacrificing quality. The problem is that the only remaining choices
> are FireWire (or USB) or integrating the DAC into the device which
> handles the UPnP transport. The reason the latter choices are
> better than TOSLINK is that it allows the transport speed to be
> throttled by the DAC clock, instead of the other way around.
>
> Actually on the contrary. Cheap in terms of si...
2024 Jun 12
2
Integration of functions with a vector argument
? Tue, 11 Jun 2024 18:44:08 +0000
"Levine, Michael" <mlevins at purdue.edu> ?????:
> Let us say we have a function
>
> F <- function(x){ body of the function}
>
> Where x is, in general, a d by 1 vector with d>1. Now I want to
> integrate out some of the coordinates of x, e.g. x[1] or x[2] or both
> of them etc. I'm well aware of how to integrate out e.g. y if a
> function is defined as f <- function (x,y) {body of the function}
> where y is a scalar.
The reason integrate() wants a separate function argument for th...
2005 Aug 10
24
Multilingual Rails v0.5. Big update!
Multilingual Rails v0.5 is just released with lots of new features.
Here is the changelog:
v0.5: New charset conversion string-methods. Multilingual Rails
always use UTF-8 internally.
iconv_to(charset) # Return string as charset
iconv_from(charset) # Return string as UTF-8, converted
from charset
iconv_from!(charset) # Convert string from charset to UTF-8
2010 Jan 15
0
Inexpensive Flac player for separates system?
...l potential for quality when you
> separate the transport from the DAC via TOSLINK. I suppose that if
> you mention "cheapest" then you're perhaps not concerned about
> sacrificing quality. The problem is that the only remaining
> choices are FireWire (or USB) or integrating the DAC into the
> device which handles the UPnP transport. The reason the latter
> choices are better than TOSLINK is that it allows the transport
> speed to be throttled by the DAC clock, instead of the other way
> around.
>
> Actually on the contrary. Cheap in term...