Call set up in IPCC

Hi ,
        Ive installed sprawler in VMware for lab purpose. Below are the details.
Ive installed all ICM components(Router,Logger,AW,PG) in one VmWare machine, CVP server in one VM, call manager in another VM and two Cisco IP soft phones in two seperate systems. Now all are working fine. Both VRU PIM and CUCM pim are in active state.Each and every component is pinging another one.
Now i want to design the following scenario.
Is it possible to design if one ip soft phone calls another ip soft phone the call may reach to other end the following way.
Ipphone1 ---> CM ---> CVP ---> ICM --> CM --> Ipphone2.
What are the configurations ive to do ?
Is there any document to refer?
Regards,
MB Reddy.

I thought you were working on below mentioned call flow :-
Ipphone1 ---> CM ---> CVP ---> ICM --> CM --> Ipphone2
If you want to implement abovementioned call flow then you need to do the following :-
++ Create a SIP Trunk from CUCM to CVP.
++ Create a Route Pattern for sending the call from CUCM to CVP using SIP Trunk created in Step-1. RP - 6XXX
++ Create a Static Route in CVP(Under SIP Subsystem).( Static Route - 1>)
++ Create a Label in ICM(IP Phone Extension) (Label : 1002)
++ Create a DN in ICM. In the Default Label Select the Label Created in Step-4.
Once above is configured, then you need to Dial 6000 from IP Phone 1, the call will go from CUCM -> CVP -> ICM -> CVP -> CUCM -> Phone 2

