Associate a device with a DN using AXL API

Hi guys,
I am trying to add a DN to an existing phone device using AXL API via Java. I keep getting this error:
Devices can only be associated with DNs, Route Patterns and Hunt Pilots.
I have two existing lines on this device which I added through call manager, but now I am trying to add a third one using AXL API. This is what I did to get this error and I am not sure why:
XDirn dn = new XDirn();
dn.setPattern("6340");
XPhoneLine phoneLine = new XPhoneLine();
phoneLine.setDirn(dn);
phoneLine.setAsciiLabel("TESTING - 6340");
phoneLine.setDisplay("TESTING - 6340");
phoneLine.setDisplayAscii("TESTING - 6340");
phoneLine.setLabel("TESTING - 6340");
phoneLine.setBusyTrigger("2");
phoneLine.setIndex("3");
phoneLine.setMaxNumCalls("4");
UpdatePhoneReq updatePhone = new UpdatePhoneReq();
updatePhone.setName("SEPD824BDBBCAF1");
UpdatePhoneReq.Lines newLine =  new UpdatePhoneReq.Lines();
newLine.getLine().add(phoneLine);
updatePhone.setLines(newLine);
port.updatePhone(updatePhone);
the error occurs at the last line when I try to push the update.
Thanks

I just tried to execute SQL commands through the API and that is not working well either. The Axlsoaptoolkit.java file works fine but not through the API. this what I have done:
ExecuteSQLQueryReq sqlReq = new ExecuteSQLQueryReq();
sqlReq.setSql("select * from device");
ExecuteSQLQueryRes sqlRes = port.executeSQLQuery(sqlReq);
System.out.println(sqlRes.getReturn().getRow().get(0));
System.out.println(sqlRes.getReturn().getRow().get(1));
System.out.println(sqlRes.getReturn().getRow().get(2));
This returns null on the first 3 rows where I have more than a 1500 entries in that table. I verified using the Axlsoaptoolkit.java app

