Problems getting IdentityXML to accept new (6.5+) syntax

Not much COREid related stuff in the forums, but I'll give it a whirl anyway.
I am having trouble getting COREid to respond to IdXML messages using the new syntax, 6.5 and above. That is not the only problem I am facing, but let's start with something manageable!
I am using COREid 7.04 running on Windows, all LDAP is in AD.
I have looked at the docs, Developer guide, ch 3, pp 145-
One of the things I can do only using the old syntax is 'search'. It works well with the old syntax, but using the new parameters I don't get the expected results. I have played around with the XML call, resulting in either errors or pretty much empty answers.
Any help would be greatly appreciated; finding docs is a real challenge!
thanks
Kam
Edit: This is the XML call I am passing, followed by the response. It is based on the Developer guide pp31-32, just edited the username and some minor things. I am searching for any user with the Division attribute defined. I have two users that I can find through the GUI, using the same login as the XML.
Input XML:
<?xml version="1.0"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas-xmlsoap.org/soap/envelope/"
          xmlns:oblix="http://www.oblix.com">
<SOAP-ENV:Body>
<oblix:authentication xmlns:oblix="http://www.oblix.com" type="basic">
<oblix:login>coreidadmin</oblix:login>
<oblix:password>password</oblix:password>
</oblix:authentication>
<oblix:request function="search" mode="dataonly" version="NPWSDL1.0">
<oblix:AttributeParams>
<oblix:tab_id>Employees</oblix:tab_id>
<oblix:Searchparams>
<oblix:condition>
<oblix:SearchAttr>division</oblix:SearchAttr>
<oblix:SearchOperation>OGE</oblix:SearchOperation>
<oblix:SearchString>000</oblix:SearchString>
</oblix:condition>
</oblix:Searchparams>
</oblix:AttributeParams>
</oblix:request>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
The result I get back:
<?xml version="1.0" encoding="ISO-8859-1"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<Oblix xmlns:oblix="http://www.oblix.com/" xmlns="http://www.oblix.com/">
<ObError>
<ObTextMessage>Parse error: XML document is invalid.
obxreader.cpp:182: Error: ObX::Reader::read
obsoapdomfactory.cpp:51: Error: Exception re-thrown in ObSOAPDOMFactory::StartElement.
obsoapdomfactoryI.cpp:275: Error: Exception re-thrown in ObSOAPDOMFactoryImpl::StartElement.
obsoapdomfactoryI.cpp:104: Error: XML request contains unknown element AttributeParams.
</ObTextMessage>
<ObStatus>1</ObStatus>
</ObError>
<ObStatus>1</ObStatus>
</Oblix>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
I am a bit stumped, to be honest. The docs certainly seem to suggest that I can pass AttributeParams. I'm hoping that I have made a simple mistake, and that one of you good people will spot it and suggest a solution!

I've had trouble using the new syntax too. I tried changing password of the user currently signed-in and kept getting the message "The old password is not correct." I used the following XML:
<?xml version="1.0" encoding="ISO-8859-1"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:oblix="http://www.oblix.com/" xmlns="http://www.oblix.com/">
     <SOAP-ENV:Body>
          <oblix:request application="userservcenter" function="modifyUser" mode="" version="NPWSDL1.0">
               <oblix:params>
                    <oblix:uid>cn=username1,ou=origNameA1,ou=orgnameA,o=orgname</oblix:uid>
                    <oblix:attributeParams>
                         <oblix:PasswordAttribute>
                              <oblix:attrName>userPassword</oblix:attrName>
                              <oblix:attrNewValue>password33</oblix:attrNewValue>
                              <oblix:attrConfirmValue>password33</oblix:attrConfirmValue>
                              <oblix:attrOldValue> password22 </oblix:attrOldValue>
                              <oblix:attrOperation>REPLACE</oblix:attrOperation>
                         </oblix:PasswordAttribute>
                    </oblix:attributeParams>
                    <oblix:noOfFields>1</oblix:noOfFields>
               </oblix:params>
          </oblix:request>
     </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