Similar Messages

  • How to call set pf-status in 4.6C system ALV report

    Hi All,
    Am calling set pf-status as
    form MAIN using rt_extab type slis_t_extab
    set pf-status 'MAIN' excluding rt_extab.
    ENDFORM.
    and giving that PF-STATUS name in FM
    "REUSE_ALV_GRID_DISPLAY"
    but in out put my pf-status is not calling.
    Its working fine in ECC 6.0 systems.
    Can any one help me regarding the same
    Thanks in Advance
    Regards
    SAI

    Post relevant portion of your code to analyse. No point in shooting arrows in the dark.

  • Serious bug: call set-up problem in case of several DNS SRV records

    Hello Cisco,
    We have a MCU that consists of two servers in cluster. We have SIP SRV DNS records that point to both servers with equal priority and weight.
    All applications work nice with such setup, except from Free Jabber. Jabber is unable to set up the connection most of the time. One time the connection is successful and 5, maybe even 10 times it is unsuccessful.
    For testing, we removed SIP DNS records pointing to one server. This way Jabber works much better. There are some cases when the call set up fails but in most cases it works.
    Looking the logs of the MCU, we can see three different ways, how call set-up may fail. It is probably unreasonable describe the details in this forum message. Anyway, it seems to be sure that in case there SIP SRV records point to one server then Jabber is able to connect the MCU, in case the records point to two servers equally then Jabber is pricnipally unable to connect the MCU. This bug should be fixed, IMHO.
    Btw, what record does Jabber follow, is it _sips._tcp or _sip._tls?
    Greetings and thank you in advance,
    Marko Laurits

    Hello Cisco,
    We have a MCU that consists of two servers in cluster. We have SIP SRV DNS records that point to both servers with equal priority and weight.
    All applications work nice with such setup, except from Free Jabber. Jabber is unable to set up the connection most of the time. One time the connection is successful and 5, maybe even 10 times it is unsuccessful.
    For testing, we removed SIP DNS records pointing to one server. This way Jabber works much better. There are some cases when the call set up fails but in most cases it works.
    Looking the logs of the MCU, we can see three different ways, how call set-up may fail. It is probably unreasonable describe the details in this forum message. Anyway, it seems to be sure that in case there SIP SRV records point to one server then Jabber is able to connect the MCU, in case the records point to two servers equally then Jabber is pricnipally unable to connect the MCU. This bug should be fixed, IMHO.
    Btw, what record does Jabber follow, is it _sips._tcp or _sip._tls?
    Greetings and thank you in advance,
    Marko Laurits

  • Call set up in exe

    I have made a rtexe , In the exe there are Subvi's call set up is kept as reload for each call
    but when i run the exe and open the vi's running in the debugger  even when there is a call to the vi
    vi does not gets loaded , it shows a question mark on the vi that is being called but  sometimes it  starts
    running , I don't know why? And is call set machine dependent?
     Can anyone Help me? 

    Hello Amit,
    Ok, I understand now that you are using the second option in the VI Call Configuration Dialog Box.  According to the help file:
    "Selecting Reload for each call or Load and retain on first call replaces the subVI with a Call by Reference Node that is configured to call the subVI. Symbols on the Call by Reference Node
    correspond to the mode that you select. If you choose either of these
    options you will no longer be able to find the subVI. These options
    remove the static link to the subVI."
    A question mark usually indicates that a subVI cannot be found.  This
    can happen if you have not included the subVI in your rtexe build. 
    Please let me know whether the is the case.  Also, please double check
    that you have not renamed the subVI.
    Kameralina
    Ask NI (ni.com/ask)
    Search The KnowledgeBase
    NI Developer Zone
    Measure It. Fix It. ni.com/greenengineering/
    NI Vision ni.com/vision/

  • Need to call SET ROLE for Oracle before running report

    Hi all,
    does anyone know how I can call SET ROLE for Oracle with Crystal Reports, before running report? I'm using Crystal Reports 2008 to design report (with Server Oracle connection) and Java Reporting Component to run report within a J2EE apllication. If anyone has any idea, I'd greatly appreciate as I'm in trouble.
    Thanks a lot.

    Just a thought...
    If your report's datasource was an Oracle stored procedure, you could call a function to set the role from that SP
    You would be in the same Oracle session from  Report --> SP --> Function, so the role would be retained

  • IllegalArgumentException occured while calling setter of

    Hi all!
    I'm new to hiberbate and i'm trying to create my first project. When I'm trying to select data from my DB - I get the fillowing error:
    IllegalArgumentException occured while calling setter of test4.Group.groupid
    Hibernate: select this_.groupid as groupid1_0_, this_.faculty as faculty1_0_ from studgroups this_
    DB has the following entities:
    • Student
    ◦ First Name
    ◦ Last Name
    ◦ Patronymic
    ◦ Datre of Birth
    ◦ GroupNumber
    • Group
    ◦ GroupNumber
    ◦ Faculty
    I create the following classes:
    public class Student {
    private Long id;
    private String firstname;
    private String lastname;
    private String otch;
    private Date dateofbirth;
    private Long groupid;
    public Student(){}
    public void setId(Long id) {
    this.id = id;
    public void setFirstname(String firstname) {
    this.firstname = firstname;
    public void setLastname(String lastName) {
    this.lastname = lastname;
    public void setOtch(String otch) {
    this.otch = otch;
    public void setDateofbirth(Date dateofbirth) {
    this.dateofbirth = dateofbirth;
    public Long getId() {
    return id;
    public String getFirstname() {
    return firstname;
    public String getLastname() {
    return lastname;
    public String getOtch() {
    return otch;
    public Date getDateofbirth() {
    return dateofbirth;
    public Long getGroupid() {
    return groupid;
    Code:
    public class Group {
    private Long groupid;
    private String faculty;
    public Group(){}
    public void setGroupid(Long groupid) {
    this.groupid=groupid;
    public Long getGroupid() {
    return groupid;
    public void setFaculty(String faculty) {
    this.faculty = faculty;
    public String getFaculty() {
    return faculty;
    xmls:
    Stud.hbm.xml
    Code:
    <hibernate-mapping>
    <class name="test4.Student" table="students">
    <id column="id" name="id" type="java.lang.Long">
    <generator class="increment"/>
    </id>
    <property column="FirstName" name="firstName" type="java.lang.String"/>
    <property column="LastName" name="lastName" type="java.lang.String"/>
    <property column="Otch" name="otch" type="java.lang.String"/>
    <property column="DateofBirth" name="dateofBirth" type="java.util.Date"/>
    <many-to-one name="group" column="groupid" class="test4.Group"/>
    </class>
    </hibernate-mapping>
    Studgroups.hmb.xml
    Code:
    <hibernate-mapping>
    <class name="test4.Group" table="studgroups">
    <id column="groupid" name="groupid" type="java.lang.Long">
    <generator class="increment"/>
    </id>
    <property column="faculty" name="faculty" type="java.lang.String"/>
    <set name="studgroups" table="studgroups" lazy="false">
    <key column="id"/>
    <one-to-many class="test4.Student"/>
    </set>
    </class>
    </hibernate-mapping>
    configuration xml
    Code:
    <hibernate-configuration>
    <session-factory>
    <property name="connection.url">jdbc:mysql://localhost:3306/test</property>
    <property name="connection.driver_class">com.mysql.jdbc.Driver</property>
    <property name="connection.username">root</property>
    <property name="connection.password"></property>
    <property name="connection.pool_size">1</property>
    <property name="current_session_context_class">thread</property>
    <property name="show_sql">true</property>
    <property name="dialect">org.hibernate.dialect.MySQL5Dialect</property>
    <mapping resource="test4/stud.hbm.xml"/>
    <mapping resource="test4/studgroups.hbm.xml"/>
    </session-factory>
    </hibernate-configuration>
    I'm trying to select data from DB using the following code:
    Collection groups = Factory.getInstance().getgroupdao().getAllGroups();
    Iterator iterator = groups.iterator();
    while (iterator.hasNext()) {
    Group grp = (Group) iterator.next();
    System.out.println("группа : " + grp.getGroupid());
    Collection students = Factory.getInstance().getstuddao().getStudentsByGroup(grp);
    Iterator iterator2 = students.iterator();
    while (iterator2.hasNext()) {
    Student std = (Student) iterator2.next();
    System.out.println("студент " + std.getLastname());
    Could you help me, I have no idea why I get the following exception? thank you.

    Hello,
    I'm sorry I don't know Hibernate (I just stumbled on this topic as it was unduely posted in the "Design and patterns" forum), but I see a couple of inconsistencies in your post (probably typos):
    - check the spelling of your mapping configuration files (hbm vs hmb)
    - the studgroup table has a "groupnumber" column, that doesn't appear in the mapping conf
    Also it would help if you posted the stack trace of the exception (so that we get an idea whether it is raised in the Hibernate machinery, presumably as a result of a misconfiguration, or from within your code).
    Eventually, it bears repeating: please use ++ tags around your code to make your code and config readable to us wrinkled users, and please check the formatting in the preview tab, before posting.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • NiDMM call setting not allowed

    Our company introduced PXI-1033 and NI40470 to improve the voltage measurement accuracy two years ago. During the normal production, after testing for several hundred thousand times(~200,000~2million), it will alarm: "niDMM call setting not allowed". each time, we need reboot the computer to fix this problem. It caused a lot of engineering work and machine downtime. Regarding to this problem, is there any solution to reduce the alarm frequency or eliminate it?

    You need to supply a lot more information if you want any help.
    What changed right before the errors started happening?  Software just doesn't stop working after 2 years.
    How are you calling the DMM?  How are you handling references?  What software are you using?  What setting are you not allowed to make when you get this error?
    Any code you can supply will help the debugging process.
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • How to call setter Method of ActionScript class with in a Flex Application

    Hi
    I have Action class as shown :
    public class MyClass
    private var name:String 
    public function get name():String {
        return _initialCount;
    public function set name(name:String):void {
        name = name;
    Now please let me know how can i access this Action class under my Flex Application and call the setter Method of it to set the value for the name .
    For example on entering some data in a TextInput and  click of a submit Button , on to the Event Listener , i want to call the set name method of my ActionScript class .
    Please share your ideas on this .

    Thanks  Gordon for your resonse .
    Say for example my Action class is like this :
    public class MyClass
    private var name:String 
    public function get name():String {
        return name;
    public function set name(name:String):void {
        name = name;
    This is inside the MXML
    I know this way we can do it
    public var myclass:MyClass = new MyClass();
    myclass.name="Kiran";
    Now my query is can we do in this way also ??
    myclass.set name(SomeTextInput.text);
    Please share your views on this , waiting for your replies .
    Thanks in advance .

  • Calling setter on backing bean via JavaScript / AJAX using JSF2

    My application requires me to invoke a setter on a backing bean instance. I am trying to do this using the following javascript code:
    var stateListWidth = document.getElementById("myform:stateListWidth");
    stateListWidth.setAttribute("value", 100);
    jsf.ajax.request(this, event, {execute: 'stateListWidth', render: 'stateListWidth'});and added a hidden field as follows:
    <h:form id="myform">
    <h:inputHidden id="stateListWidth" value="#{cityController.stateListWidth}"/>However my setter method is never called. I can see the parameters (myform:stateListWidth = 100) are POST'd to the server side, but not translated into a setter invocation. Any ideas if this is possible and how to do this.

    I got it working. Had to specify the full ID of the element myform:stateListWidth rather then just stateListWidth.
    var stateListWidth = document.getElementById(myform:stateListWidth);
    stateListWidth.setAttribute("value", 100);
    jsf.ajax.request(this, event, {execute: 'myform:stateListWidth', render: 'myform:stateListWidth' });I still wonder if there is a better way without using a hidden field to get this working?

  • Azure Powershell - Calling Set-AzureServiceDiagnosticsExtension results in BadRequest error

    I'm trying to set Azure diagnostics on a deployed cloud service using v0.8.11 Azure Powershell cmdlets and the Set-AzureServiceDiagnosticsExtension command:
        Set-AzureServiceDiagnosticsExtension -StorageContext $storageContext -DiagnosticsConfigurationPath $diagnosticsConfiguration.FullName -ServiceName $serviceName -Slot Production -Role "MyService.Web"-Verbose
    Doing so I get the following error
        Exception: Microsoft.WindowsAzure.CloudException: BadRequest: The extension ID
        MyService.Web-PaaSDiagnostics-Production-Ext-0 is invalid.
           at Microsoft.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task
        task)
           at Microsoft.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccess(Task
        task)
           at Microsoft.WindowsAzure.HostedServiceOperationsExtensions.AddExtension(IHo
        stedServiceOperations operations, String serviceName,
        HostedServiceAddExtensionParameters parameters)
           at Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.ExtensionMan
        ager.AddExtension(HostedServiceAddExtensionParameters extensionInput)
           at Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.ExtensionMan
        ager.InstallExtension(ExtensionConfigurationInput context, String slot,
        ExtensionConfiguration extConfig)
           at Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.SetAzureServ
        iceDiagnosticsExtensionCommand.ExecuteCommand()
           at Microsoft.WindowsAzure.Commands.ServiceManagement.Extensions.SetAzureServ
        iceDiagnosticsExtensionCommand.OnProcessRecord()
           at Microsoft.WindowsAzure.Commands.Utilities.Common.CloudBaseCmdlet`1.Proces
        sRecord()
           at System.Management.Automation.Cmdlet.DoProcessRecord()
           at System.Management.Automation.CommandProcessor.ProcessRecord()
            + CategoryInfo          : NotSpecified: (:) [Write-Error], WriteErrorExcep
           tion
            + FullyQualifiedErrorId : Microsoft.PowerShell.Commands.WriteErrorExceptio
           n,UpdateDiagnosticsBuildStep.ps1
    It works when I don't use the "-Role" parameter but then I have to call Remove-AzureServiceDiagnosticsExtension for each role prior to calling the Set command which adds 2-3 minutes per role to the script execution time.
    The Role parameter matches my role name in the Azure Cloud Service. Am I doing something wrong or is this a bug?

    Hi dontijee,
    Please look at this article:
    http://blogs.msdn.com/b/kwill/archive/2014/12/02/windows-azure-diagnostics-upgrading-from-azure-sdk-2-4-to-azure-sdk-2-5.aspx, there is one person who encounter the same issue in the comments part of this article, please pay attention to this article. If
    any update, I will post here.
    [update]
    Please have a look at the kevin's reply, it seems like a powershell bug, here is a snippet.
    The problem has been identified as an issue with the extension name code in the Powershell cmdlet.  The REST API that Powershell calls doesn't support dots in the extension name.  Visual Studio will correctly remove the dots from the role name,
    but Powershell preserves the full role name including dots.  We will fix the Powershell code, but in the meantime the workarounds are:
    1) Remove the '.' from your role name.
    2) Use Visual Studio to enable diagnostics.
    3) Instead of using Set-AzureServiceDiagnosticsExtension, use the generic New-AzureServiceExtensionConfig / Set-AzureServiceExtension methods.
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to call  set method

    hi i have a set method which i what to call from another class how can i do that
    Edited by: ADF007 on 2012/09/13 2:08 PM
    Edited by: ADF007 on 2012/09/13 2:08 PM
    Edited by: ADF007 on 2012/09/13 3:14 PM

    Where are these methods written? What technologies/versions are you using?
    From the looks of it, I'm assuming assignRolesToUser seems to be a method in some ADFbc component (AM?)
    and RowButtonListener seems to be a managed bean method.
    You need to first read and understand how to expose ADFbc service operations (such as AM methods) in a client interface and call from your UI layer (such as bean method or similar UI action).
    Here's something: https://blogs.oracle.com/jdevotnharvest/entry/best_practice_invoking_business_services

  • Calling sets in an ABAP program

    i am working on a validation exit for FI. Is it possible to create sets to group data and call the sets in a ABAP program in a validation exit.
    Any clarification will be appreciated.
    thank you
    Krishna

    Hi,
    you can group data:
    1) in special standard trx. like KDH2
    and read them with table setheader and setleaf
    or (better)
    2) creat your own customer Table to group data with key-fields:
    mandt groupname fieldname fieldvalue
    100     Z001          SAKNR   4711
    100     Z001          SAKNR   4712
    and in your val.-exit you can check values against this table
    A.
    Message was edited by:
            Andreas Mann

  • Nokia E55 internet call setting

    I recently bought a Nokia E55 with great hope, and did the SIP VOIP setting, and registered to the provider Jumblo.
    I tried to call a friend of mine via internet but I couldn't. There was not the internet call option to be choosen. The instruction on setting the internet call in the manual is misleading. Does the software (2.1) of E55 contain the internet call option?
    I'm hoping to get a quick answer from some guru to solve the problem.

    i have a e55
     me also waiting for the answer 

  • Calling setter dynamically

    Hi all,
    I want to do something, but I'm not sure how to implement it in Java. I have a propertyChange method. This method is called from the client everytime a property is changed (for example a value of a input field is changed).
    This propertyChange method holds two attributes. An identifier (which I use to find the business object in a model registry) and a PropertyChangeData class, this class holds the values required for the propertyChange (i.e. propertyName and newValue).
    Now for the business object retrieved from the model registry I want to call the setter of the propertyName to set the newValue. So something like:
    businessObject.set[propertyName](newValue); ..... how can I do this?
    Cheers,
    Rick

    Wubinator wrote:
    You mean keeping an XML or something that maps a property for a certain business object to a method? That doesn't seem very handy. Whenever a business object is changed or property names are altered you need to update the XML. If you forget to do this you create faults in your application or data mismatchesNah, it's very handy indeed. So you have to keep some XML up to date. So what? What's the alternative? Keeping loads of code up to date. Only yesterday I fixed several bugs where people had done exactly that - mapped properties in code - and failed to keep it up to date. I replaced dozens of lines of code, spread over several classes, with a single line in each class, and a single XML file which is the single point-of-contact for maintenance now. Much neater. As for it creating bugs, if your unit tests are up to scratch, it's not an issue. You do have unit tests, right?

  • Missed calls set as task in Outlook ???

    I have been receiving calls from unknown numbers in my iPhone 5 and these calls are being saved as tasks with title "Call back ####" in Outlook. How can I disable this feature?

    Unfortunately, you can't set iCloud as your default.  You can, however, change the default address book in Outlook to access your iCloud contact list when addressing email, as explained here: http://www.msoutlook.info/question/262.

Maybe you are looking for