Unregister adapters from URM

Hi,
Does anyone know the correct way to un-register an URM-adapter from URM? I am developing a custom records adapter, and registering it creates a nice new item in URM. But when I alter the registration or want to redo it, I get all these new registrations: the old ones cannot be deleted, or so it seems.
Can someone help me out?
Regards,
Jeroen van Veldhuizen
Redora

bounce

Similar Messages

  • Migration adapters from OAI 4.1.3 to 9i

    Hello,
    I am helping a customer who is in the process of upgrading an OAI 4.1.3 hub to 9.0.4 (they're actually going to 10.x, but there is no direct path from 4.1.3 to 10.x). The customer has one or more custom adapters that will need to be migated in the process. When they attempt to start these adapters on there 9.0.4 hub and they get the following errors in the adapter log files.
    java.lang.NoSuchMethodError: java.util.Vector: method
    add(Ljava/lang/Object;)Z not found
    at oracle.oai.agent.proxy.AgentProxy.getDBConnectionInfo(Compiled Code)
    at oracle.oai.agent.proxy.AgentProxy.initialize(AgentProxy.java:255)
    at oracle.oai.agent.proxy.AgentProxy.<init>(AgentProxy.java:385)
    at oracle.oai.agent.service.AgentService.run(AgentService.java:41)
    at java.lang.Thread.run(Thread.java:459)
    Is this due to changes in the adapter sdk's between 4.1.3 and 9.0.4? If so, is anyone aware of a document that describes migrating adapters from the 4.1.3 sdk to the 9.0.4 sdk?
    TIA,
    Cliff

    i have another errormessage in the exportdb.log file and so the solution doesnt work. But it was a good idea. i have never looked before in the exportdb.log file. i hope the next lines can help to find a solution.
    exportdb.log: (last entrys)
    GetExitCode returned TRUE (success)
    return value = 0
    Trying to stop database
    IDS stopped
    Trying to start database
    IDS started
    ExportDatabase, returning [Failure, Windows-based W1 Migration Verification]
    the status.html window(from DMA) shows the following:
    09:42:55 AM] Archive built successfully.
    [09:42:55 AM] Verifying integrity of backed up Cisco CallManager database and directory data.
    [09:42:55 AM] This can take a long time, depending on the size of the databases and directories. Be patient.
    [10:32:11 AM] Failure, Windows-based W1 Migration Verification
    [10:32:11 AM] Failed to verify Cisco CallManager database and directory backed up data.
    [10:32:11 AM] The database and/or directory cannot be migrated as they are.
    [10:32:11 AM] Correct the database and/or directory information and run DMA again.
    [10:32:11 AM] Verifcation of DB in IDS failed. Retaining the TAR file as it is.
    the windows-server event log shows no error.

  • Interacting with adapters from Spring Component, especially db adapter

    hello everybody,
    I try to interact with adapters from my Spring component. I actually try to start my query and to receive the result in my Spring Component.
    I've already search for documentation about api to communicate with it or documentation about the classes created during the db adapter creation... But .. no result..
    So I'm trying to do it my self but I encounter some problems when I'm trying to call the query on the dbAdapter and trying to "play" with the classes created by the db adapter.
    Could anyone say me HOW we can interact with adapters from Spring component (in the class bean)?
    Also, how can I access to the variables? Is there an equivalent of "getVariableData" and "setVariableData" that I can use in the Spring Component? with which jar and/or import?
    I copy/paste what I've already done.
    So My Composite contains a Web Service "getStatusByCC" which is linked to a Mediator. The Mediator calls the Spring Component "SprinCallDB" and the Spring Component is linked to a database adapter called "getCreditValidation". The transformation in the mediator component is correct (I test it without the call to the db and it works fine)
    First, there is the classes created and added to my project by the db adapter :
    Creditcardinfo.java
    package com.oracle.xmlns.pcbpel.adapter.db.top.getcreditvalidation;
    import javax.xml.bind.annotation.XmlAccessType;
    import javax.xml.bind.annotation.XmlAccessorType;
    import javax.xml.bind.annotation.XmlElement;
    import javax.xml.bind.annotation.XmlType;
    * <p>Java class for Creditcardinfo complex type.
    * <p>The following schema fragment specifies the expected content contained within this class.
    * <pre>
    * &lt;complexType name="Creditcardinfo">
    * &lt;complexContent>
    * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
    * &lt;sequence>
    * &lt;element name="ccnumber">
    * &lt;simpleType>
    * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
    * &lt;maxLength value="20"/>
    * &lt;/restriction>
    * &lt;/simpleType>
    * &lt;/element>
    * &lt;element name="status" minOccurs="0">
    * &lt;simpleType>
    * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}string">
    * &lt;maxLength value="20"/>
    * &lt;/restriction>
    * &lt;/simpleType>
    * &lt;/element>
    * &lt;/sequence>
    * &lt;/restriction>
    * &lt;/complexContent>
    * &lt;/complexType>
    * </pre>
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "Creditcardinfo", propOrder = {
    "ccnumber",
    "status"
    public class Creditcardinfo {
    @XmlElement(required = true)
    protected String ccnumber;
    protected String status;
    * Gets the value of the ccnumber property.
    * @return
    * possible object is
    * {@link String }
    public String getCcnumber() {
    return ccnumber;
    * Sets the value of the ccnumber property.
    * @param value
    * allowed object is
    * {@link String }
    public void setCcnumber(String value) {
    this.ccnumber = value;
    * Gets the value of the status property.
    * @return
    * possible object is
    * {@link String }
    public String getStatus() {
    return status;
    * Sets the value of the status property.
    * @param value
    * allowed object is
    * {@link String }
    public void setStatus(String value) {
    this.status = value;
    CreditcardinfoCollection.java
    package com.oracle.xmlns.pcbpel.adapter.db.top.getcreditvalidation;
    import java.util.ArrayList;
    import java.util.List;
    import javax.xml.bind.annotation.XmlAccessType;
    import javax.xml.bind.annotation.XmlAccessorType;
    import javax.xml.bind.annotation.XmlElement;
    import javax.xml.bind.annotation.XmlType;
    * <p>Java class for CreditcardinfoCollection complex type.
    * <p>The following schema fragment specifies the expected content contained within this class.
    * <pre>
    * &lt;complexType name="CreditcardinfoCollection">
    * &lt;complexContent>
    * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
    * &lt;sequence>
    * &lt;element name="Creditcardinfo"
    * type="{http://xmlns.oracle.com/pcbpel/adapter/db/top/getCreditValidation}Creditcardinfo" maxOccurs="unbounded" minOccurs="0"/>
    * &lt;/sequence>
    * &lt;/restriction>
    * &lt;/complexContent>
    * &lt;/complexType>
    * </pre>
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "CreditcardinfoCollection", propOrder = {
    "creditcardinfo"
    public class CreditcardinfoCollection {
    @XmlElement(name = "Creditcardinfo")
    protected List<Creditcardinfo> creditcardinfo;
    * Gets the value of the creditcardinfo property.
    * <p>
    * This accessor method returns a reference to the live list,
    * not a snapshot. Therefore any modification you make to the
    * returned list will be present inside the JAXB object.
    * This is why there is not a <CODE>set</CODE> method for the creditcardinfo property.
    * <p>
    * For example, to add a new item, do as follows:
    * <pre>
    * getCreditcardinfo().add(newItem);
    * </pre>
    * <p>
    * Objects of the following type(s) are allowed in the list
    * {@link Creditcardinfo }
    public List<Creditcardinfo> getCreditcardinfo() {
    if (creditcardinfo == null) {
    creditcardinfo = new ArrayList<Creditcardinfo>();
    return this.creditcardinfo;
    GetCreditValidationSelectCcnb.java
    package com.oracle.xmlns.pcbpel.adapter.db.top.getcreditvalidation;
    import javax.xml.bind.annotation.XmlAccessType;
    import javax.xml.bind.annotation.XmlAccessorType;
    import javax.xml.bind.annotation.XmlElement;
    import javax.xml.bind.annotation.XmlType;
    * <p>Java class for getCreditValidationSelect_ccnb complex type.
    * <p>The following schema fragment specifies the expected content contained within this class.
    * <pre>
    * &lt;complexType name="getCreditValidationSelect_ccnb">
    * &lt;complexContent>
    * &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
    * &lt;sequence>
    * &lt;element name="ccnb" type="{http://www.w3.org/2001/XMLSchema}string"/>
    * &lt;/sequence>
    * &lt;/restriction>
    * &lt;/complexContent>
    * &lt;/complexType>
    * </pre>
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "getCreditValidationSelect_ccnb", propOrder = {
    "ccnb"
    public class GetCreditValidationSelectCcnb {
    @XmlElement(required = true)
    protected String ccnb;
    * Gets the value of the ccnb property.
    * @return
    * possible object is
    * {@link String }
    public String getCcnb() {
    return ccnb;
    * Sets the value of the ccnb property.
    * @param value
    * allowed object is
    * {@link String }
    public void setCcnb(String value) {
    this.ccnb = value;
    ObjectFactory.java
    package com.oracle.xmlns.pcbpel.adapter.db.top.getcreditvalidation;
    import javax.xml.bind.JAXBElement;
    import javax.xml.bind.annotation.XmlElementDecl;
    import javax.xml.bind.annotation.XmlRegistry;
    import javax.xml.namespace.QName;
    * This object contains factory methods for each
    * Java content interface and Java element interface
    * generated in the com.oracle.xmlns.pcbpel.adapter.db.top.getcreditvalidation package.
    * <p>An ObjectFactory allows you to programatically
    * construct new instances of the Java representation
    * for XML content. The Java representation of XML
    * content can consist of schema derived interfaces
    * and classes representing the binding of schema
    * type definitions, element declarations and model
    * groups. Factory methods for each of these are
    * provided in this class.
    @XmlRegistry
    public class ObjectFactory {
    private final static QName CreditcardinfoCollectionQNAME = new QName("http://xmlns.oracle.com/pcbpel/adapter/db/top/getCreditValidation", "CreditcardinfoCollection");
    private final static QName GetCreditValidationSelectCcnbInputParametersQNAME = new QName("http://xmlns.oracle.com/pcbpel/adapter/db/top/getCreditValidation", "getCreditValidationSelect_ccnbInputParameters");
    * Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.oracle.xmlns.pcbpel.adapter.db.top.getcreditvalidation
    public ObjectFactory() {
    * Create an instance of {@link CreditcardinfoCollection }
    public CreditcardinfoCollection createCreditcardinfoCollection() {
    return new CreditcardinfoCollection();
    * Create an instance of {@link GetCreditValidationSelectCcnb }
    public GetCreditValidationSelectCcnb createGetCreditValidationSelectCcnb() {
    return new GetCreditValidationSelectCcnb();
    * Create an instance of {@link Creditcardinfo }
    public Creditcardinfo createCreditcardinfo() {
    return new Creditcardinfo();
    * Create an instance of {@link JAXBElement }{@code <}{@link CreditcardinfoCollection }{@code >}}
    @XmlElementDecl(namespace = "http://xmlns.oracle.com/pcbpel/adapter/db/top/getCreditValidation", name = "CreditcardinfoCollection")
    public JAXBElement<CreditcardinfoCollection> createCreditcardinfoCollection(CreditcardinfoCollection value) {
    return new JAXBElement<CreditcardinfoCollection>(_CreditcardinfoCollection_QNAME, CreditcardinfoCollection.class, null, value);
    * Create an instance of {@link JAXBElement }{@code <}{@link GetCreditValidationSelectCcnb }{@code >}}
    @XmlElementDecl(namespace = "http://xmlns.oracle.com/pcbpel/adapter/db/top/getCreditValidation", name = "getCreditValidationSelect_ccnbInputParameters")
    public JAXBElement<GetCreditValidationSelectCcnb> createGetCreditValidationSelectCcnbInputParameters(GetCreditValidationSelectCcnb value) {
    return new JAXBElement<GetCreditValidationSelectCcnb>(_GetCreditValidationSelectCcnbInputParameters_QNAME, GetCreditValidationSelectCcnb.class, null, value);
    package-info.java
    @javax.xml.bind.annotation.XmlSchema(namespace = "http://xmlns.oracle.com/pcbpel/adapter/db/top/getCreditValidation", elementFormDefault = javax.xml.bind.annotation.XmlNsForm.QUALIFIED)
    package com.oracle.xmlns.pcbpel.adapter.db.top.getcreditvalidation;
    GetCreditValidation_ptt.java
    package getcreditvalidation.validationforccwithspring.creditcardvalidation.db.adapter.pcbpel.com.oracle.xmlns;
    import javax.jws.WebMethod;
    import javax.jws.WebParam;
    import javax.jws.WebResult;
    import javax.jws.WebService;
    import javax.jws.soap.SOAPBinding;
    import javax.jws.soap.SOAPBinding.ParameterStyle;
    import javax.xml.bind.annotation.XmlSeeAlso;
    import javax.xml.ws.Action;
    // !DO NOT EDIT THIS FILE!
    // This source file is generated by Oracle tools
    // Contents may be subject to change
    // For reporting problems, use the following
    // Version = Oracle WebServices (11.1.1.0.0, build 111209.0821.28162)
    @WebService(targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/db/CreditCardValidation/validationForCCWithSpring/getCreditValidation",
    name="getCreditValidation_ptt")
    @XmlSeeAlso(
    { com.oracle.xmlns.pcbpel.adapter.db.top.getcreditvalidation.ObjectFactory.class })
    public interface GetCreditValidation_ptt
    @WebMethod
    @SOAPBinding(parameterStyle=ParameterStyle.BARE)
    @Action(input="http://xmlns.oracle.com/pcbpel/adapter/db/CreditCardValidation/validationForCCWithSpring/getCreditValidation/getCreditValidation_ptt/getCreditValidationSelectRequest",
    output="http://xmlns.oracle.com/pcbpel/adapter/db/CreditCardValidation/validationForCCWithSpring/getCreditValidation/getCreditValidation_ptt/getCreditValidationSelectResponse")
    @WebResult(targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/db/top/getCreditValidation",
    partName="CreditcardinfoCollection", name="CreditcardinfoCollection")
    public com.oracle.xmlns.pcbpel.adapter.db.top.getcreditvalidation.CreditcardinfoCollection getCreditValidationSelect(@WebParam(targetNamespace="http://xmlns.oracle.com/pcbpel/adapter/db/top/getCreditValidation",
    partName="getCreditValidationSelect_inputParameters", name="getCreditValidationSelect_ccnbInputParameters")
    com.oracle.xmlns.pcbpel.adapter.db.top.getcreditvalidation.GetCreditValidationSelectCcnb getCreditValidationSelect_inputParameters);
    Here there is the classes linked to the Spring Component and the configuration file :
    SpringCallDB
    <?xml version="1.0" encoding="windows-1252" ?>
    <beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:util="http://www.springframework.org/schema/util"
    xmlns:jee="http://www.springframework.org/schema/jee"
    xmlns:lang="http://www.springframework.org/schema/lang"
    xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:tx="http://www.springframework.org/schema/tx"
    xmlns:sca="http://xmlns.oracle.com/weblogic/weblogic-sca"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.5.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd http://www.springframework.org/schema/jee http://www.springframework.org/schema/jee/spring-jee-2.5.xsd http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.5.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd http://www.springframework.org/schema/tool http://www.springframework.org/schema/tool/spring-tool-2.5.xsd http://xmlns.oracle.com/weblogic/weblogic-sca META-INF/weblogic-sca.xsd">
    <!--Spring Bean definitions go here-->
    <sca:service name="CCSpringService" target="CCSpringImpl"
    type="validationForCC.spring.service.api.ISpringCCService"/>
    <bean id="CCSpringImpl" class="validationForCC.spring.service.impl.SpringCCServiceImpl">
    <property name="dbRequest" ref="getCreditValidation"/>
    </bean>
    <sca:reference type="getcreditvalidation.validationforccwithspring.creditcardvalidation.db.adapter.pcbpel.com.oracle.xmlns.GetCreditValidation_ptt"
    name="getCreditValidation"/>
    </beans>
    CreditCardNumber.java
    package validationForCC.spring.model;
    public class CreditCardNumber {
    private String ccNumber;
    public CreditCardNumber() {
    super();
    public void setCcNumber(String nb){
    this.ccNumber = nb;
    public String getCcNumber(){
    return ccNumber;
    Response.java
    package validationForCC.spring.model;
    public class Response {
    String reply;
    public Response() {
    super();
    public void setReply(String rep){
    this.reply = rep;
    public String getReply(){
    return reply;
    ISpringCCService.java
    package validationForCC.spring.service.api;
    import validationForCC.spring.model.CreditCardNumber;
    import validationForCC.spring.model.Response;
    public interface ISpringCCService {
    * @param ccn
    * @return
    public Response getCCStatus(CreditCardNumber ccn);
    SpringCCServiceImpl.java
    package validationForCC.spring.service.impl;
    import com.oracle.xmlns.pcbpel.adapter.db.top.getcreditvalidation.*;
    import java.util.List;
    import javax.jws.WebParam;
    import validationForCC.spring.model.CreditCardNumber;
    import validationForCC.spring.model.Response;
    public class SpringCCServiceImpl {
    public SpringCCServiceImpl() {
    super();
    private getcreditvalidation.validationforccwithspring.creditcardvalidation.db.adapter.pcbpel.com.oracle.xmlns.GetCreditValidation_ptt dbRequest;
    public Response getCCStatus(CreditCardNumber ccn){
    Response resp = new Response();
    CreditcardinfoCollection resultSet;
    GetCreditValidationSelectCcnb selectCCNb = new GetCreditValidationSelectCcnb();
    selectCCNb.setCcnb(ccn.getCcNumber());
    resultSet = dbRequest.getCreditValidationSelect(selectCCNb);
    resp.setReply((resultSet.getCreditcardinfo().get(0).getStatus()));
    return resp;
    public getcreditvalidation.validationforccwithspring.creditcardvalidation.db.adapter.pcbpel.com.oracle.xmlns.GetCreditValidation_ptt getDbRequest(){
    return dbRequest;
    public void setDbRequest(getcreditvalidation.validationforccwithspring.creditcardvalidation.db.adapter.pcbpel.com.oracle.xmlns.GetCreditValidation_ptt dbReq){
    this.dbRequest = dbReq;
    So, the line which is the cause of the error is the following :
    resultSet = dbRequest.getCreditValidationSelect(selectCCNb);
    in the SpringCCServiceImpl.java class
    And there is the error I obtain :
    +weblogic.sca.api.ScaException: java.lang.RuntimeException: BINDING.JCA-12563 Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'getCreditValidationSelect' failed due to: DBReadInteractionSpec Execute Failed Exception. Query name: [getCreditValidationSelect], Descriptor name: [getCreditValidation.Creditcardinfo]. Caused by Exception [EclipseLink-6003] (Eclipse Persistence Services - 2.3.1.v20111018-r10243): org.eclipse.persistence.exceptions.QueryException Exception Description: The number of arguments provided to the query for execution does not match the number of arguments in the query definition. Query: ReadAllQuery(name="getCreditValidationSelect" referenceClass=Creditcardinfo ). See root exception for the specific exception. This exception is considered not retriable, likely due to a modelling mistake. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.
    Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'getCreditValidationSelect' failed due to: DBReadInteractionSpec Execute Failed Exception. Query name: [getCreditValidationSelect], Descriptor name: [getCreditValidation.Creditcardinfo]. Caused by Exception [EclipseLink-6003] (Eclipse Persistence Services - 2.3.1.v20111018-r10243): org.eclipse.persistence.exceptions.QueryException Exception Description: The number of arguments provided to the query for execution does not match the number of arguments in the query definition. Query: ReadAllQuery(name="getCreditValidationSelect" referenceClass=Creditcardinfo ). See root exception for the specific exception. This exception is considered not retriable, likely due to a modelling mistake. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution.
    java.lang.RuntimeException: BINDING.JCA-12563 Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'getCreditValidationSelect' failed due to: DBReadInteractionSpec Execute Failed Exception. Query name: [getCreditValidationSelect], Descriptor name: [getCreditValidation.Creditcardinfo]. Caused by Exception [EclipseLink-6003] (Eclipse Persistence Services - 2.3.1.v20111018-r10243): org.eclipse.persistence.exceptions.QueryException Exception Description: The number of arguments provided to the query for execution does not match the number of arguments in the query definition. Query: ReadAllQuery(name="getCreditValidationSelect" referenceClass=Creditcardinfo ). See root exception for the specific exception. This exception is considered not retriable, likely due to a modelling mistake. ". The invoked JCA adapter raised a resource exception. Please examine the above error message ca
    Exception occured when binding was invoked. Exception occured during invocation of JCA binding: "JCA Binding execute of Reference operation 'getCreditValidationSelect' failed due to: DBReadInteractionSpec Execute Failed Exception. Query name: [getCreditValidationSelect], Descriptor name: [getCreditValidation.Creditcardinfo]. Caused by Exception [EclipseLink-6003] (Eclipse Persistence Services - 2.3.1.v20111018-r10243): org.eclipse.persistence.exceptions.QueryException Exception Description: The number of arguments provided to the query for execution does not match the number of arguments in the query definition. Query: ReadAllQuery(name="getCreditValidationSelect" referenceClass=Creditcardinfo ). See root exception for the specific exception. This exception is considered not retriable, likely due to a modelling mistake. ". The invoked JCA adapter raised a resource exception. Please examine the above error message carefully to determine a resolution. +
    Any idea is welcome! :)
    If you have great urls to communicate with adapters and variables from spring component, don't hesitate to post it!
    Thanks in advance,
    Sophie
    Edited by: 953383 on Sep 18, 2012 6:41 AM
    Edited by: 953383 on Sep 18, 2012 6:43 AM
    Edited by: 953383 on Sep 18, 2012 6:46 AM

    Hello,
    Finally, I can interact with my db adapter.
    But, I ask you the following question : is there any documentation on the manner to interact with adapters and other component of the suite and on all classes generated?
    Thanks in advance,
    Sophie

  • No S-Video and composite video cable adapters from Apple?

    Hello.
    Is it me or does Apple's http://store.apple.com/us/browse/home/shop_mac/mac_accessories/cables/cable_choo ser not carry any video cable adapters that go to S-Video and composite inputs (an old Panasonic projector TV from Y2K) from MacBook Pros (2008 and 2012 models)? This is just for watching fullscreen videos.
    Thank you in advance.

    Courcoul wrote:
    Might want to canvass Mom & Pop computer stores in the area, that usually don't have such a furious inventory turnover rate as the big chains, and maybe you'll find what you need. Or look in eBay, Amazon, etc. Note that you don't NEED an Apple-labeled adapter, just one that will plug in whatever ports you have left and gives the required output.
    OK and thanks. I tried to find on big retailer stores online like Best Buy, Fry's Electronics, Office Max, Radio Shack, etc. but had no luck. Or maybe I am not searching correctly (DVI S-Video and DVI composite keywords as two examples)? I did find Apple's on Amazon.com based on the model number from someone on comp.sys.mac.system newsgroup: http://www.amazon.com/APPLE-M9267G-DVI-Video-Adapter/dp/B0000ACOBL/ ...

  • How to unregister Macbook from one apple-id and register to an other

    I have an iphone and an ipad with my own apple-id. My son bought me a macbook but installed and registered it with his own apple-id, instead of with mine.
    I want to unregister the macbook from my son's apple-id and registers it with my apple-id, so I can synchronize with icloud all my devices.
    I did some investigation.
    Till now evenhow I see two ways and I am not sure which one to choose.
    1. On the Macbook I can go to supportprofile.apple.com. This is the My Support Profile of my son. I can remove the Macbook here. Now I can do the same on my ipad with my apple-id and add and register the Macbook as a new product.
    2. On the Macbook I can go to Itunes>Store>Show account and remove the Macbook here. Now remove the authorization of my son in Itunes>Store>Remove authorization and then add the authorization of my apple-id.
    The second way seems me a little more complete but I am not sure. I found the information here http://support.apple.com/kb/HT4627?viewlocale=nl_NL&locale=nl_NL and here http://support.apple.com/kb/HT1420?viewlocale=nl_NL
    I am also not sure if I am complete with all the steps.
    I hope anybody can inform and help me with this problem and maybe mention risks.
    I have a dutch Macbook with Lion, so maybe the terms are not totaly equivalent to the English terms in the menu's.

    You have to do both things: remove the MacBook Air from his Apple ID in http://supportprofile.apple.com and add it to your Apple ID, and deauthorize the Mac from the iTunes Store. This should be enough.
    After authorizing your Mac with your Apple ID, open the Mac App Store, go to Purchases and accept all the listed apps, which should be iPhoto, iMovie and GarageBand. If the Mac was purchased after October 1st, you can also accept Keynote, Pages and Numbers

  • How to disable iMessage for a specific contact/How to unregister iMessage from former device

    I switched from an iPhone 4 to a Galaxy S3. When my wife who still has an iPhone 4 tries to text me it still sends the message as an iMessage and I NEVER receive the text on my Galaxy S3. It still shows the little blue bubble next to my name when starting a new text thread. So I checked with about 4 other iPhone users that text me on a regular basis and I'm not receiving any of their messages either.
    If the iPhone users turn off iMessage the text comes right through. However I dont expect all the iPhone users on my contact list to turn off the iMessage feature just so they can text me.
    I no longer have my old iPhone. I traded it in at Best Buy so there's no way of going back in the phone to change any settings. The iPhone was wiped of all data and settings anyway before I traded it in.
    I took my wifes iPhone and deleted my contact. Then I added it back. Still shows my name as iMessage. I took my e-mail address out of my contact entry on her phone and it still shows my name as iMessage.
    I logged into "Apple Support - My Support Profile" to try to unregister my device as suggested in another forum but I can't get past the "enter your purchase date" page. It was a refurbished iPhone and the date I purchased the device didn't work. Theres no way I'll ever get the original purchase date since I wasn't the original buyer of that iPhone.
    Any suggestions?? This is an urgent matter as I NEED to receive text messages from my wife and other iPhone users. My wife is willing to turn off iMessage on her iPhone but I don't expect everyone else to.
    I need to find out how to unreigster my old iPhone completely from iMessage.... or find out how to disable a specific contact on my wife's iPhone from using iMessage.

    If you still have an iPhone handy and have the SIM card you used for the phone, then temporarily put your SIM into the other phone and go into Settings and turn of iMessage. If not, the only alternative that I know of is the Support profile, However, you may what to search the More Like This section on the right side of the thread to see if any of the entries there have a green checkmark meaning they are answered.

  • Is it necessary to unregister iPod from old PC?

    I've purchased an iPod Touch and am giving my iPod Classic 80gb to my cousin. Do I have to unregister or do anything on my Windows PC with the Classic before I can connect it and get it registered on my cousin's Window PC? I'm not concerned about losing any of the songs during the syncing to the new PC. Thanks for any help you can provide!!
    Jim

    You don't need to do anything with the old iPod your cousin simply needs to connect it to his/her PC. If it is set to update automatically you'll get a message that it is linked to a different library and asking if you want to link to this one and replace all your songs etc. Press "Erase and Sync" and it will link to the new library and replace your songs with the ones that are on there.
    Your cousin will probably want to rename the iPod. When it appears in the iTunes source list click on it's name once to highlight it.
    Click on it's its name again.
    The text box will open for editing.
    Type a new name.
    Have a look here for more: How To Rename your iPod
    Alternatively your cousin can restore the iPod on his/her computer. Restoring will erase the iPod's hard drive, reload the software and put it back to default settings. Once the restore is complete follow the on screen instructions to name the iPod and automatically sync the songs and videos from the library onto the fresh installation. Press Done and the iPod will appear in iTunes and start to sync. If you want to update manually or using selected playlists uncheck the box beside the sync automatically instruction and press Done, it will default to manual mode and you can choose whatever setting you like: Restoring iPod to factory settings with iTunes 7

  • Phones getting unregistered frequently from call Manager

    Hi
    We have Call manager in our HQ and some phones in Branch in a different country. From CUCM there is a SIP trunk towards router in branch.
    Users in branch occassionally complain of phones getting unregistered.HQ and branch are connected through internet with suffiecient BQ 14 Mbps on each side.
    Thanks for helping me out.
    Regards
    Vibha

    Hi Vibha,
    You can check the Phone status messages to start with and also check the app / syslogs on the cucm corresponding to the time stamp when they are unregistered to see the reason code for the unregistered event. However, a packet capture would be ideal to check what exactly is causing the issue as we can see which packets are exchanged or getting dropped between cucm and IP phone.
    HTH
    Manish

  • How can we unregister OID from R12 when OID has crashed

    Our R12 Oracle Apps was registered with OID 10g. Somehow our OID has crashed.
    Now we have installed a new OID 10g from same installer.
    Now we want our R12 instance to deregister from old OID instance and register with new OID.
    How can I deregister old OID from R12 fully when our OID is not running and there is no hope for us to restore it?

    Did you review the following docs?
    Integrating Oracle E-Business Suite Release 12 with Oracle Internet Directory and Oracle Single Sign-On 10gR3 (10.1.4.3) [ID 376811.1]
    Troubleshooting Oracle Application Server 10g SSO and OID with Oracle E-Business Suite Release 12 [ID 380487.1]
    Thanks,
    Hussein

  • Unregister EAS from Shared Services

    Hi Together,
    I've a problem that an installation over an existing installation (same version) registered my eas to shared services what I don't want to have.
    I red in the documentation of EAS that the backwords way isn't possible.
    Somebody got a trick to bring EAS back to native security?
    Thank you very much
    //Thomas

    Hi,
    Your question is not clear. First of all, EAS will not be in native security mode. Essbase will be native security mode. From my undrestanding, I think you have externalized essbase security to shared services. If you want to bring that security back to native essbase, then:
    1. Stop essbase server.
    2. Go to $HyperionHome/AnalyticServices/bin
    3. rename the existing Essbase.sec to Essbase.sec.X
    4. copy essbase.bak_preUPM as Essbase.sec
    5. Start essbase server.
    Hope this helps!
    -Nra

  • Unregister database from the catalog

    Is it possible to cancel the registration of a database from the catalog?

    First you should delete all backups from the catalog database for the target. This isn't required but is easier accomplished with the target still registered.
    Next, you'll need to obtain the DB_KEY and DBID from the RC_DATABASE view in the RMAN schema in the catalog database. Then you'll run the following as the RMAN user connected to the RMAN catalog database in SQL*Plus.
    execute dbms_rcvcat.unregisterdatabase(DB_KEY,DBID);

  • How do i unregister from an iphone i traded someone?

    i traded phones with a co-worker because we both wanted different color iPhones.  How do I unregister myself from my old iPhone?
    Thanks

    Your carrier doesn't have anything to do with this & could care less what phone you use, as long as you pay your bill. So, ignore Radiation Mac's post.
    What each of you should have done is synced your phones to create current backups. Then, turn of iMessage, FaceTime & delete the iCloud accounts...Settings>iCloud...scroll down, Delete account. Next: Settings>General>Reset>Erase All Content & Settings. Turn the phones off, swap sims, turn the phones back on & restore from the backups you each made when you started. You can then call your carrier to insure they have the correct IMEI number for each account.

  • Unregistering an IPT from my account

    Hello there,
    I have an Ipod Touch and have just ordered a new iPhone 3g.
    I was wondering if I can now give my IPT away to a friend and if so how do I unregister it from my account and allow him to register it on his account. Whilst I am happy to give him my old machine I don't want to be getting billed everytime he buys something on it . I have been able to remove all my media from it but cannot seem to find how to switch ownership.
    Any help would be appreciated
    Cheers

    Thanks mate
    Forgot about the password thing
    I will try out the restore thing with him at the weekend
    Cheers

  • Full-Text Search in URM!!!

    Hi All,
    We have integrated Sharepoint with Oracle URM11g using the Adapter. We want do a full-text content search for the Documents in SharePoint from URM application. The FULLTEXT is search is enablled in URM as well. Please tell me how to do a fulltext content search from URM...
    Thanks

    I think there is some misunderstanding. The indexing/search will not be a functionality of URM (adapter), but of SES (adapter). This means there will be two adapters; one for URM, which will make sure that MSSO follows the policies setup by URM, and one for SES, which will index the data for searching.
    SES will have to be licensed separately!
    (see note of restricted license of SES in WebCenter Content license: Oracle Secure Enterprise Search to be installed and run on the same processor(s) that runs the content management repository and may be used to index and search the local instance of the content management repository. Federation to external servers or other data resources not permitted.)
    I am a bit doubtful if URM searches can expose results of federated SES indexes (there is no reason why they should not, but it depends how integration of SES to UCM/URM is written). At worst, you will have to go with SES GUI or customize the solution.
    P.S. the list of adapters (called 'connectors') of SES is available here: http://www.oracle.com/technetwork/search/oses/ses-connectors-178226.pdf

  • Is it safe to use an 85watt adapter from a 2006, 17" macbook pro on a late 2011 15" macbook pro?

    Hi. My question is pretty much as the heading says :
    Is it safe to use an 85watt adapter from a 2006, 17" macbook pro on a late 2011 15" macbook pro?
    As far as I can tell from googling and searching around, it does appear that it is safe to do so.
    Specifically this page
    http://support.apple.com/kb/HT2346
    But I just wanted to double-check for confirmation that it is indeed safe to use the adapter from such an old mbook pro in a newer one.
    The wattage is the same.
    I wish to do so as I prefer the T-connector, and my older adapter has a much longer extension cord on it.
    If not I may order another one from ebay.
    Any idea how to check that an adapter from ebay is a true / legitimate / authentic apple adapter?
    Thanks for your help.

    Benway1 wrote:
    Is it safe to use an 85watt adapter from a 2006, 17" macbook pro on a late 2011 15" macbook pro?
    Yes.
    I recommend you buy one directly from Apple. There are many counterfeit power adapters on the market that could damage your MacBook Pro or potentially cause a fire.
    Any idea how to check that an adapter from ebay is a true / legitimate / authentic apple adapter?
    Nearly all of them are, even if the seller insists it is "genuine OEM". Legitimate adapters from eBay are likely to be used, not new. There is nothing wrong with used, as long as you know what you're getting.
    Identifying a counterfeit is possible only through close examination.

Maybe you are looking for