I get the following response:
<?xml version="1.0" encoding="ISO-8859-1"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
<SOAP-ENV:Body>
<Oblix xmlns:oblix="http://www.oblix.com/" xmlns="http://www.oblix.com/" oblang="en-us">
<ObError>
<ObRequestInfo>147815680</ObRequestInfo>
<ObTextMessage>The old password is not correct.</ObTextMessage>
<ObStatus>1</ObStatus>
</ObError>
<ObStatus>1</ObStatus>
</Oblix>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
If I use the old syntax with the same uid value, the change works. Any ideas why the new syntax is not working?
Old syntax that works:
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:oblix="http://www.oblix.com">
     <soapenv:Body>
          <oblix:request application="userservcenter" function="modifyUser" mode="dataonly">
               <oblix:params xmlns:oblix="http://www.oblix.com">
                    <oblix:param name="uid" xmlns:oblix="http://www.oblix.com">cn=username1,ou=origNameA1,ou=orgnameA,o=orgname</oblix:param>
                    <oblix:param name="noOfFields" xmlns:oblix="http://www.oblix.com">1</oblix:param>
                    <oblix:param name="attrName_1" xmlns:oblix="http://www.oblix.com">userPassword</oblix:param>
                    <oblix:param name="attrOperation_1" xmlns:oblix="http://www.oblix.com">REPLACE</oblix:param>
                    <oblix:param name="attrValue_1" xmlns:oblix="http://www.oblix.com">password33</oblix:param>
                    <oblix:param name="attrValue_1_confirm" xmlns:oblix="http://www.oblix.com">password33</oblix:param>
                    <oblix:param name="attrValue_1_old" xmlns:oblix="http://www.oblix.com">password22</oblix:param>
               </oblix:params>
          </oblix:request>
     </soapenv:Body>
</soapenv:Envelope>

