Cannot register ISE endpoint through External RESTful Interface

The ISE External RESTful Service API says that the endpoint registration request should have an Accept header, but the example given uses a Content-Type header.  When I try to use an Accept header, I get a Resource media type exception titled "Wrong media type, check Content-Type request header".  Using the Content-Type request header results in a CRUD operation exception titled "Canot find endpoint with ID register".  It looks like the server thinks this is an update endpoint request.  The update endpoint API also has an Accept header in the description, but a Content-Type header in the example.  Detailed information follows
Request: PUT
URL = https://192.168.001.001:9060/ers/config/endpoint/register
Content-Type header = application/vnd.com.cisco.ise.identity.endpoint.1.0+xml
Content =
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns3:endpoint
    xmlns:ns2="ers.ise.cisco.com"
    xmlns:ns3="identity.ers.ise.cisco.com" id="endpointID" description="description-465">
    <link type="application/xml" href="https://192.168.001.001:9060/ers/config/endpoint/endpointID" rel="self"/>
    <groupId><groupID</groupId>
    <identityStore></identityStore>
    <identityStoreId></identityStoreId>
    <mac>00:11:22:33:44:90</mac>
    <portalUser>user90</portalUser>
    <profileId>profileID-46</profileId>
    <staticGroupAssignment>true</staticGroupAssignment>
    <staticProfileAssignment>false</staticProfileAssignment>
</ns3:endpoint>
Response:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ns2:ersResponse
    xmlns:ns2="ers.ise.cisco.com" operation="PUT-update-endpoint">
    <link type="application/xml" href="https://192.168.001.001:9060/ers/config/endpoint/register" rel="related"/>
    <messages>
        <ns2:message type="ERROR" code="CRUD operation exception">
            <title>Canot find endpoint with ID register</title>
        </ns2:message>
    </messages>
</ns2:ersResponse>
Any help would be appreciated.

This could be server side error type 500 I think