Similar Messages

  • How do I associate a device with my Apple ID?

    I have an iPad and an iPhone.  I sync them with my iMac desktop computer, and never with any other.  I always use the same Apple ID.  As far as I know, it's the only one I have.
    Recently, I purchased an app using my iPad.  The next time I synced the iPad with the computer, I got an alert saying "The purchased item 'App' on the iPad
    'Etchemendy's iPad' could not be transferred to your iTunes library because you are not authorized for it on this computer."  The alert goes on, in fine print, to say, "To authorize this computer for items purchased from the iTunes Store, choose Store > Authorize This Computer."
    So I choose Store > Authorize This Computer, and I get a second alert saying, "This computer is already authorized."  A nifty little continuous loop that neatly precludes me from using the app on any device except the one I used to purchase it.
    But it gets better.  In stumbling around trying to figure out what's going on here, I accessed "My Account" using iTunes on my desktop computer (logging in with the same Apple ID I used to purchse the troublesome app).  When I click "Manage Devices," I arrive at a box that says, "These computers and devices are associated with your Apple ID for Automatic Downloads or to download previously purchased music, apps, and books..."  It then gives me a "list" showing just one device -- my iPhone.  The iPad is not shown here.  Neither is the desktop computer iTunes just told me is already authorized.  There's a button that says "Remove" next to the iPhone.  And two bigger buttons.  One says "Cancel" and the other says "Done."  There is no "add a device" option.
    So how to I associate a device with my Apple ID?  And, as a matter of fact, why aren't all the devices I registered using my Apple ID already associated with it?  I never had any of these problems till the big iOS system upgrade a few months ago.  Since which, my interactions with Apple have nearly all been nightmarish.  Apple obviously put the WAY wrong guy in charge of iOS development.
    Oh.  And BTW, when I look at the drop-down menu for choosing the "product" I'm having a problem with, only about half the devices registered with my Apple ID appear there.  And I have no clue what kind of iPad I currently have.  I have the warranty right in front of me, and all it says is "iPad WiFi 64GB Black." No doubt if I try to solve this using Apple phone support, I'll have to pay $20 to straighten out Apple's problem for them.  Which is why I'm here.

    My guess is you're using a long Apple ID and just omitted or mistyped a letter sometime, or something similar.
    Anyway, the way to recover is this:
    You cannot change ownership of the mistyped Apple ID to the correct one.  After all, the mistyped one purchased it.  However, you can authorize purchases from the mistyped Apple ID on your devices by doing Store > Authorize This Computer on iTunes on your computer, and enter the mistyped Apple ID and password.  Then sync again and you'll be all set.
    When you change computer (e.g., sell your current one and buy a replacement), you'll have to repeat this process.

  • I have two Apple IDs - one associated with iPad and iPhone and the other associated with iMac and MacAir. I am going to lose the former e-mail address imminently and would like to associate all devices with just one ID. How do I do this? Thanks

    I have two Apple IDs - one associated with iPad and iPhone and the other associated with iMac and MacAir. I am going to lose the former e-mail address imminently and would like to associate all devices with just one ID. How do I do this? Thanks

    Thanks - I guess it is like there were two of me!
    I bought the iPhone first and it seemed natural to link it to the (work) e-mail address which was in constant use. The iMac for home use came next and it seemed natural to use my home e-mail address, particularly as I knew by then that I would lose the work address after my imminent retirement. The same logic went for the recent puchase of the MacAir. I am not sure what happened with the iPad (also a recent purchase) - iTunes seemed to puch me towards the same ID as the iPhone.
    It is not a huge problem - just makes my persona look schizoid! Otherwise very happy with everything Apple.

  • Unsuccessful trying to use AXL API 9.1

    I am developing 3-rd party application in C#/Framework 4.5 project and trying to use AXL API 9.1 sending “addUser” requests to the Call Manager. It is not recognizing that I am trying to use 9.1 version and working like I am using version 6.1 or something like this.
    Our firm have VM ESXI 5.0.0 and CUCM 9.0 on it. We are using SPA504G, 7975G, 7940G for testing.
    I took the example of SOAP envelope from Cisco development cookbook:
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:axl=http://www.cisco.com/AXL/API/9.1"> ….
    If I am using old version of fields, like this:
    <lastname>MySoname</lastname>
    I’ll receive the response: 
    …<axl:getUserResponse xmlns:axl=http://www.cisco.com/AXL/API/6.1…
    If I’ll try to use fields like it described in the 9.1 Cisco Unified CM AXL Schema Reference,  that means:
    <lastName>MySoname</lastName>
    I’ll receive the error response that the null can’t be placed in mandatory field.
    It will be great if somebody can help me to understand what is wrong.

    Ok.  I found the possibility to add http header using HttpWebRequest class like Aaron suggest me.
    Here it is:
    HttpWebRequest_Instance.Headers.Add("SOAPAction", "CUCM:DB ver=9.1");
    In case of declaring version 9.1 the server returns error 599. In case of version 8.5 - error 500. If I am declaring version 7.1 it works but ones more I can't use schema 9.1. I must go with fields from 7.1 schema.
    Anybody? Any suggestions why it is not working?

  • Use WMI to Associate win32_SerialPort device with win32_LogicalDrive mapping

    Hi,
    My c# application requires to flash a micro-controller, which has been configured as a removable device and is connectable by means of a Virtual Com Port.
    So, I need to recognise the volume label of the mapped drive and perform the flash using a simple file copy.
    The problem is that some of the micro-controllers produce slightly different volume labels making it difficult to identify all possible cases via string comparison.
    I know how to retrieve drive info for removable devices using DriveInfo.GetDrives(). This gives me the drive letter and the volume label
    removableDriveList = (List<RemovableDrive>)DriveInfo.GetDrives()
            .Where(d => d.DriveType == DriveType.Removable)
            .Select(s => new RemovableDrive
                    Drive = s.Name,
                    Label = s.VolumeLabel
                }).ToList();
     I know how to detect the com port and recognisable description of the development boards using WMI to query Win32_SerialPorts.
    ManagementObjectCollection collection;
    using (var searcher = new ManagementObjectSearcher(@"Select * From Win32_SerialPort"))
            collection = searcher.Get();
    var removableDevices = from ManagementObject x in collection
        where x.Properties["Name"].Value.ToString().Contains("MyManufacturer")
        select x;
        portName = (String)(removableDevices.First().GetPropertyValue("DeviceID"));
    However, I can't associate the virtual com port with the drive mapping. I want to be able to say, this device with ID COM7, manufacturer "MyManufacturer", matches drive mapping "I:\My_Microcontroller".
    I noticed (from device manager properties) that they both have the same container ID and are derived from the same usb controller, however I don't know how to access the this information from each child using WMI. Is this possible?
    Thanks

    Hello Marcpolo,
    I move it to the desktop forum since it is more related with Windows Management Instrumentation development.
    Regards.
    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.

  • Correct way to use AXL API with complex types css, partition, etc. involving: JAXBElement XFkType ?

    I am trying to figure out how to use the AXL API once exploded with the wsimport as explained here...
    https://developer.cisco.com/site/collaboration/management/axl/learn/how-to/axl-java-sample-application.gsp
    ...to use complex types (partition, css, etc). 
    --> What is the correct way to do it?
    Example 1: UpdatePhone
    When incorporing a complex type into the addition or update of a component, for instance RoutePartitionName, DevicePoolName or CallingSearchSpaceName.
    his function is not working:
    public void actualizarPhone(LPhone lPhone) {
            try {
                UpdatePhoneReq axlParams = new UpdatePhoneReq();
                axlParams.setName(lPhone.getName());
                axlParams.setDescription(lPhone.getDescription());
                axlParams.setDevicePoolName(lPhone.getDevicePoolName());
                axlParams.setCallingSearchSpaceName(lPhone.getCallingSearchSpaceName());
                StandardResponse response = axlPort.updatePhone(axlParams);
                //return response.getReturn()a.toString();
            } catch (Exception e) {
                logger.error(e);
                //return new ArrayList<LPhone>();
    It seems the right thing to do set as parameter for the "set" the result of the "get" in line: setDevicePoolName(lPhone.getDevicePoolName());
    but it says: "The method setDevicePoolName(JAXBElement<XFkType>) in the type UpdatePhoneReq is not applicable for the arguments (XFkType)"
    Example 2: AddLine
    I also have this problem when adding line. 
    And I've tried at least 3 approaches, no success yet:
    1)** Using factory object to obtain an R object
    ObjectFactory factory = new ObjectFactory();
    RRoutePartition rRoutePartition = factory.createRRoutePartition();
    rRoutePartition.setName("autodial");
    2) ** Trying to create the demanded object: JAXBElement<XFkType> myself.
    JAXBElement<XFkType> jaxbElement= new JAXBElement<XFkType>(new QName ("http://www.cisco.com/AXL/API/8.5","XRoutePartition"),XFkType.class,partition);
    jaxbElement.setValue(partition3);
    line.setRoutePartitionName(jaxbElement);
    3)** Using X Objects
    XCallForwardBusy fwdBusy = new XCallForwardBusy();
    fwdBusy.setForwardToVoiceMail("true");
    AddLineReq newLine = new AddLineReq();
    XLine line = new XLine();
    line.setAlertingName("ALerting Name");
    line.setAsciiAlertingName("Alerting Name ASCII");
    line.setCallForwardBusy(fwdBusy);
    line.setDescription("Description");
    line.setPattern("5555");
    I would appreciate a clean example about how to add a line setting a partition, and an explanation about how to use JAXBElement<XFkType> objects.
    regards!

    I am trying to figure out how to use the AXL API once exploded with the wsimport as explained here...
    https://developer.cisco.com/site/collaboration/management/axl/learn/how-to/axl-java-sample-application.gsp
    ...to use complex types (partition, css, etc). 
    --> What is the correct way to do it?
    Example 1: UpdatePhone
    When incorporing a complex type into the addition or update of a component, for instance RoutePartitionName, DevicePoolName or CallingSearchSpaceName.
    his function is not working:
    public void actualizarPhone(LPhone lPhone) {
            try {
                UpdatePhoneReq axlParams = new UpdatePhoneReq();
                axlParams.setName(lPhone.getName());
                axlParams.setDescription(lPhone.getDescription());
                axlParams.setDevicePoolName(lPhone.getDevicePoolName());
                axlParams.setCallingSearchSpaceName(lPhone.getCallingSearchSpaceName());
                StandardResponse response = axlPort.updatePhone(axlParams);
                //return response.getReturn()a.toString();
            } catch (Exception e) {
                logger.error(e);
                //return new ArrayList<LPhone>();
    It seems the right thing to do set as parameter for the "set" the result of the "get" in line: setDevicePoolName(lPhone.getDevicePoolName());
    but it says: "The method setDevicePoolName(JAXBElement<XFkType>) in the type UpdatePhoneReq is not applicable for the arguments (XFkType)"
    Example 2: AddLine
    I also have this problem when adding line. 
    And I've tried at least 3 approaches, no success yet:
    1)** Using factory object to obtain an R object
    ObjectFactory factory = new ObjectFactory();
    RRoutePartition rRoutePartition = factory.createRRoutePartition();
    rRoutePartition.setName("autodial");
    2) ** Trying to create the demanded object: JAXBElement<XFkType> myself.
    JAXBElement<XFkType> jaxbElement= new JAXBElement<XFkType>(new QName ("http://www.cisco.com/AXL/API/8.5","XRoutePartition"),XFkType.class,partition);
    jaxbElement.setValue(partition3);
    line.setRoutePartitionName(jaxbElement);
    3)** Using X Objects
    XCallForwardBusy fwdBusy = new XCallForwardBusy();
    fwdBusy.setForwardToVoiceMail("true");
    AddLineReq newLine = new AddLineReq();
    XLine line = new XLine();
    line.setAlertingName("ALerting Name");
    line.setAsciiAlertingName("Alerting Name ASCII");
    line.setCallForwardBusy(fwdBusy);
    line.setDescription("Description");
    line.setPattern("5555");
    I would appreciate a clean example about how to add a line setting a partition, and an explanation about how to use JAXBElement<XFkType> objects.
    regards!

  • Has any SAP project integrated an EFTPOS device with ABAP Gui using an ActiveX controller?

    Dear Friends, I would like to know, Has any SAP Project integrated an EFTPOS Devise with ABAP Gui using ActiveX Controller? If used could you please share the Technicalities involved in them as we have a suggestion to have the same used in our Project.

    Dear Friends, I would like to know, Has any SAP Project integrated an EFTPOS Devise with ABAP Gui using ActiveX Controller? If used could you please share the Technicalities involved in them as we have a suggestion to have the same used in our Project.

  • OIM 11Unknown entity type Account with ID while using linkEventToUser() API

    I would like to link an recon event (which is in status "No User Match Found" ) to an user.The recon event is generated through target recon using reconciliation API
    I am using the API linkEventToUser() but getting the following error.
    <Error> <oracle.iam.reconciliation.impl> <IAM-5010000> <Generic Error/Information: {0}
    oracle.iam.reconciliation.exception.InvalidEventException: Unknown entity type Account with ID 2180,060
    From OIM web console if i check the Link button / option iin event management for this event is greyed out.
    There are already threads on this in the forum but they are old and no replies so i thought to post a fresh thread.
    I am also getting the same error while generating a new recon event.
    The strangest part is that this was working a few weeks back.
    Any help or idea how to proceed is highly appreciated.
    Thanks and Regards,
    Kungo.
    Edited by: Kungo on Oct 25, 2012 3:06 AM

    Any one saw this thread :)
    Is there a way to get attention on this thread from all the Gurus on this forum ?
    Please do let me know.
    Thanks and Regards,
    Kungo

  • Programming Weblogic with jmx without using weblogic api?

    Hi,
    I want to know if it is possible to program weblogic management service without
    using weblogic api but just rely on standard JMX interface and methods.
    Currently, I am relying on weblogic api weblogic.jndi.Environment and weblogic.management.MBeanHome
    interface to get the context and access the MBean Server subsystem. Can I find
    the equivalent using jmx?
    My code is as follows:
    Environment env = new Environment();
    env.setProviderUrl(url);
    env.setSecurityPrincipal(username);
    env.setSecurityCredentials(password);
    Context ctx = env.getInitialContext();
    MBeanHome home = (MBeanHome) ctx.lookup(MBeanHome.ADMIN_JNDI_NAME);
    String domain = home.getDomainName();
    homeServer = home.getMBeanServer();
    Thank you.

    Hi Ryan,
    I have looked through the documentation.
    It told me that I need to use weblogic.management.MBeanHome interface to get MBeanHome
    and from there then I can only use jmx interface.
    I presume it is not possible not to use weblogic.jar if I want to establish the
    initial connection with Weblogic server?
    Thanks.
    ryan upton <[email protected]> wrote:
    YongLeong wrote:
    Hi,
    I want to know if it is possible to program weblogic management servicewithout
    using weblogic api but just rely on standard JMX interface and methods.
    Currently, I am relying on weblogic api weblogic.jndi.Environment andweblogic.management.MBeanHome
    interface to get the context and access the MBean Server subsystem.Can I find
    the equivalent using jmx?
    My code is as follows:
    Environment env = new Environment();
    env.setProviderUrl(url);
    env.setSecurityPrincipal(username);
    env.setSecurityCredentials(password);
    Context ctx = env.getInitialContext();
    MBeanHome home = (MBeanHome) ctx.lookup(MBeanHome.ADMIN_JNDI_NAME);
    String domain = home.getDomainName();
    homeServer = home.getMBeanServer();
    Thank you.I think you'll find your answer here:
    http://edocs.bea.com/wls/docs81/jmx/index.html
    HTH
    ~Ryan

  • CAN periodic transmit message with different modes using Frame API's

    I want to transmit a CAN message periodically using Frame API's. I am able to send messages which dont have modes inside the message. For some messages having multiplexer in ".ncd " files and inside that multiplexer having different modes. Now in order to send all the modes of that message periodically by configuring them once by using Frame API's i did not  find a way. I am able to send messages but the last updated mode is only sent periodically. Is there any way that CAN message having different modes can be sent periodically, updating all modes periodically automatically using Frame API's.

    Hello Kpraveen,
    You could set the period for N*Period, N being the number of modes.  You just need to make sure your application changes the modes fast enough to update each periodic frame.
    For example, say you have 2 modes and the frame's period should be 10ms.  That means that you would like that frame to go out twice every 10ms, updating mode 1 and then mode 2.  So, that means that the frames period can be 5ms. 
    1.  It will start by updating mode1
    2.  5ms later, it will update mode2
    3.  5ms later it will update mode1 again
    mode 1 really has a  period of 10ms...
    You just have to make sure that you can update the frame fast enough, or switch between modes fast enough, or you will send the same mode twice.
    Let me know if this helps, or if I an not understanding this properly.  Have a great day.
    O. Proulx
    National Instruments
    www.ni.com/support

  • HT203433 An apple id is already associated with my device ( i signed out of exising id and created a new one) and wont let me associate my device with a new apple id for 85 days. How do i get my new content purchased with new id onto my ipad?

    Hi, can anyone please tell me how I can receive downloads onto my ipad that i have purchased with a new apple id via itunes on my pc? I added a new apple id and signed out of existing one on my ipad and now receive a message saying that i cannot associate a new id for 85 days - and it won't let me download my purchased content onto the ipad even though i can purchase new content on my pc with the new id. The new content shows in my purchases when accessed on my ipad but the message appears when i attempt the download. I have set up the new id on both devices.
    Any suggestions?

    Yes. I have tried that. When I use the ID I had before, it sets it up as a new account and I don't want to lose my stats attached to my old account.
    Let's say that my old nickname was "user10" and I used the email, "[email protected]" for my apple id. I changed my apple id to "[email protected]" and it changed my game center account to "mynew" and somehow I am friends with my old acct, "user10". I tried getting a password reset for "user10" but I apparently don't know my own birthday, which is possible because I usually give a false one, but the same false one each time.

  • Can I associate a device with more than 1 iCloud account, and still track on find my iPad?

    After one of my offices' iPads was stolen, I was made responsible for tracking them. I'd like to add them all to my iCloud account. If they were added to another iCloud account, could I still track them on mine? They are all retina iPads.

    You have to be signed into the iCloud account you are trying to track in order to track it, either on icloud.com or on the Find My iPhone App.  If you added them all to your iCloud account, they would all have full access to all your synced data: contacts, calendars, notes, photo stream photos, your iCloud email account, etc.  They would also all be backing up to your iCloud account, which would no doubt require a large storage upgrade to hold them all.  Also any data they sync with the account would be merged with yours so you would all end up with each other's contacts, calendars, etc. on your devices.
    So it's really not a good idea to try to put them all on your account.  Instead, you'll just need to get everyone's iCloud login credentials if they expect you to be able to log in and track all of these devices.

  • Want to globally manage all Wireless devices with wired ones using SNMP

    Wired devices are already managed, but wireless devices of particular interest which I desire to manage are:
    Autonomous:
    AIR-AP1121G-J-K9
    AIR-AP1121G-J-K9
    AIR-AP1131AG-J-K9
    AIR-AP1131AG-P-K9
    AIR-AP1131AG-J-K9
    AIR-AP1131AG-P-K9
    AIR-AP1210
    AIR-AP1210
    AIR-AP1210
    AIR-AP1210
    AIR-AP1231G-J-K9
    AIR-AP1231G-J-K9
    AIR-AP1232AG-J-K9
    AIR-AP1232AG-P-K9
    AIR-AP1232AG-J-K9
    AIR-AP1232AG-P-K9
    AIR-AP1242AG-P-K9
    AIR-AP1242AG-P-K9
    WLC
    4400 Series Wireless LAN Controller
    2100 Series Wireless LAN Controller
    3750 Series Integrated Wireless LAN Controller
    Is there any single document which compares which traps/alerts are available in which devices/IOS versions or must I pull teeth to compare them?
    A simple reference chart/URL would be quite helpful.

    The AIR-AP1121G-J-K9 gives off certain traps. What are they?
    Likewise, all of the following devices also give off traps.
    AIR-AP1121G-J-K9
    AIR-AP1131AG-J-K9
    AIR-AP1131AG-P-K9
    AIR-AP1131AG-J-K9
    AIR-AP1131AG-P-K9
    AIR-AP1210
    AIR-AP1210
    AIR-AP1210
    AIR-AP1210
    AIR-AP1231G-J-K9
    AIR-AP1231G-J-K9
    AIR-AP1232AG-J-K9
    AIR-AP1232AG-P-K9
    AIR-AP1232AG-J-K9
    AIR-AP1232AG-P-K9
    AIR-AP1242AG-P-K9
    AIR-AP1242AG-P-K9
    WLC
    4400 Series Wireless LAN Controller
    2100 Series Wireless LAN Controller
    3750 Series Integrated Wireless LAN Controller
    I'm sure that not all devices list above give off the exact same traps nor do all the devices support the same IOS versions.
    That said, looking at which devices support which IOS versions and then looking into each IOS version "ASSUMING" that every device supporting that IOS supports all of those traps is an assumption which network managers cannot take.
    So back to my original question.
    Where can I find a list of Alerts supported by each of the above listed products?
    Walt

  • XI interface with third party using Java API

    Hi All,
    We have the following requirement:
    XI needs to interface with an external third party system which has JAVA API capabilities and the corresponding JAR files available to us.
    I have seen a few threads where it was mentioned that we could call the Java methods directly in User Defined functions:
    Process Integration (PI) & SOA Middleware
    My question: Is this approach feasible in our scenario? Also I guess we do not need to configure any adapter for this Java Method call within the UDF.
    Your help will be greatly appreciated and rewarded.
    Regards,
    Jai.

    Thanks Stefan.
    Our requirement has slightly changed. We have installed a thirdparty application on XI Server (within our network , inside filrewall). The application with Java API Jar file. All it does is a Lookup and retruns a value.
    We are planning to import the Jar file into imported Archives and call the method within a UDF.
    Is this feasible? I am going to give it a try.
    Your expert comments are greatly appreciated.
    Thanks
    Jai

  • HT5622 Why when I try to download songs onto my iPhone from my iPad, it pops up and says "This device is already associated with an Apple ID, You can download past purchases on this device with just one Apple ID every 90 days.

    Why when I try to download songs onto my iPhone from my iPad, it pops up and says "This device is already associated with an Apple ID, You can download past purchases on this device with just one Apple ID every 90 days. You cannot associate this device with a different Apple ID for 90 days
    (Note, mine says 28 days because I have been waiting for a fair bit for this to go away.)

    You can't keep changing the ID you use with iTunes, you are limited to once every 90 days.

Maybe you are looking for

  • Addressbook:GlobalSharedAddressBook on OS X Lion Server

    For the users' shared contacts his address book resides on the server side under his home folder in subfolders below: ~/Library/Application\ Support/AddressBook/Sources/, and neither as before for SL servers under /Library/Addressbooks/ nor under /Li

  • I got my new iPhone 4s today and every time I try to open my Picture file the screen goes black?

    I also can't see the file through clicking on a picture in the camera app just after taking it? please help! how do I fix this?

  • MWI for extensions in different partition

    Hello, We are working on an IPCCx implementation and currently have the ICD controlled line in a different partition. The partition also contains the CTI Ports. The calling search space of the line is set to our standard search space for our office.

  • CPU Patch Project

    This is the project i have been assigned need suggestion, queris to check CPU,(qualified DBs), Road map...etc, any other suggestion PHASE I 1) Identify all the existing oracle versions across the board for the preparation of cpu patch ===> you can lo

  • Urxvtc.tmux,weechat

    Hello there guys. I'm trying to start weechat inside tmux in an urxvtc window,so I've tried urxvtc -e tmux -c weechat-curses But that doesn't seem to work,there is a problem with tmux -c weechat-curses,cause every command that I start with tmux -c do