Similar Messages

  • Problem getting WiFi to accept my password

    Hey All.  Just got my new Kin TwoM tonight!  Yay.   Like someone else said, I had to call Verizon to get it activated.  Wouldn't work online.  1st Tech Support couldn't get it programmed manually, but Tier II got it programmed.  That took a good 30 minutes.  Now I'm trying to get WiFi working.  I turned on Wifi and it's detecting my home network, but it won't recognize my password.  Keeps saying it's wrong.  Now it's an easy password for me to remember, but I figured I better double check my password that I have written down and filed away, and I do have the correct password.  It's all numeric, and I thought maybe I was using the letter O instead of a zero, but the zero is up in the top row with all the numbers so that's not the problem. I then went into my router to make sure I didn't go and change the password at some point, but the password is what I've  had it set to for years and what I'm trying to get the phone to accept.    Anyone else have a problem getting WiFi to accept the password?  My router is a Dlink.  The phone is showing it as WEP, so I thought maybe there's a problem with the phone and WEP and maybe I should try another encryption.  Or do I have to allow access in my router or something?. I went in and disabled the password on my router and the Kin was able to connect fine.  I enabled the password again, re-entered it on my phone and it won't connect with the password.  Any other ideas?  Thanks, Pam

    Oh this is frustrating.  I finally got my phone wifi to connect to my home network once by manually adding my network, but I couldn't seem to get it connected again when I try the same way.   When I was connected, I still couldn't open any webpages, but it did download my email.  BUT...it wouldn't open any email unless it was text only.  I was wondering if it was because I turned off Data Services in my Verizon account.  I thought you had to do that so that you wouldn't accidentally connect to 3G when there was no WiFi.   I did try to renew my IP, but no change.  I tried manually connecting to my home network another 10 times or so, and I finally got it to connect again, and I can now access the internet.  The wifi on this phone must be VERY buggy.  That's a real dissapointment since the phone has so many great features.  I suppose it is possible that my phone has an faulty Wifi.  I'll see if I have problems connecting to wifi elsewhere.  I did try at work yesterday and couldn't get connected, but I wasn't sure how good the wifi was at work so I didn't really worry about that.  I am NOT going to mess with the wifi connection to my home network now that I finally got it connected.  Hopefully after I turn off wifi, it will be able to reconnect the next time I turn it on.  One can hope anyway! 

  • I changed the password to one of my gmail accounts. My MacBook Air accepts the new password and shows me email, my iPhone 5s tells me it's not a valid password. In settings, I change the password and pw is accepted. How can I get 5s to accept new pw?

    I changed the password to one of my gmail accounts. My MacBook Air accepts the new password and shows me email, my iPhone 5s tells me it's not a valid password and does not show me email. In settings, I change the password and pw is accepted. How can I get 5s to accept new pw?

    CORRECTION! GMAIL accepts new pw and shows me email. Mail on MacBook Air and iPhone 5s do not accept new gmail pw. What can I do to get my apple products to accept my new gmail pw?

  • HT1918 cannot get itunes to accept new credit card number

    how come i cant get itunes to accept my new credit card number

    Could be any number of things - hard to tell since you haven't provided details.  If this is for a purchase on the app store, the card's address must be from the same country as the store's location.  Could be lots of other issues.

  • HT4623 ? about how to get iphone to accept new apple id

    I have recently changed my email address and have updated my appleid.  When I try to update an app on my iphone or ipod it shows my old appleid.  It will not take my old pw.  How can I get the iphone and ipod to accept my new apple id?

    Just remember, any and all apps and other iTunes content that was purchased with the old Apple ID will be locked to that Apple ID and to update them, you will have to sign in with the old ID; or you will have to delete the old apps and download them again with the new Apple ID.

  • Problems getting iMac to accept CD's in itunes??

    I wonder if anyone can help. I am having problems loading pre-recorded CD's in my imac? They load perfectly OK in iTunes on my Macbook ... but when I try to load them in my Imac the CD inserts OK into the drive ... makes some kind of noise which suggests the machine is trying to read the CD and then it ejects it again. I have tried various CD's all clean etc ... Any thoughts?
    Thanks
    Jon.

    Sorry .. not updated the signature line on this thread ,, but i am runninf latest sodtware and firmware ... i always update straight away.

  • How do i get iphone to accept new apple id?

    So, I made a new email address which I would like all of my apple emails to go to. So i went online to change my apple id to the new address and I verified the email and everything. But when I go to use my iphone and have to type in my password, it still uses the old email address and won't let me click on it to change it. I have searched all over and can't figure out how to change the apple id on the phone. Help!

    Settings>Store...tap the ID shown...sign out...sign back in with the ID you want to use.

  • Trying to download an app but keep getting asked to accept new terms even though I just accepted them and won't stop

    Continuous loop

    Rather than a "bug" - it appears to be some bizarre issue with the Apple servers that has been going on for a few days now. Users have had a few different issues with the App Store and a couple of them seem to have been fixed, but now this issue has cropped in the last couple of days.
    No matter what we call this - it is not a necessary procedure, it's just fluke thing that needs to be addressed by Apple. This is not normal protocol for downloading apps from the App Store.

  • I'm a meeting organizer and I'm using office 365Outlook. When an attendee invited to a meeting tentatively accept proposing a new time for the meeting, I get a message with "New Time Proposed" and, when I open it, the "Accept" or declined or propose new t

    I'm a meeting organizer and I'm using office 365Outlook. When an attendee invited to a meeting tentatively accept proposing a new time for the meeting, I get a message with "New Time Proposed" and, when I open it, the "Accept" or declined
    or propose new time button is grayed out so that I cannot accept the new time. When this occurs, I must create a new meeting request with the new time that has been proposed.

    Use the trackpad to scroll, thats what it was designed for. The scroll bars automatically disappear when not being used and will appear if you scroll up or down using the trackpad.
    This is a user-to-user forum and most people will post on here if they have problems. You very rarely get people posting to say there update went smooth. The fact is the vast majority of Mountain Lion users will not be experiencing any major problems with the OS, or maybe with apps which are not compatible, but thats hardly Apple's fault if developers don't update their apps.

  • HT1206 Lots of info about one user using multiple computers. What about multiple users with separate Apple IDs using same computer? Having problems getting my wifes new iPhone talking to her apple account on the computer we share (2 users)

    Lots of info about one user using multiple computers. What about multiple users with separate Apple IDs using same computer? Having problems getting my wifes new iPhone talking to her apple account on the computer we share (2 users)

    You need to create a user account for your wife (or yourself depending on who has the current user account). When syncing, each of you should sign in as a separate user, login to iTunes and then sync. I had this problem when my sister got an iPhone. When we did her initial sync, everything on my iPhone showed up on hers. Apple gave me this solution.

  • I can use my appleID without any problems for using to download new apps in the app-store or Itunes - Problem: I can´t use my ID at facetime and Imessage - I´d like to add an EMail account on top to my mobile number. My password will not be accepted!!!???

    I can use my appleID without any problems for using to download new apps in the app-store or Itunes - Problem: I can´t use my ID at facetime and Imessage -
    I´d like to add an EMail account on top to my mobile number to use more this services. My password will not be accepted!!!??? I try it and i try it and i try ist, throughout the same problem. Whats on? The user help desk said, i´ve to reset and use the WLAN key new as well as possible - no way!

    Contact the App store for Apple ID help. Their support link is on the right of the App store window
    LN

  • I have a new computer running os10.9. my old computer ran cs5.5(upgrade version). I am trying to get CS5.5onto my new computer. when i load cs5.5 towards the end of the install it asks for the cs5.5 serial number. i put that in and everything is accepted

    I have a new computer running os10.9. my old computer ran cs5.5(upgrade version). I am trying to get CS5.5onto my new computer. when i load cs5.5 towards the end of the install it asks for the cs5.5 serial number. i put that in and everything is accepted but then it asks for a serial number for a full version of a product which men is design premium cs3 but it doesn't give me that product as a choice from the drop down menu. it only gives me adobe master collection cs3. why when i have purchased all these different upgrades can i now not use them and how can i sort this out. i need cs5.5 on my new computer.

    Contact Adobe support:
    Serial number and activation chat support (non-CC)
    http://helpx.adobe.com/x-productkb/global/service1.html ( http://adobe.ly/1aYjbSC )

  • Just installed Lion and the Magic TrackPad and I am having a problem with one click commands.  I have to hit the pad fairly hard with one finger to get it to accept the command.  Is this normal, is there another way that I am suppose to execute commands?

    Just installed Lion and the Magic TrackPad and I am having a problem with one click commands.  I have to hit the pad fairly hard with one finger to get it to accept the command.  Is this normal, is there another way that I am suppose to execute commands?

    No you just need to turn on Tap to Click. Go into System Preferences - Trackpad and click the Point to Click tab and select the first box which will say Tap to Click and you should be in business.

  • Have published iweb site for five years with no problems and just opened a new site and get - 404: Page not found  This error is generated when there was no web page with the name you specified at the web site.-is the problem with iweb or with hosting?  T

    I am sorry if thie is republished-My first time doing this and I am not sure what goes where and where to hear feedback.
    Have published iweb site for five years with no problems and just opened a new site and get -
    404: Page not found 
    This error is generated when there was no web page with the name you specified at the web site.-
    Troubleshooting suggestions:
    Ensure the page you are linking to exists in the correct folder.
    Check your file name for case sensitivity . Index.htm is not the same as index.htm!
    Temporarily disable any rewrite rules by renaming your .htaccess file if it exists
    is the problem with
    iweb or with hosting?
    One Apple tech started to fix Iweb and had to end session and the next said problem with hosting at Network Solutions as it published
    to local folder. NWS has checked sttting a few times-
    Any help would be extremely appreciated as trying to fix this for about five weeks
    Thanks VG
    <Email Edited by Host>

    It's a really bad idea to post your email address - it's an invitation to spam - and I've asked the Hosts to remove it. (Even though I've now noticed you mis-spelled it! - anyway, never post your address in a forum.)
    You have a site here: http://virginiagordon.com/www.virginiagordon.com/WELCOME.html
    If that's not the page you are having trouble with, what is that page's URL?

  • Anyone else having problems with popups since the new security upgrade? can't get rid of them

    anyone else having problems with popups since the new security upgrade? can't get rid of them

    You may have inadvertently installed adware. You do not need to download or install anything to fix it. It ought not to be related to any Apple security update.
    For a description of how this may have occurred, how to avoid it in the future, and for Apple's recommended actions read How to install adware. Apple's instructions are linked in the Recovery Procedure near the end of that document. Read and follow them carefully. Pay particular attention to the easily overlooked passages directing you to restart your Mac when required.

Maybe you are looking for