Similar Messages

  • Cannot deregister ISE endpoint from java app.

    The ISE ERS endpoint java demo downloaded from Cisco does not deregister the endpoint.  The output is:
    #  De register endpoint:                                      #
    #  This demo sends PUT request to deregister an existing      #
    #  endpoint mac:     aa:bb:11:22:33:44                        #
    #  The expected response would be status 201.                 #
     *** about to deregister endpoint id: e254f250-289a-11e4-8fe1-005056862eb7
    Request URI: /ers/config/endpoint
    REQUEST HEADERS:
            content-type: application/vnd.com.cisco.ise.identity.endpoint.1.0+xml; charset=utf-8
    RESPONSE HEADERS:
            Pragma: No-cache
            Cache-Control: no-cache
            Expires: Wed, 31 Dec 1969 19:00:00 EST
            Allow: POST,GET,DELETE,PUT,OPTIONS,HEAD
            Date: Wed, 20 Aug 2014 18:50:42 GMT
            Content-Type: text/xml
            Content-Length: 0
            Server:
    RESPONSE STATUS:
            HTTP/1.1 404 Not Found
    In the included ERSClient deregister method deregister is misspelled when creating the HttpPut object.  I corrected that but the endpoint still is not deregistered.
    Any help would be appreciated

    The way you get values into the parameters in your Request object is to either put them on the query string part of the URL or put them in POST data. It would be easiest for you to put them on the query string - so just modify the URL you are hitting to include your parameters on the query string (?param1=value1&param2=value2 ...)
    Good Luck
    Lee

  • Cannot register my iPod through the Apple website link

    On the right side of the screen, under the AppleCare section, there is an option to register your product. I clicked on that, and I got a message saying that "the requested application is not available on this server". Is there another link?

    Exactly the same thing happened to me today. I have tried using both Safari and now Firefox and am getting the same message.
    Can someone help?
    Thanks,
    PennyK

  • How to register Endpoint from External to CUCM

    We have Lab deployment:
    Cisco VCS-E
    Cisco VCS-C
    Cisco CUCM
    IM&P
    Cisco SX20 (Internal)
    Cisco EX90 (External)
    I have a problem:
    I registed successfull Cisco SX20 in Internal BUT EX 90 can't register to CUCM from External. How do i do??
    Please, support me.
    Thanks!

    You need to setup your VCS-C and E to do Mobile and Remote Access (MRA), that will allow external endpoints to register to CUCM which is on the internal network.  See the VCS configuration guides, for your VCS version, here is one for VCS X8.5.

  • Skype audio through external interface

    I'm currently running sound through an external audio interface (M-Audio Profire 2626). Before, everything was fine, but at the moment, Skype seems to be sending signal only to the left channel of the interface. All chat sounds, rings, and alerts are audible in the left channel only, but in a call, the other party comes through both speakers. So it's only alerts in the one speaker.
    What's happening here?

    When it was working, what was different?  Was there a specific version of Skype that it was more compatible with?  Since it doesn't occur on other devices (as far as I'm able to test since I own no Firewire output devices) I can only assume the issue is driver/software related or a compatiblity issue over Firewire but I would really suspect translation software that's being used to get it work in Skype unless the drivers are native WDM-based (vs something like ASIO).  If you have other firewire ports you've never used you can always try those to see if the install of that device on that specific port changes anything. 

  • Itunes COM SDK: cannot register function with iTunes Outgoing Interface

    I am doing benchmarks and I want to time the encoding of a Music CD. In order to stop the "clock" and compute the time I am trying to bind a function with the _IITConvertOperationStatusEvents::OnConvertOperationCompleteEvent()
    I am writing a AutoIt script and I can create the iTunes application object but when I use the ObjEvent function to register my function with the event above it causes a COM exception to be raised and the ObjEvent completes with an error. The exception code I get is 80040200 which seems to be a generic error.
    $objApp=ObjCreate("iTunes.Application")
    $SinkObject=ObjEvent($objApp, "ITEvent", "_IITConvertOperationStatusEvents")
    <<exception 80040200>>
    Browsing the iTunes COM TypeLib the _IITConvertOperationStatus does not seem to be a child in the iTunes object hierarchy so I think this is way the exception is being raised. I have tried to register another function with another outgoing interface and this works just perfectly: _IiTunesEvents::OnQuitting()
    Do I need to create another object which gets passed as the first parameter to the ObjEvent function?
    *Here is the entire script:*
    $ITSourceKindAudioCD = 3
    $begin = 0
    Global $trackName, $progressValue, $maxProgressValue, $SinkObject
    $oMyError = ObjEvent("AutoIt.Error","MyErrFunc") ; Install a custom error handler
    $objApp = ObjCreate("iTunes.Application")
    If @error Then
    MsgBox(0, "ObjCreate", "Create Object Failed", 3)
    Exit
    EndIf
    $event = ObjEvent($objApp, "ITEvent1_", "_IiTunesEvents")
    If @error Then
    MsgBox(0, "Failed", "IiTunesEvent binding failed", 5)
    Exit
    EndIf
    $SinkObject = ObjEvent($objApp, "ITEvent_", "_IITConvertOperationStatusEvents") ; Assign events to UDFs starting with IEEvent_
    If @error Then
    MsgBox(0, "ObjEvent binding", "ObjEvent failed!", 10)
    $objApp.Quit()
    Exit
    EndIf
    $colSources = $objApp.Sources
    $begin = TimerInit()
    For $objSource in $colSources
    If $objSource.Kind = $ITSourceKindAudioCD Then
    $strName = $objSource.Name
    $colPlaylists = $objSource.Playlists
    $objPlaylist = $colPlaylists.ItemByName($strName)
    $colTracks = $objPlaylist.Tracks
    $objApp.ConvertTracks2($colTracks)
    EndIf
    Next
    Do
    ; Wait around for the ripping to complete
    Until False
    ; This is my custom error handler
    Func MyErrFunc()
    $HexNumber = hex($oMyError.number,8)
    Msgbox(0,"","We intercepted a COM Error !" & @CRLF & _
    "Number is: " & $HexNumber & @CRLF & _
    "Windescription is: " & $oMyError.windescription )
    EndFunc
    Func ITEvent1_OnQuittingEvent()
    MsgBox(0, "Bye", "Bye-Bye", 10)
    EndFunc
    func ITEvent_OnConvertOperationCompleteEvent()
    $dif = TimerDiff($begin)
    MsgBox(0,"Time Difference",$dif)
    $objApp.Quit()
    EndFunc

    much of this is speculation because I can't remember how many previous versions of iTunes were on these machines...but this is what we're seeing:
    extra entries in two registry keys... when it didn't work these two registry entries contained "AppID" values:
    HKEYCLASSESROOT\CLSID\{B9E1D2CB-CCFF-4AA6-9579-D7A4754030EF}\Implemented
    Categories
    HKEYLOCALMACHINE\SOFTWARE\Classes\CLSID\{B9E1D2CB-CCFF-4AA6-9579-D7A4754030EF}
    with the APpID set to the same iTunes CLSID string:
    {B9E1D2CB-CCFF-4AA6-9579-D7A4754030EF}
    and when it did work the AppIDs entries were gone. this is only on XP.
    on vista there never was any AppID entry.
    but, again, i wonder if that was added by previous versions of iTunes which we didn't install on the vista machines...
    Also, worthy of noting is this post from Apple:
    http://support.apple.com/kb/HT1925
    ciao, raza

  • Mark Invoices as Paid through Payables Open Interface

    Hi.
    I have looked at the table definitions for importing invoices into Oracle Payables through the Payables Open Interface. It is clear to me how simply writing to these two tables: AP_INVOICES_INTERFACE and AP_INVOICES_LINES_INTERFACE.
    However, the invoices that i want to import into Oracle have already been processed and paid. It seems that there is no way through these two tables to mark an invoice as Paid and pass in the associated the payment data (for example - a check number). I am retrieving data from an external invoice and payment processing web site and importing this into Oracle E-Business Suite through these two tables. So is there:
    - A way to mark these invoices as Paid through the import and include the check number it was paid with?
    - If not what is the best way to accomplish that in Oracle? Is there any other interface that Oracle provides that will allow this. Do I need to create some kind of routine or workflow in Oracle need to be created to do this? I am new to Oracle, so it is not clear at the moment.
    Thanks!
    Scott

    Scott,
    You cannot bring in paid invoices through payables open interface table.
    This is one workaround you can use.
    1. import the invoices through open interface, the interface record will be marked as Processed.
    2. As soon as your invoice is created, your liability account will be hit and will be increased and cash account will be decreased (I m not using the credit/debit terms purposefully).
    3. You then create a payment batch , and pay the invoice, this will balance the liability and cash accounts
    This way you can simulate the payment you did outside the system and still your books will be in sync.
    Things you would need to take care of:
    1. Payment Dates
    2. Stop the payment instrument (check/creditmemo/debitmemo) from going out
    Lastly, this is a OAF forum, you might get better replies in AP or EBiz forums, so please post your query there.
    Thanks
    Tapash

  • Role Assignment Discovery Issue for Files and Folders through Sharepoint REST services

    To preface, I am a decided Sharepoint newbie in every sense. I am trying to use the Sharepoint REST services (Sharepoint 2013) to walk the folder and file structure of my Sharepoint server and, determine as I go, the Role Assignments (and subsequently
    Permissions) on those folders and files. I'm using an Administrator credentials and I'm actually able to successfully do it but I've run into some caveats. All the caveats begin with this; when I'm examining a folder, for example:
    /_api/Web/GetFolderByServerRelativeUrl('/sites/cmisdev/Development')/ListItemAllFields
    I receive either an empty list or an error response doc when following the link supplied for ListItemAllFields.  When following that kind of link for folders, I either get:
    <d:ListItemAllFields
    m:null="true"
    />
    or an error response document that says "The object specified does not belong to a list." When I hit the /ListItemAllFields endpoint for files, I receive a response with a link for Role Assignments which subsequently also works and I get the
    info I need. So, is this a bug? Why does the link returned from Sharepoint work for files and not folders? So, google, google, google, and I discover that there is another possible way to get at the Role Assignments (and that the object does, indeed, belong
    to a list!).
    If I know the Title (or the guid) of the folder in question, I can use the following endpoint:
    /_api/Web/Lists/GetByTitle('Development')
    If I use that endpoint, I get the information I would have expected to get from following /ListItemAllFields and the subsequent Role Assignments links all work and I get what I need. If there's a bug and this is how I have to work around it, that's fine
    but I have yet to discover how to dynamically determine the Title of a given folder nor am I sure if all Titles are supposed to be unique within a given Sharepoint server. I'm assuming that the folder name as represented in the server relative URL and the
    Title may be different and this is where my newbishness may start to shine if I'm misunderstanding what a "List" is supposed to be in Sharepoint. Anyway, I did find that I could use the Properties endpoint to perhaps get the Title, for example:
    /_api/Web/GetFolderByServerRelativeUrl('/sites/cmisdev/Development')/Properties
    gives me:
    <d:vti_x005f_listtitle>Development</d:vti_x005f_listtitle>
    whose value I assume I could then supply to the /GetByTitle endpoint and be golden. However, "vti_x005f_listtitle" just sounds a little too deep to be something I should be relying on but maybe that's kosher. That's part of what I'm trying to
    find out. Also, if there is a way to use the Sharepoint REST API to discover the guid of a given object, then I could look it up in that way.
    So, in summary:
    1. Am I going about getting folder Role Assignment information in the wrong way? Based on the CSOM examples I've seen, I believe I'm doing it correctly and that the answer to #2 below is a resounding "Yes!" :)
    2. Is it a bug if I'm not able to use /ListItemAllFields on folders using the server relative url?
    3. If I'm supposed to use GetByTitle as a workaround, am I discovering that Title correctly through /Properties? Seems quite circuitous and awkward. Are Titles required to be unique throughout a given Sharepoint server?
    4. If I'm supposed to use the guid, how can I use the REST interface to discover an object's guid? Once we get down to the Role Assignments and other links, the guid appears in those links but I don't know how to discover it independently if that's the
    path I should use to get the data I described above.

    Upon further research, I'll answer my own question for the benefit of some other potential future newbie.  The answer to question number 1 above is "Not exactly.".  The server relative URLs I was using corresponded to lists (which are
    returned as a collection through /_api/web/lists).  I was treating them mentally like regular folders.  That, coupled with the fact that accessing their data as I showed above returns a ListItemAllFields link, made me think that was the way to get
    the Role Assignments just as I would for files and, as it turns out, "real" folders and sub-folders created under these lists.  That was the other problem with thinking of these lists as regular folders.  So, ListItemAllFields works on
    all files and folders in a list.  However, if you want Role Assignments for the lists themselves, you can keep track of the Titles and\or Guids from the /_api/web/lists that you're interested in (in my case, all non-hidden "document library"
    type lists) and then access those Role Assignments as I discussed in questions 3 and 4 above.  For example, from the /_api/web/lists collection from my test server, the "Development" document library Role Assignments are accessable via /_api/Web/Lists(guid'cd242eeb-aafa-4efa-aecc-9bbdf8e3d459')/RoleAssignments
    or /_api/Web/Lists/GetByTitle('Development')/RoleAssignments.

  • Seeburger EDI Adapter Deployment Error: Cannot register EarLoader

    Hello,
    we currently have updated our SAP Netweaver Development Environment 2004s to SP20. This installation runs on IBM iSeries.
    We also have to deploy a Seeburger EDI Adapter (Version 1.8) but we faced following error in the deployment:
    ---snipped
    PM Error: Aborted: development component
    'SeeFunctionsEar'/'seeburger.com'/'SEEBURGER
    AG'/'20090701183537.1.8.1'/'1', grouped by software component
    'SeeXIExtendedTools'/'seeburger.com'/'LOCAL'/'20090701183537.1.8.1''/'1':
    Caught exception during application deployment from SAP J2EE Engine's
    deploy service:
    java.rmi.RemoteException: Cannot register EarLoader for application
    seeburger.com/SeeFunctionsEar..
    Reason: null; nested exception is:
    java.lang.NullPointerException
    (message ID:
    com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    ---snipped
    We've deployed not only with the JSPM but also with developer Studio. (The SDM-Tool has a big problem after upgrating to SP20 - SAP knows the error and with the next SP this will be fixed. So this tool cannot be used!)
    First of all, I think it is very useful for us to know what is the EarLoader but unfortunately we can't find any information on the sap help, documentation or here in the SDN. Neither on the Web .....
    Could someone explain the issue to me, please?
    Thanks in advance.
    Christian Sperlich

    Hi,
    1)Can you check your class path, whether it is configured correctly
    2)Check whether you have included the latest class file while importing
    3)Check whether you have activated the objects after you have made changes are imported
    Regards
    Agasthuri Doss

  • Connecting external audio interfaces?! Issues, help needed!

    Ok well basically i'v always used a pc to do music using cubase and a variety of hardware including a steinberg mi4 external audio interface connected via usb. Now on my pc which is actually less powerful than my new macbook (the 2.2ghz model) the interface works with out fault no latency, no distortion.
    However once used on my new shiny macbook, for which i'v purchased logic pro as opposed to cubase (felt like a change) when trying to use my interface via usb on the mac through logic i seem to have issues with recording and all sound comes through distorted with a great deal of latency. I'v tried altering the sample depth and the bit rate and nothing seems to work?
    I have downloaded mac specific drivers for the hardware so i'm sure its not a driver issue?
    Anyone with any suggestion, cos i'm a bit gutted really?
    P.s. Does anyone know if you can change the graphics card in a macbook?
    Ben

    Hi, im having the same issue, using garageband and logic pro. I used pc to make music with no problems at all with my Zoom g9.2tt guitar fx usb interface.
    Now with mac i get distorted and lots of latency.
    One way i found that can make this work with garageband is use the internal sound card to play sounds and the usb interface to record this helps a lot. This trick makes it for garageband but not for logic pro(still getting distortion/latency).
    By the way i used to have an emachines laptop with 512 ram memory and a 1,6ghz semprom processor, believe or not, easier to record on that one, with no latency and no distortion.

  • Lenovo g580 do I need to buy an external audio interface to record live instruments and voice ?

    Hello,  If anyone could help me please ?, I am wondering do I need to buy an external audio interface to record live instruments and voice onto my lenovo g580.?
    My friends have said that good laptops have audio interface's built in... but I cannot see how this could work as I am trying to build a home recording studio. Do they mean that I just need to have a mixing desk ? As the audio interface is already in my laptop, ?
    Another question I have is... I have bought a microphone to record with a studio mic. But when I plug it into the headphone socket, it works as a speaker and not as a microphone. Please can you tell me how do I make it work as a microphone, and record on ableton. Thanks. I live alone with two cats so I'd really appreciate some help ! 
    Thank you very much, best wishes. 

    man 'O tunes wrote:
    I'm preparing to expand my studio from a 1 man songwriting system,
    to add the capability to record a complete live band, with 16 separate
    simultaneous tracks recording. Am I dreaming?
    Nope. I've been recording live bands with up to 56 channels at 24 bit 48kHz for three years now.
    1) Does my computer have enough native power to handle such a task?
    Yes. The actual recording uses the hard drive buss, so you need to make sure you have fast drives and a dedicated FW or SATA buss for them.
    2) Is there an audio interface device that could help shoulder some of
    the cpu load?
    No. CPU is used only for routing audio, effects, etc. An audio interface is used to route the audio in and out of the computer, and as such does not process effects at all.
    3) is it possible to use my multiple, fast internal drives to help?
    Yes. Although with Logic Pro you can use only one drive at a time for recording. HOWEVER, I have been able to use SATA drives to record up to 56 tracks AT ONCE. So there is plenty of power there.
    4) If not 16, what's the highest realistic track count I can hope for?
    Again, I have done 56 tracks. 16 is a walk in the park in comparison to 56. I would recommend you invest in Apogee AD16X and DA16X, since in one interface you get ALL 16 inputs, and the other gives you the 16 outputs to go to, say, a mixer. And the sound quality is very very very good.
    thanks in advance
    You're welcome.
    Cheers

  • Ap 1231G cannot register to WLC

    Hi friends:
    my wlc version is 7.2.115.2.
    ap 1231G version is c1200-rcvk9w8-tar.124-21a.JA2
    the ap cannot register to WLC.
    the lap is used stats ip address,its can pinged to wlc.
    Version does not support?
    and the other ap is 1241 version is 12.4<13d>JA.its can register to wlc
    only this 1231G can not register.
    this picture is my WLC ap join stats detail.
    Thanks
    cena

    HI Cena,
    This error message means that the controller received a discovery request through a broadcast IP address that has a source IP address (given), which is not in any configured subnets on the controller. It also means that the controller dropped the packet. This typically happens when the u trunks all allowed VLANs instead of restricted them to wireless VLANs.
    Please allow only specific vlans.
    Complete these steps in order to resolve this problem:
    1.If the controller is on another subnet, the APs must be primed for the controller IP address, or the APs must receive the controllers IP address using any one of the discovery methods.
    2.The switch is configured to allow some VLANs that are not on the controller. Restrict the allowed VLANs on the trunks.
    Regards
    Dont forget to rate helpful posts.

  • Software installation external audio interface fails Terratec dmx6 fire usb

    Software installation external audio interface fails Terratec dmx6 fire usb.
    Dear Apple Power User in this forum,
    here is a question for some of us experts.
    I have a external usb audio interface Terratec, Model: DMX 6 fire USB.
    http://www.terratec.net/en/products/technical-data/produktetechnische_daten_en3246.html
    0. There should be after install enclosing software an control app in the app folder, but it isnt there. Why?
    1. the attached installer protocol seems to be normal. isnt it?
    2. the usb audio hardware appears in system profiler.
    3. there isnt the audio hardware in audio-midi-setup! Why?
    4. one of the installed content is visibil in activity monitor as an extension "35 DMX6FireService root 0,0 1 964,00 KB 18,55 MB 22 Intel 00.01 176,00 KB 184,00 KB 73 72"
    5. an other part is in the system-library-extension folder "TTDMX6fire.kext"
    6. other files i am not capacity to find....
    7. and there is the app missing in apps folder! Whitout that it can not work.
    8. Software is for 10.5 and 10.6 32-bit tested from the vendor!?
    9. My MacBookPro early 2008 2.4ghz is capabel of 64bit but is default in 32 mode says apple spec, also my osx 10.5.8 newest updates should be 32 bit. Isnt it?
    10. installation tested whit disconnected/connected ext. volumes or display or these audio interface, whith repaired permissions, on two different macs (second is iMac), whit reboot,
    11. tested on different usb ports, usb port test passed whith other equipment,
    12. on windows xp all works.
    13. tested on a new admin user, same problem.
    14. searched whith terminal command line in applications, nothing.
    15. get software from cd and homepage, no effect.
    16. asked vendor: "until now never had problems like that"
    any ideas? please help!
    for testing or showing the installer look here:
    http://www.terratec.net/en/driver-and-support/driver_21300.html?selectproduct=DM X%206Fire%20USB
    Installation Protocol:
    Dec 25 00:08:39 cadas-macbook-pro /System/Library/CoreServices/Installer.app/Contents/MacOS/Installer[400]: vm_allocate: 0, 0x5800000 - 0x25800000
    Dec 25 00:08:39 cadas-macbook-pro /System/Library/CoreServices/Installer.app/Contents/MacOS/Installer[400]: vm_protect: 0
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: @(#)PROGRAM:Install PROJECT:Install-388
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: @(#)PROGRAM:Installer PROJECT:Installer-281
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Hardware: MacBookPro4,1 @ 2.40 GHz (x 2), 4096 MB RAM
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Running OS Build: Mac OS X 10.5.8 (9L30)
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Env: PATH=/usr/bin:/bin:/usr/sbin:/sbin
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Env: TMPDIR=/var/folders/gC/gCDdYZuFE98Z28wIB40BeE+TI/-Tmp-/
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Env: SHELL=/bin/bash
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Env: HOME=/Users/cada
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Env: USER=cada
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Env: LOGNAME=cada
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Env: DISPLAY=/tmp/launch-MQSZjG/:0
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Env: SSHAUTHSOCK=/tmp/launch-x3IAC1/Listeners
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Env: ApplePubSub_SocketRender=/tmp/launch-YalWkk/Render
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Env: _CF_USER_TEXTENCODING=0x1F5:0:3
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Env: SECURITYSESSIONID=a1b410
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Env: COMMAND_MODE=unix2003
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: DMX6fireUSB Installation Log
    Dec 25 00:08:39 cadas-macbook-pro Installer[400]: Opened from: /Volumes/DMX6FireUSB.1.22/dmx6fireusb.pkg
    Dec 25 00:08:39 cadas-macbook-pro installdb[402]: started (uid 96)
    Dec 25 00:08:39 cadas-macbook-pro installdb[402]: Opened receipt database on '/' with schema 17.
    Dec 25 00:08:45 cadas-macbook-pro installdb[402]: done. (0.004u + 0.003s)
    Dec 25 00:09:10 cadas-macbook-pro runner[403]: Administrator authorization granted.
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: =============================================================================== =
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: User picked Standard Install
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: Choices selected for installation:
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: Aktualisieren: "DMX6fireUSB"
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: Aktualisieren: "DMX6FireUSBCpl"
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: dmx6fireusb.pkg#dmx6fireusbcpl.pkg : com.terratec.dmx6fireusb.pkg : 1
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: dmx6fireusb.pkg#ttdmx6fire.pkg : com.terratec.dmx6fireusb1.pkg : 1
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: Aktualisieren: "TTDMX_6fire_CUSTOMEXT"
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: dmx6fireusb.pkg#ttdmx6firecustomext.pkg : com.terratec.dmx6fireusb2.pkg : 1
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: Aktualisieren: "TTDMX6fire"
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: dmx6fireusb.pkg#ttdmx6fire-1.pkg : com.terratec.dmx6fireusb3.pkg : 1
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: Aktualisieren: "DMX6FireService"
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: dmx6fireusb.pkg#dmx6fireservice.pkg : com.terratec.dmx6fireservice3.pkg : 1
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: Aktualisieren: "LaunchDaemon"
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: dmx6fireusb.pkg#comterratecdmx6fire.pkg : com.terratec.dmx6fireusb4.pkg : 1
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: =============================================================================== =
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: It took 0.00 seconds to summarize the package selections.
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: -[IFDInstallController(Private) _buildInstallPlan]: location = file://localhost
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/DMX6FireUSB.1.22/dmx6fireusb.pkg#dmx6fireusbcpl.pkg
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/DMX6FireUSB.1.22/dmx6fireusb.pkg#ttdmx6fire.pkg
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/DMX6FireUSB.1.22/dmx6fireusb.pkg#ttdmx6firecustomext.pk g
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/DMX6FireUSB.1.22/dmx6fireusb.pkg#ttdmx6fire-1.pkg
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/DMX6FireUSB.1.22/dmx6fireusb.pkg#dmx6fireservice.pkg
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: -[IFDInstallController(Private) _buildInstallPlan]: file://localhost/Volumes/DMX6FireUSB.1.22/dmx6fireusb.pkg#comterratecdmx6fire.pk g
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: _installNextPackage of 1
    Dec 25 00:09:15 cadas-macbook-pro installdb[405]: started (uid 96)
    Dec 25 00:09:15 cadas-macbook-pro installdb[405]: Opened receipt database on '/' with schema 17.
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: Starting installation:
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: Preparing volume "250GB_MBPro2" for installation
    Dec 25 00:09:15 cadas-macbook-pro Installer[400]: Configuring volume "250GB_MBPro2"
    Dec 25 00:09:16 cadas-macbook-pro Installer[400]: Preparing disk for local booted install.
    Dec 25 00:09:16 cadas-macbook-pro Installer[400]: Free space on "250GB_MBPro2": 11,6 GB (12495523840 bytes).
    Dec 25 00:09:16 cadas-macbook-pro Installer[400]: Create temporary directory "/private/tmp/dmx6fireusb.pkg.400aysS6s"
    Dec 25 00:09:16 cadas-macbook-pro Installer[400]: Running install actions
    Dec 25 00:09:16 cadas-macbook-pro Installer[400]: Processing dmx6fireusbcpl:
    Dec 25 00:09:16 cadas-macbook-pro Installer[400]: Determining files to install
    Dec 25 00:09:16 cadas-macbook-pro Installer[400]: It took 0.06 seconds to create the install plan for dmx6fireusbcpl.
    Dec 25 00:09:16 cadas-macbook-pro Installer[400]: Configuring deferred files
    Dec 25 00:09:16 cadas-macbook-pro Installer[400]: Determining obsolete files
    Dec 25 00:09:16 cadas-macbook-pro Installer[400]: Assembling temporary receipt
    Dec 25 00:09:16 cadas-macbook-pro Installer[400]: Performing pre-extraction actions
    Dec 25 00:09:16 cadas-macbook-pro Installer[400]: run preupgrade script for dmx6fireusbcpl
    Dec 25 00:09:17 cadas-macbook-pro /private/tmp/scripts.pCJk/./preflight[408]: : deleting previous Kernel Extensions
    Dec 25 00:09:17 cadas-macbook-pro /private/tmp/scripts.pCJk/./preflight[408]: PID: 43
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Removing obsoleted files
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Creating destination path
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Validating package payload
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Starting file extraction
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[419]: Initializing new flat-package receipt.
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[419]: Extracting...
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[419]: 20 of 20 files written in 0.05 seconds.
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[419]: 408 kilobytes installed at 7.5 MB/s.
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Performing post-extraction actions
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Finishing receipt
    Dec 25 00:09:17 cadas-macbook-pro runner[403]: Extracting BOM from "/Volumes/DMX6FireUSB.1.22/dmx6fireusb.pkg" to "/Library/Receipts/boms/com.terratec.dmx6fireusb.pkg.bom"
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Processing ttdmx6fire:
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Determining files to install
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: It took 0.03 seconds to create the install plan for ttdmx6fire.
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Configuring deferred files
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Determining obsolete files
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Assembling temporary receipt
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Performing pre-extraction actions
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Removing obsoleted files
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Creating destination path
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Validating package payload
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Starting file extraction
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[420]: Initializing new flat-package receipt.
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[420]: Extracting...
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[420]: 9 of 9 files written in 0.01 seconds.
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[420]: 92 kilobytes installed at 11.5 MB/s.
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Performing post-extraction actions
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Finishing receipt
    Dec 25 00:09:17 cadas-macbook-pro runner[403]: Extracting BOM from "/Volumes/DMX6FireUSB.1.22/dmx6fireusb.pkg" to "/Library/Receipts/boms/com.terratec.dmx6fireusb1.pkg.bom"
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Processing ttdmx6firecustomext:
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Determining files to install
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: It took 0.00 seconds to create the install plan for ttdmx6firecustomext.
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Configuring deferred files
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Determining obsolete files
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Assembling temporary receipt
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Performing pre-extraction actions
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Removing obsoleted files
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Creating destination path
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Validating package payload
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Starting file extraction
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[421]: Initializing new flat-package receipt.
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[421]: Extracting...
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[421]: 9 of 9 files written in 0.01 seconds.
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[421]: 80 kilobytes installed at 9.7 MB/s.
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Performing post-extraction actions
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Finishing receipt
    Dec 25 00:09:17 cadas-macbook-pro runner[403]: Extracting BOM from "/Volumes/DMX6FireUSB.1.22/dmx6fireusb.pkg" to "/Library/Receipts/boms/com.terratec.dmx6fireusb2.pkg.bom"
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Processing ttdmx6fire-1:
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Determining files to install
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: It took 0.00 seconds to create the install plan for ttdmx6fire-1.
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Configuring deferred files
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Determining obsolete files
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Assembling temporary receipt
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Performing pre-extraction actions
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: run preupgrade script for ttdmx6fire-1
    Dec 25 00:09:17 cadas-macbook-pro /private/tmp/scripts.MEBZ/./preflight[424]: : deleting previous Kernel Extensions
    Dec 25 00:09:17 cadas-macbook-pro /private/tmp/scripts.MEBZ/./preflight[424]: PID:
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Removing obsoleted files
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Creating destination path
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Validating package payload
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Starting file extraction
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[435]: Initializing new flat-package receipt.
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[435]: Extracting...
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[435]: 9 of 9 files written in 0.03 seconds.
    Dec 25 00:09:17 cadas-macbook-pro payloadExtractor[435]: 832 kilobytes installed at 26.2 MB/s.
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Performing post-extraction actions
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Finishing receipt
    Dec 25 00:09:17 cadas-macbook-pro runner[403]: Extracting BOM from "/Volumes/DMX6FireUSB.1.22/dmx6fireusb.pkg" to "/Library/Receipts/boms/com.terratec.dmx6fireusb3.pkg.bom"
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Processing dmx6fireservice:
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Determining files to install
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: It took 0.00 seconds to create the install plan for dmx6fireservice.
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Configuring deferred files
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Determining obsolete files
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Assembling temporary receipt
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Performing pre-extraction actions
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Removing obsoleted files
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Creating destination path
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Validating package payload
    Dec 25 00:09:17 cadas-macbook-pro Installer[400]: Starting file extraction
    Dec 25 00:09:18 cadas-macbook-pro payloadExtractor[437]: Initializing new flat-package receipt.
    Dec 25 00:09:18 cadas-macbook-pro payloadExtractor[437]: Extracting...
    Dec 25 00:09:18 cadas-macbook-pro payloadExtractor[437]: 2 of 2 files written in 0.01 seconds.
    Dec 25 00:09:18 cadas-macbook-pro payloadExtractor[437]: 136 kilobytes installed at 13.4 MB/s.
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Performing post-extraction actions
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Finishing receipt
    Dec 25 00:09:18 cadas-macbook-pro runner[403]: Extracting BOM from "/Volumes/DMX6FireUSB.1.22/dmx6fireusb.pkg" to "/Library/Receipts/boms/com.terratec.dmx6fireservice3.pkg.bom"
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Processing comterratecdmx6fire:
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Determining files to install
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: It took 0.00 seconds to create the install plan for comterratecdmx6fire.
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Configuring deferred files
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Determining obsolete files
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Assembling temporary receipt
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Performing pre-extraction actions
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Removing obsoleted files
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Creating destination path
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Validating package payload
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Starting file extraction
    Dec 25 00:09:18 cadas-macbook-pro payloadExtractor[438]: Initializing new flat-package receipt.
    Dec 25 00:09:18 cadas-macbook-pro payloadExtractor[438]: Extracting...
    Dec 25 00:09:18 cadas-macbook-pro payloadExtractor[438]: 2 of 2 files written in 0.01 seconds.
    Dec 25 00:09:18 cadas-macbook-pro payloadExtractor[438]: 8 kilobytes installed at 1.0 MB/s.
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Performing post-extraction actions
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Finishing receipt
    Dec 25 00:09:18 cadas-macbook-pro runner[403]: Extracting BOM from "/Volumes/DMX6FireUSB.1.22/dmx6fireusb.pkg" to "/Library/Receipts/boms/com.terratec.dmx6fireusb4.pkg.bom"
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Removing temporary directory "/private/tmp/dmx6fireusb.pkg.400aysS6s"
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Finalize disk "250GB_MBPro2"
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Notifying system of updated components
    Dec 25 00:09:18 cadas-macbook-pro runner[403]: Touched '/System/Library/Extensions'
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: _installNextPackage of 0
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]:
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: ** Summary Information **
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Operation Elapsed time
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: -----------------------------
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: script 0.29 seconds
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: zero 0.02 seconds
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: install 1.42 seconds
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: validate 0.01 seconds
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: os 0.00 seconds
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: extract 0.87 seconds
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: receipt 0.05 seconds
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: disk 1.01 seconds
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: config 0.19 seconds
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]:
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Starting installation:
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Finalizing installation.
    Dec 25 00:09:18 cadas-macbook-pro Installer[400]: Registering applications
    Dec 25 00:09:18 cadas-macbook-pro runner[403]: Touched '/Applications/./DMX6FireUSBCpl.app'
    Dec 25 00:09:18 cadas-macbook-pro runner[403]: Touched '/Applications/.'
    Dec 25 00:09:19 cadas-macbook-pro Installer[400]: IFDInstallController 868C80 state = 5
    Dec 25 00:09:19 cadas-macbook-pro Installer[400]: Displaying 'Install Succeeded' UI.
    Dec 25 00:09:24 cadas-macbook-pro installdb[405]: done. (0.026u + 0.040s)

    solved whith the old driver vom archive of vendor: "DMX6Fire_USBMac.1.00c.dmg" thats for 10.5.x for me works.
    The newest from the vendor delivered driver 1.22 (marked for 10.5 and 10.6) seems to not work under 10.5.

  • External REST Service Authentication

    Hello everyone.
    Often creating complex business application using SharePoint Online, I need to externalize business logic to external service in order to use .net code and third-party assemblies.
    In my case I'm developing a Rest Service hosted by an Azure Web Site.
    My question is:
    Can I obtain an access Token from SharePoint, containing the current user information, pass it to external Rest Service and then reuse it to return to SharePoint using the current user credentials?
    Can you give be documentation about it?
    Thanks,
    Sergio
    Regards,
    Bubu
    http://zsvipullo.blogspot.it
    Please mark my answer if it helped you, I would greatly appreciate it.

    Can you give me more details on this.
    Currently i am assuming it like this
    You have a SharePoint online where you are running workflow from where you call an external rest service request.
    from this rest service you want to query sharePoint online using Current user context.
    if that is the case the above method can be also and cannot be ni will explain how
    when you care an app than you can get data from sharePoint using 2 authentication context 1 is User 2nd is App Only.
    but to create a user context / access token user must be present as it uses browser redirection to generate a token and pop up a dialog to user to provide credentials. 
    but to  get the app only context you can do it without any pop or user interaction where you call the sharepoint using app client ID and Secret.
    now it depends on your requirement what you want to do if your external rest service just require current user information from sharepoint than you can modify your Opeartion contract so that you can pass current user name in Rest method body param. and use
    the app only access token to get data filtered by current user Name.
    So there are possibility if you can explain in detail what exactly you want to do than we can figure out a solution for you.
    Whenever you see a reply and if you think is helpful,Vote As Helpful! And whenever you see a reply being an answer to the question of the thread, click Mark As Answer

  • In my computer I changed my motherboard from Intel I5 to I7 processor. Now i cannot register my license of Photoshop Elements.

    In my computer I changed my motherboard from Intel I5 to I7 processor. I did not change my periphals as harddrive and so on.
    Now i cannot register my license of Photoshop Elements again.
    Adobe reports the serial number is already registered to another computer.
    What is the solution for this problem?

    Actually, you want activation support for this, not regular customer care. Activation is tied to hardware, so when you change the hardware in your computer PSE thinks it's on a new machine.
    https://helpx.adobe.com/x-productkb/policy-pricing/activation-deactivation-products.html
    Scroll down to "Still need help? Contact us" and work your way through the links and eventually you will be able to start a chat session and get it straightened out.

