Problem receiving calls.
Hello!, im new using FMG and FMS and I have problems receiving calls. I create a new profile in the sip.xml, rtm.xml and in the workflow.xml. I can call from sample sipphone to any other phone via my sip server, but i cant receive calls, can somebody help me please.
.
sip.xml
<Profile>
<profileID> MyCon </profileID>
<userName> myuser </userName>
<password>mypass </password>
<displayName> test </displayName>
<sipDomain> sip domain </sipDomain >
<doRegister> 1 </doRegister>
<remoteSipHost> sip proxy </remoteSipHost>
<supportedCodecs>
<codecID> G711u </codecID>
</supportedCodecs>
<context> mycontext </context>
</Profile>
workflow.xml
<Context name="mycontext">
<Condition variable="destNum" value="^8888$">
<AppNode sequence="1" app="playfile" args="moh.raw"/>
<AppNode sequence="2" app="hangup" args="null"/>
</Condition>
<!-- call rtmp phone -->
<Condition variable="destNum" value="^1...$">
<AppNode sequence="1" app="bridge" args="rtmp|${destNum}@FlashCall"/>
<AppNode sequence="2" app="hangup" args="null"/>
</Condition>
<!-- call sip phone 777 -->
<Condition variable="destNum" value="^777$">
<AppNode sequence="1" app="bridge" args="sip|${destNum}@sipPhone"/>
<AppNode sequence="2" app="hangup" args="null"/>
</Condition>
<!-- call sip phone 888 -->
<Condition variable="destNum" value="^888$">
<AppNode sequence="1" app="bridge" args="sip|${destNum}@sipPhone2"/>
<AppNode sequence="2" app="hangup" args="null"/>
</Condition>
<!-- call out -->
<Condition variable="destNum" value="^.*$">
<AppNode sequence="1" app="bridge" args="sip|${destNum}@MyCon"/>
<AppNode sequence="2" app="hangup" args="null"/>
</Condition>
</Context>
rtm.xml
<Profiles>
<EnableAutoProfile>false</EnableAutoProfile>
<DefaultContext>rtmp</DefaultContext>
<DefaultPassCode>passcode_default</DefaultPassCode>
<Profile>
<ProfileID> profile_default </ProfileID>
<Server> localhost </Server>
<Application> telephony </Application>
<Instance> _definst_ </Instance>
<PassCode>passcode_default</PassCode>
<Context> rtmp </Context>
</Profile>
<Profile>
<ProfileID> FlashCall </ProfileID>
<Server> localhost </Server>
<Application> telephony </Application>
<Instance> FlashTest </Instance>
<Context> mycontext </Context>
</Profile>
</Profiles>
Thanks ![]()
