Need help to config vTiger with asterisk?

Hello, I’m new to asterisk, i was trying to integrate asterisk to vTiger. When vTiger tracks all incoming and out going calls.
With the help pf many tutorials i was able to configure asterisk with vTiger using PBX manager.

Problem:

When i click on the number at vTiger. it popups out going call - pickup the extension receiver to dial the number and call will be made to xLite. If i click on Answer button at xLite, it will just go to my [default] context at extensions.config and says hello world.

if i call from xLite typing number directly. it will trigger the context [fromXlite] in extensions.config and says thank you. But its now showing any popup in vTiger like incoming call etc…

Here is my configuration:

manager.config

[general]
enabled = yes
port = 5038
bindaddr = 0.0.0.0
displayconnects = yes
webenabled = no

[myName]
secret=myPass
deny=0.0.0.0
permit=myIP
permit=127.0.0.1
read=system,call,log,verbose,command,age…
write=system,call,log,verbose,command,ag…

sip.config

[general]
bindport=5060
bindaddr=0.0.0.0
context=dummy
disallow=all
allow=ulaw
maxexpirey=120
defualtexpirey=80
allowguest=no
alwaysauthreject=yes
srvlookup=yes

[1000]
type=friend
host=dynamic
secret=myPass
bindport=5038
context=fromvTiger

extensions.config

[default]
exten => s,1,Answer()
exten => s,n,Playback(hello-world)
exten => t,n,Hangup()

[fromvTiger]
exten => _9XXN,1,Answer()
exten => _9XXN,n,Playback(auth-thankyou)
exten => _9XXN,n,Hangup()

vTiger PBX manager

server IP = myIP
server port = 5038
username = myName
password = myPass
version = 1.6

when i run cron/modules/PBXManager/AsteriskClient.p… in browser it says.

#!/usr/bin/php Connecting to asterisk server @ 2012-08-22 11:12:01 Connected successfully Trying to login to asterisk Logged in successfully to asterisk server Event:
PeerStatus Privilege: system,all Peer: SIP/1000 PeerStatus: Registered

vTiger User

extension = 1000
recieve incoming call = CHECKED/Yes

xLite

account name = 1000
Protocol = SIP
user ID = 1000
Domain = myIP
password = myPass
Display name = 1000
auth name = 1000

Asterisk console

1000/1000 127.0.0.1 D 5061 Unmonitored

Please help me to configure incoming call to vTiger.

Thank you…