Jabber 10.5 for Windows + App Dial Rules + Phone Control Mode

I am using all 10.5. 
I have Jabber for Windows integrated with Outlook.  I have Application Dial Rules set up to handle converting numbers to what I need by stripping, adding 9s, adding 1s, etc.  It all works great when I'm using Jabber as a soft phone. 
My problem is that almost nobody in the company has a PC camera/mic/speakers.  So all of the Jabber clients will be in phone control mode.  Because the call originates from the phone and not from an application, the Application Dial Rules get bypassed.  I understand why this is happening but I'm hoping there is a way around it.  Is there some setting that tells CUCM to notice that there was a CTI call to the phone from an application requesting that it make the call or something like that where CUCM realizes that the request "initially" came from a Jabber client?
OR is there some way for me to put in route patterns similar to the App Dial Rules but specify that those patterns are only available when the number is sent enblock so they don't mess with regular dialing? 

Why dont you apply called party transformation rules and modify the called number as per your need.

Similar Messages

  • Jabber for Windows 9.0.1 phone control of Cius?

    Can the Jabber for Windows client control a Cius like it can a 79XX phone?                  

    Jabber for Windows 9.0(1) will not be posted automatically for all customers.
    An internal communication will be issued to all internal CSM's and PSM's in the next couple of days explaining the exact procedure for requesting access to the client and how to raise the ops request to make it available for the customer org in question ... so reach out to the your Partner manager to understand that procedure and to enable access for your customers.
    Regards,
    John

  • Jabber 9.2 for Windows contact add

    Hi,
    I have installed Jabber 9.2 on few workstations and I can see some strange issue. When I try to add contact from outlook to the Jabber contact list it has no add button in the search bar and if I try to add contact by "New-Contact" it returns an error that "System cannot add contact, please contact your administrator". But at the same time if I add new contact by entering contact's uri (e-mail) it appears in contact list successfully with all the contact card info. There is no issue on 9.1 version. It appears only on 9.2.
    What could it be? And what does this standart error means "Contact your administrator"? Is there is some option, that permits external contact adding?

    Hi Robert,
    Of course it has. Cause "pizza guy" feature announced only in 9.3 version. And it do work in 9.1 but not work in 9.2. It is very strange. Also the users manual for Windows Jabber tells that user should contact their administrator if they see this message, but I still not found any guide for administrator that tells what to do with this message.

  • Windows Pro upgrade with Hyper-V for Windows App development

    Hi
    I am just starting to develop my first windows phone app. I dowloaded Visual studio 2013 express on my windows 8 machine. I started to follow the Microsoft Virtual Academy, Develop Windows phone apps for Beginners with Bob Tabor.
    Anyway, when i try to run the Emulator, it tells me i need Hyper-V which my version of windows doesn't have. Apparently i need Windows Professional. Anyway, this costs about £100 to upgrade. Also, for the emulator i am told i need 4gb of RAM.
    Question 1: My laptop is an i5, 64bit machine, windows 8.1 normal edition, with 4gb of RAM. It says of which 3.88gb of ram is usable. Whatever that means?
    The minimum requirement for the emulator is 4gb, will it work on my machine which apparently has 3.88 ?
    Question 2: I already own a nokia windows 8.1 phone. A basic enough model. Instead of buying the upgrade for windows pro, is it a big hassle to run my test apps on that phone? How difficult is it to run a test build of an app on my phone? Can i run it via
    the inside of visual studio? Or do i need to go to file explorer, copy and paste files over to the phone, disconnect it from the laptop etc. How many steps are involved? If its a load of hassle i might be safer to just bite the bullet and buy the Windows pro
    upgrade.
    (although i am aware the emulator can't test some things that the actual phone can..eg near field communication etc.)
    Any advice?
    Regards
    Conor

    It's not that big of a hassle to debug your app by deploying it on your phone. It's just a matter of choosing Device instead of Emulator when you start debugging in VS.
    Some of the downsides are that your phone's screen must be on and not showing the lock screen, and the fact that you can only have a maximum of 2 apps installed on your phone for debugging purposes. If you start developing and debugging a third app, then
    you must first uninstall one of the other 2 apps to be able to deploy the third app to your phone. To my knowledge the emulator does not have such a limit. I believe there's a paid developer account option available somewhere if you want to raise the limit
    beyond 2 apps.
    Other than that, being tied to a single resolution as Dave mentioned is another downside to using a device.

  • Use MacMini server for windows apps and save for windows files ?

    My question : Office equiped mixed computers , aslo Windows and Mac,
    Could we use MacMini server for both machines, working by windows apps and / or to save and work with windows files on MacMini server  and with Mac as well?
    We woud use it for normal office work and get it by internet from other places as well
    windows apps: merchandising, invoice, word, excel, pictures editing, Outlook Express + the Mac apps
    thnx ,
    MACIren

    In general what you can do is: in OS X, use Windows in virtualization (aka emulation), as a "virtual machine" with VMWare Fusion, Parallels, or Oracle VM Virtual box.
    That way you have both operating system open side by side without having to reboot into one or the other operating system.
    Not sure whether you need a Mac Mini Server per se to do that, I do that with my MacBook Pro for instance. But the server would help since it has a quad-core CPU (more cores that you can dedicate to the virtual macine), and you can put the virtual machine on the second harddrive for better disk access performance. Was there some particular reason you were thinking of the Mini Server -- do you want to use server side Windows apps?
    Again I have that setup on my MacBook Pro using VMWare Fusion with an XP virtual machine. In the Windows, I only use Office 2003 and some company apps that are Windows only. With Fusion (and I'm sure the other apps can do it as well) you can set a "shared" folder so both Windows and Lion will see the contents of it for reading and writing. I believe with Fusion you can also do your entire Home directory, but I prefer to limit it to a single shared "work" folder.

  • Creating file in vs 13 for windows app

    I want to create a csv file in the root folder for my app. The file should be created only if it doesn't exist, if it exists it should just add data in new line in the same file.

    You can't rely on creating files where your programme is installed.
    Most users will not have create permission nowadays.
    You can easily prove this yourself.
    Open file explorer.
    navigate to a folder under programs where you have something installed.
    Right click on an empty bit and choose New on the menu.
    On my win8.1 machine I see Folder as the only option.
    They changed this since I think Win7 but maybe also Vista. 
    You should use AppData.
    This helper gets you the location of Appdata on the machine and adds your programme's namespace for a folder within that:
    public static class AppData
    public static string Location = Path.Combine(Environment.GetFolderPath(
    Environment.SpecialFolder.ApplicationData), System.Reflection.Assembly.GetExecutingAssembly().EntryPoint.DeclaringType.Namespace);
    This code here is serialising an object to FontDetails.xml in such a folder:
    private void Application_Exit(object sender, ExitEventArgs e)
    var fileName = Path.Combine(AppData.Location, "FontDetails.xml");
    if (!Directory.Exists(AppData.Location))
    Directory.CreateDirectory(AppData.Location);
    FontDetails fd = Application.Current.Resources["FontDetails"] as FontDetails;
    DataContractSerializer ser = new DataContractSerializer(typeof(FontDetails));
    var xmlSettings = new XmlWriterSettings { Indent = true, IndentChars = "\t" };
    using (var writer = XmlWriter.Create(fileName, xmlSettings))
    ser.WriteObject(writer, fd);
    Hope that helps.
    Technet articles: Uneventful MVVM;
    All my Technet Articles

  • Anyone tried the Code Weavers version of Wine (for Windows apps)?

    I am absolutely in love with my MacBook Pro, but I am constantly frustrated by the office:mac suite that we are forced to use. I have considered installing Parallels and a copy of XP so as to allow me to use the Windows version of Office, but I have no desire to pollute my Mac's hard drive with Windows. This CodeWeavers software (called CrossOver Mac) looks promising - Windows apps in the OSX enviornment, without having to load Windows. I'm just curious if anyone on here has tried it yet...

    Did you have much success with this program?

  • Cisco Jabber 9.6 for window and Unity

    Hi All,
    I am having some hard time getting jabber working properly... I have a few questions, i hope that i can have answers for.
    1. Now, just to use Jabber on the destop(I don't want to create CSF profile as that consume one license) do i still need a license?
    2. Jabber can connect to CUC... users are getting :" you are not assigned in to your voicemail account. Go to the phone Account tab in the option window and enter your username/pass in the voicemail section.
    But this VM option does not exist... Some other docs mention appliction tab in the CUP server itself but still no go. Other also mention LDAP integration but i  can have LDAP ingrate with CUC yet.
    Thanks

    1. If you dont want to use the Jabber as softphone and want to use for only IM  control , then no need of CSF device and no license required.
    2.
    Check the service profile on CUCM set like above for credential source .

  • Jdesktoppane for Windows apps

    Can I call Windows pre-existing apps within a Jdesktoppane, and run them like internal frames ?

    From quoted page:
    "If you want to submit your publication to the Windows Store, contact your Adobe representative to request a custom build."
    Martin

  • Back Option for Window App

    Hi,
    say i have 3 pages called page 1 page 2 and page 3
    I had made it such that page 1 and 2 will link to page 3.
    However i would like to have a back button that goes back to the previous page that i had came from.
    In this case, if i go from page 2 to 3, when i click on back button, it should link me back to page 2. if i go from page 1 to page 3 it should link me back to page 1.
    I only want to have a back button.
    can anyone tell me how i should go about doing it???
    I am able to go back to only one page at this point.
              if(event.getSource() == backButton)
                   main create =new main();
                   create.setVisible(true);
                   setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                   setVisible(false);
              }

    However i would like to have a back button that goes
    back to the previous page that i had came from.new JButton("Back");
    In this case, if i go from page 2 to 3, when i click
    on back button, it should link me back to page 2.I see...
    if
    i go from page 1 to page 3 it should link me back to
    page 1.I see.
    I only want to have a back button.I can tell.
    can anyone tell me how i should go about doing it???How about storing the state of your application, so that it knows where it came from?
    Also, you might want to use CardLayout instead of creatin new frames.

  • HT1689 with the new format I don't see where I download updates for the apps.  My phone says I need 18 updates on my apps and I can't find where to do this in the new format. Help.

    Thank you anyone for the help.

    The new format of what?
    If you're running iOS 6 and want to dowonload updates directly to your iPhone,  you can open the App Store and click "Updates" in the lower right and install them from there.
    If you're talking about iTunes 11 on your computer, then switch to the Apps button on the upper left and you can download them from there.

  • Elements 13 for Windows 64-bit - cannot enter Expert mode

    Hi,
    I just created a photo collage but I am not able to enter expert mode to display rulers or do other advanced things.
    Any help would be appreciated.
    Thanks

    Here it is. You can try free for 30 days before buying.
    https://www.adobe.com/cfusion/tdrc/index.cfm?product=photoshop_elements&loc=us&PID=2159997 #

  • Jabber for Windows Video calling in Deskphone mode

    Hi
    Does Jabber for windows support video calling in deskphone mode? I have 7942 IP Phone, VT advantage camera on Laptop and Jabber clinet insatlled on laptop. Can i make video callng with Jabber in Deskphone mode?
    It is not working please help.
    Regards,
    Andy

    Hi Andy,
    Yes, Jabber for Windows supports video calling in deskphone mode.
    You'll need to install the Cisco Media Service Interface specific to your version of Jabber and correctly configure Jabber for Deskphone Video.
    Please follow these instructions to configure Deskphone Video:
    For Jabber for Windows 9.1
    For Jabber for Windows 9.2
    Once completed, if you run Jabber you should see the following when you open the Connection Status window (Help > Show connection status):
    Regards,
    Matt

  • How to get .Xap file for windows(8.1) app in visual studio 2013

    Hi ,
    I am creating an app that supports for windows tablet using visual studio 2013.For windows Phone  in bin folder i can see ProjectName.xap file these file can be submitted to store.But I could not see xap file for windows apps in visual stuido.What file
    I should use to upload my project to store.
    Thanks,
    Alok

    Additionally, xap extension only for Windows Phone Silverlight also some other Silverlight project.
    --James
    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.

  • Known Issue: You cannot install the Visual Studio Tools for Universal Windows Apps on a pre-RC build of Visual Studio 2015 (Windows 10 Insider Preview SDK and tools, April 2015 release)

    The Tools for Universal Windows Apps requires Visual Studio 2015 RC. If you have an earlier build installed, for example, Visual Studio 2015 CTP6, you must first uninstall Visual Studio 2015 and the Tools for Windows.

    To uninstall earlier versions of Visual Studio 2015 and the tools for Universal Windows app development,
    Go to Control Panel, and select Programs & Features. 
    Select Microsoft Visual Studio 2015 and click Change.
    Click Remove, and then Yes.
    Next, select Microsoft Visual Studio 2015 Tools for Windows 10, and click
    Change.
    Click Remove, and then Yes.

Maybe you are looking for

  • CrystalReportViewer Failed to Open the connection Unable to retrieve Object

    I am getting the following Error on trying to view a report in the CMC and the Infoview. CrystalReportViewer Failed to Open the connection. ReportName Unable to retrieve Object. Failed to open the connection. ReportName I have recently re-installed C

  • In General Ledger report i want "cheque Number" Column

    Hi All, I am seeing General Ledger report in-built in sap B one 2005 for one single bank G/L A/C. i want one column in this report "Cheque Numbers" which is posting in Outgoing Payment, any body help on this. Regards, S.Mobin.

  • JSObject in Firefox?

    Hey Guys I've done some searching and haven't found an answer yet. The question is, have any of you found a solution for using JSObject to call javascript methods from the applet in Firefox? I've got code that works fine in IE. Many thanks. H Update:

  • Name disappear

    Hi friends, On MSS->ECM, the Employee name and Manager Name are missing from the table on the Select screen, but names are there on the Plan screen. Also the IT758, IT759 authorization error only appear on one plan but not on the rest of the plans, t

  • New MBP battery issues

    I am new (sort of) to owning a Mac, I bought my macbook pro a couple days ago, so far I havent used it much for other than surfing the net. My question is regarding the Battery time remaining indicator, first of all it changes alot, so i never truly