List Info

Thread: Orca voice chatting software compatible with orca




Orca voice chatting software compatible with orca
user name
2007-01-11 07:13:31
Hi,=20

>>The idea behind reestablishing the connections is to
avoid the post
dial delay of establishing the connection when an INVITE
is=20
>>to be sent.
>=20
>For a UAC, there is typically a lot of extra time
between the=20
>initiation and the completion of dialing, which can mask
a=20
>lot of network delay. It has been suggested that ICE
begin=20
>during this time. Establishing a TCP connection could
also=20
>happen during this time.
>=20
>But in any case the issue is largely irrelevant I
think,=20
>because the use of TCP in this way only works if there
are no=20
>NATs or FWs between the UAC and the proxy,

For TCP that is true, yes.=20

But, for TLS, where you have a bidirectional connection,
connection
reuse should work fine also with NATs or FWs. This of course
assumes
that the UA keep the connection open all the time (and
re-establishes it
when it for whatever reason fails), in order to allow
inbound requests
to reach the UA.

So, in this case, if you can live without the multiflow
feature outbound
provides I think connection reuse would work perfectly.

Regards,

Christer

_______________________________________________
Sip mailing list  https://ww
w1.ietf.org/mailman/listinfo/sip
This list is for NEW development of the core SIP Protocol
Use sip-implementorscs.columbia.edu for questions on current
sip
Use sippingietf.org for new developments on the application of
sip

Re: Orca voice chatting software compatible with orca
user name
2007-01-11 08:06:52
severity 406466 important
tags 406466 moreinfo
stop aka affects only one driver

On Thu, Jan 11, 2007 at 12:58:41PM +0100, Matthias Kreis
wrote:
> Package: linux-image-2.6.18-3-k7
> Version: 2.6.18-7
> Severity: critical
> Justification: breaks the whole system
> 
> Hello together
> 
> I found a new (hopefully) bug regarding the sky2
driver. From time to
> time my system looks up.
> Fortunatly I was able to get the messages from the
kernel when the
> system freezes.
> 
> I'm not shure if the hardware is faulty, but I had no
such problems with
> the older 2.6.17 kernel execpt the sky lookup bug
> #391382.
> 
> Thanks for your help
> 
> Matthias Kreis

can you please test the current sid linux images that are up
to be
uploaded if the bug is still present there?
see buildserver sid apt lines:
http://wiki.debia
n.org/DebianKernel


thanks

--
maks



-- 
To UNSUBSCRIBE, email to debian-kernel-REQUESTlists.debian.org
with a subject of "unsubscribe". Trouble? Contact
listmasterlists.debian.org


Re: Orca voice chatting software compatible with orca
user name
2007-01-11 07:59:58
Here's what you need:

services.xml

<service name=3D"yourService"
         class=3D"yourService.serviceLifeCyle"
scope=3D"request">
    <parameter
name=3D"ServiceClass">yourService.Impl</para
meter>=20
    ...
<service/>

yourService.serviceLifeCycle class is your service lifecycle
class and =
it will be loaded one and only one time.  This class must
implement =
startUp(ConfigurationContext ctx, AxisService service) and
=
shutDown(ConfigurationContext ctx, AxisService service) and
these =
methods are called once at the obvious time.

yourService.Impl is your implementation class.  It should
contain an =
init(ServiceContext ctx) and destroy(ServiceContext ctx). 
These methods =
are session-based and will be called everytime a new session
is created =
and destroyed.  And since you specify scope=3Drequest, a new
session =
will be created on every request.

Hope this explains what you need.

I use scope=3Dapplication so I have not verified this
myself, but I =
investigated all possible lifecycle scenarios when I was
deciding how I =
wanted to implement my service.

-Tony

-----Original Message-----
From: Dr Janusz Martyniak [mailto:janusz.martyniakimperial.ac.uk]=20
Sent: Thursday, January 11, 2007 5:43 AM
To: axis-userws.apache.org
Subject: Re: AW: ServiceLifecycle

Deepal Jayasinghe wrote:
> Hi  Janusz;
>=20
>>  but,
>>
>> The init() is called every time I invoke the
method.=20
>=20
> That will only happen if you deploy your service in
request scope , if =

> you deploy your service in application scope then that
will never =
happen.
>=20

  Well, if I deploy my service as an application then init()
is called =
once and all the clients will share the implementation
instance and the =
latter is not what I want.

What I'm trying to achieve is to keep the request mode, so
every client =
gets his own instance of a service, but have a possibility
to initialise =
the service once, possibly at servlet loading time, or at a
very first =
call. The init() method does not deliver this.

>=20
>>  Thre are lots of applications one would like to
initialise the whole
>> system before actually performing any requests.
Otherwise every call
>> to an operation has to perform often complex
initialisation steps.
>=20
> Totally agreed.
>=20
  Appreciated , but is
there a way out ???

                         cheers, Janusz

------------------------------------------------------------
---------
To unsubscribe, e-mail: axis-user-unsubscribews.apache.org
For additional commands, e-mail: axis-user-helpws.apache.org


------------------------------------------------------------
---------
To unsubscribe, e-mail: axis-user-unsubscribews.apache.org
For additional commands, e-mail: axis-user-helpws.apache.org


Re: Orca voice chatting software compatible with orca
user name
2007-01-11 19:00:15
Hi,

On 1/11/07, Axel Gunter <axl264gmail.com> wrote:
>
>  Hi,
>
>  I am getting the following compile error, can anyone
help?
>
>
>  gcc -O1 -g -Wall -I. -D__X264__ -DHAVE_MALLOC_H
-DHAVE_MMXEXT -DHAVE_SSE2
>  -DARCH_X86 -DSYS_LINUX -DHAVE_PTHREAD   -c -o
common/cpu.o common/cpu.c
>  common/cpu.c: In function `x264_cpu_num_processors':
>  common/cpu.c:172: warning: passing arg 2 of
`sched_getaffinity' makes
> pointer
>  from integer without a cast
>  common/cpu.c:172: too many arguments to function
`sched_getaffinity'
>  make: *** [common/cpu.o] Error 1

What OS are you running?

Guillaume

-- 
This is the x264-devel mailing-list
To unsubscribe, go to: http://deve
lopers.videolan.org/lists.html


Re: Orca voice chatting software compatible with orca
user name
2007-01-11 18:55:08
Hi,

I'd like to apply the attached patch before KDevelop3.4.0.
It fixes the
few reports we had about kdevelop not opening the .filelist
or .pcs
files from existing projects that were imported into
kdevelop. Problem
is that I hardcoded the parts to use lowercase, which seemed
fine back
then. 

The patch changes custom project part and the cpp and java
part to
rename any existing lower-case filenames and then both
operate on
mixed-case filenames according to projectname (which
defaults to the
filename of the .kdevelop file).

Along the way I remove the lower() call from Doxygen
tag-files and the
unnecessary remove("kdevelop") which isn't
included in the project name
so all things that use the projectName create the same
filenames.

Andreas

-- 
You have an unusual magnetic personality.  Don't walk too
close to
metal objects which are not fastened down.

_______________________________________________
KDevelop-devel mailing list
KDevelop-develkdevelop.org
https://barney.cs.uni-potsdam.de/mailman/listinf
o/kdevelop-devel

[1-5]

about | contact  Other archives ( Real Estate discussion Medical topics )