Maybe you are looking for

  • How can I transfer my whole iTunes library from a PC to another without losing any information?

    Hi, I have a very large iTunes library which is the result of so many years of listening to music. Although my computer is pretty old and slow and I would like to buy me another one. However, I cannot risk losing all the playcounts, ratings and infor

  • Using ROWID in the WHERE clause of a SELECT statement

    hi all, my team is trying to select a value from a table using the rowid as the selection criterion e.g. select column_name from table_name where rowid > 'AAA112BBBCCC12A' this query does not appear to return accurate results e.g. it return rows inst

  • Beige G3 drives making me nuts

    This is absolutely infuriating. I have a bunch of Beiges that I've been imaging. I have a number of 6GB and 8GB drives. I built a drive image with 9.2.2 and 10.3.9 with XPostFacto onboard. I've imaged several Beiges with it using NetRestore and a fir

  • ABAP LOGICAL ERRORS

    Expalin about ABAP Logical errors? Help me sending appropriate link to understand more. Moderator Message: Read the Rules of Engagement of this forum. Edited by: kishan P on Dec 27, 2011 9:50 PM

  • Tagging Facebook albums created in Aperture not working

    I'm trying to publish a Facebook album from within Aperture (3.6), and am having trouble getting the tags to stick in Facebook. When I go visit the album on Facebook, the tags are there, but not actually linked to the people. For example My friend Jo