ISEE API for getting the HP warranty details

As per my research i don't find any REST-API to get the HP warranty details, so i tried to achieve the same using ISEE-API. But when sending the request using the below request xml i get an error as 'BAD REQUEST'. 
<?xml version="1.0"?>
-<SOAP-ENV:Envelope xmlns:iseeReg="http://www.hp.com/isee/webservices/" xmlnsOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/">
-<SOAP-ENV:Body>
-<iseeReg:RegisterClient2>
-<iseeReg:request>
-<isee:ISEE-Registration xmlns:isee="http://www.hp.com/schemas/isee/5.00/event" schemaVersion="5.00">
-<RegistrationSource>
-<HP_OOSIdentifiers>
-<OSID>
-<Section name="SYSTEM_IDENTIFIERS">
<Property name="TimestampGenerated" value="2014/1/14 10:25:30 GMT Standard Time"/>
</Section>
</OSID>
-<CSID>
-<Section name="SYSTEM_IDENTIFIERS">
<Property name="CollectorType" value="MC3"/>
<Property name="CollectorVersion" value="T05.80.1 build 1"/>
<Property name="AutoDetectedSystemSerialNumber" value="USM5500380"/>
<Property name="SystemModel" value="HP ProLiant"/>
<Property name="TimestampGenerated" value="2014/1/14 10:25:30 GMT Standard Time"/>
</Section>
</CSID>
</HP_OOSIdentifiers>
-<PRS_Address>
<AddressType>0</AddressType>
<Address1/>
<Address2/>
<Address3/>
<Address4/>
<City/>
<Region/>
<PostalCode/>
<TimeZone/>
<Country/>
</PRS_Address>
</RegistrationSource>
-<HP_ISEECustomer>
<Business/>
<Name/>
</HP_ISEECustomer>
-<HP_ISEEPerson>
<CommunicationMode>255</CommunicationMode>
<ContactType/>
<FirstName/>
<LastName/>
<Salutation/>
<Title/>
<EmailAddress/>
<TelephoneNumber/>
<PreferredLanguage/>
<Availability/>
</HP_ISEEPerson>
</isee:ISEE-Registration>
</iseeReg:request>
</iseeReg:RegisterClient2>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Can any one help me out what is wrong in the above xml format, which is causing such an error to occur. And i would be very grateful if any one can provide me the way to call this API using VB-Script.

Any how i manage to get the GDID and RegistrationToken but when i send a request for HP warranty detail using the GDID and RegistrationToken, i receive a error message 'entitlement service connection failed'. Please find the below details :-
Request xml:
<SOAP-ENV:Envelope
    xmlnsOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:isee="http://www.hp.com/isee/webservices/">
  <SOAP-ENV:Header>
    <isee:IseeWebServicesHeader>
      <isee:GDID>XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX</isee:GDID>
      <isee:registrationToken>XXX</isee:registrationToken>
      <iseeSID/>
      <isee:CSID/>
    </isee:IseeWebServicesHeader>
  </SOAP-ENV:Header>
  <SOAP-ENV:Body>
    <isee:GetOOSEntitlementList2>
      <isee:request>
<isee:ISEE-GetOOSEntitlementInfoRequest
    xmlns:isee="http://www.hp.com/schemas/isee/5.00/entitlement"
    schemaVersion="5.00">
  <HP_ISEEEntitlementParameters>
    <CountryCode>ES</CountryCode>
    <SerialNumber>CZ10130050</SerialNumber>
    <ProductNumber>519841-425</ProductNumber>
    <EntitlementType></EntitlementType>
    <EntitlementId></EntitlementId>
    <ObligationId></ObligationId>
  </HP_ISEEEntitlementParameters>
</isee:ISEE-GetOOSEntitlementInfoRequest>
      </isee:request>
    </isee:GetOOSEntitlementList2>
  </SOAP-ENV:Body>
</SOAP-ENV:Envelope>
SOAP action : http://www.hp.com/isee/webservices/GetOOSEntitlementList2
HTTP URL     : https://services.isee.hp.com/EntitlementCheck/EntitlementCheckService.asmx
Response Received:
<?xml version="1.0" encoding="UTF-8"?>
-<soap:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
-<soap:Body>
-<GetOOSEntitlementList2Response xmlns="http://www.hp.com/isee/webservices/">
-<GetOOSEntitlementList2Result>
<IsSuccess>false</IsSuccess>
-<Error>
<Code>200</Code>
<IsTransientError>true</IsTransientError>
<IsClientError>false</IsClientError>
<IsReRegisterError>false</IsReRegisterError>
<Message>entitlement service connection failed</Message>
</Error>
<BackoffMultiplier>1</BackoffMultiplier>
</GetOOSEntitlementList2Result>
</GetOOSEntitlementList2Response>
</soap:Body>
</soap:Envelope>
Is there any issue with the Request xml??

Similar Messages

  • FM for getting the Service Ticket Details

    Hi Group,
    I have a requirement wherein, I need to get the Service Ticket(s) for the system when I pass the Status of the Service Ticket.
    The query is like:
    <b>Import </b>-> Passing the <b>Status</b> of the Ticket (like : <b>Assigned/Closed/Resolved </b>).
    <b>Export-</b>> Get the details of all the <b>Service Tickets</b> whose status is mentioned in the
                 <b> Import</b> Parameter..
    So please let me know of the <b>FM/BAP</b>I to achieve this task.
    thanks in advance.
    Regards,
    Amit.

    Hi Amit,
    You can use FM
    'CRM_SERVICE_PROCESSES_SEARCH'
    Here in 'Export' Parameter:: STATUS specify the status required
    Parameter: FROM and TO for dates.
    and collect the result from Import parameter: BUSINESS_PROCESSES_LIST
    Best Regards,
    Pratik Patel
    <b>Reward with Points!</b>

  • API for getting the build date of development components

    Hello ,
          we are changing the format of the  <about> screen of our application. We show the version of the main development components that are the part of our application.
    For the version date of the development components, we were earlier showing the deployment date. However we now plan to change it to their build date. We need to know if there is any API to find the build date of the development components.
    Thanks alot in advance for helping!

    Hi do you want all the dates from the back date to sysdate or only the particular back date
    SQL> select sysdate from dual;
    SYSDATE
    22-JUN-09
    SQL> select sysdate-10 from dual;
    SYSDATE-1
    12-JUN-09or if you want all the back dates starting from one particular then
    SQL> select sysdate-10+level from dual
      2  connect by level<=10;
    SYSDATE-1
    13-JUN-09
    14-JUN-09
    15-JUN-09
    16-JUN-09
    17-JUN-09
    18-JUN-09
    19-JUN-09
    20-JUN-09
    21-JUN-09
    22-JUN-09
    10 rows selected.Edited by: oracle_for_dude on Jun 22, 2009 12:11 PM

  • API for decrypt the encrypted credit card details

    Hi Friends,
    Is there any PLSQL API for decrypt the encrypted credit card detail in oracle application R12.
    Thanks,

    First, to prevent this from happening again, turn off "In App purchases" in the Restrictions settings on your iPad. You may also want to turn off the ability to install apps, to prevent purchases in case the child gets hold of your iTunes Store account information, and set the password to be required immediately. For more information, see:
    http://support.apple.com/kb/HT4213
    As to a refund, that's not automatic since the terms of sale for the iTunes Store state that all sales are final. You can contact the iTunes Store, explain the reason for your request, and ask, though:
    http://www.apple.com/support/itunes/contact.html
    They're usually pretty lenient in the case of inadvertent purchases by children. No guarantees, though, just as if your child was in a store and ate a bunch of food (in other words, something that can't just be returned).
    Good luck.

  • Function module for getting the partner details and Classifications

    Hi,
    Can any one tell me FMs for getting the Partner Details and for getting the characteristics associated with an equipment??
    Thanks

    Hi Anu,
    are you talking about the SAP Business Partner???
    Well, if yes, then just check the FM 'BAPI_BUPA_CENTRAL_GETDETAIL'.
    Or just search for oher FMs with BAPI_BUPA*.
    Hope this helps...
    Ciao Bernhard

  • If i buy an apple product from the actual customer who bought it, and i face some problem with it, but the device is still under warranty, so would there be any issue for getting the device checked?

    If i buy an apple product from the actual customer who bought it, and i face some problem with it, but the device is still under warranty, so would there be any issue for getting the device checked?

    If you make an appointment at the Genius Bar about a problem, they will check and evaluate the device, and if it warrants a replacement under warranty, they make the final determination. We are users here. This is a user to user support forum. We cannot determine what Apple will do. I can tell you what I already did, the warranty follows the device.

  • How to get the "Eps option" details for illustrator cs3.

    Dear all,
    Could you please advice me how to get the Eps option(Preview, Embeded Fonts(for other application), Include Document Thumbnails etc.) details for illustrator saved files through scripting. I have attached the screen shot("sample.bmp") for yours review. Please explain in detail.
    Thanks in advance.

    Thanks for your response. As per your advice i tried to open the illustrator cs3 file in text editor. I got only the Thumbnail and Version details. But I am unable to get the remaining below details.
    (Preview=>Format : TIFF (8-bit Color), TIFF (Black & White), Transparency=>Overprints : Preserve, Discard, Fonts=>Embed Fonts, Options=>Include Cmyk PostScript in RGB Files, Compatible Gradient and Gradient Mesh Printing, Adobe Postscript=>LanguageLevel2, LanguageLevel3) .
    Kindly advice me how to get the above details.
    Thanks for looking into this.

  • NB305 - Can't get the limited warranty

    I brought a NB305-106 a few weeks ago and I have a problem trying to get the limited warranty, on TEMPRO it simply says that my serial number/part number are invalid, and on the web when trying to register, it says that the serial number has already been registered... so I cannot even apply for any other warranties. Anyone have any suggestions?

    Can you please send the link where you try to do this?
    To check registration status please visit http://www.toshiba-tro.de/unitdetails
    For registration problems please contact Toshiba in your country. Contact details can be found at http://eu.computers.toshiba-europe.com/innovation/contact_toshiba.jsp

  • Not able to get the Aduit log details through webservices

    Hi Team,
    I am trying to get the audit log details using according to Michal's PO/PI tips: Audit Logs from a native WS - new feature  but i am getting following result 
    i have used
    key = new MessageKey(msg.getMessageId(), msg.getMessageDirection()); -------------> to generate the message key
    generated value: 02766515-d1fe-11e3-b52d-0000008030fe(OUTBOUND)
    and i have placed that value in the messagekey as shown above but i am not getting any output and it is returned saying fault String please some buddy help me in solving the problem.
    Thanks in advance.
    Regards,
    Avinash.

    If it just for a particular message then another simple solution is to open the message and go to details in pimon.
    http://wiki.scn.sap.com/wiki/display/PIS/AdapterMessageMonitoringVi+service+and+it%27s+methods

  • RFC to get the Vendor Master details

    Hi Experts,
    We have a requirement to create an RFC to get the Vendor Master details (Used for Searching the Suppliers), where the Input criteria : Vendor Name(First Name & Last Name), City, Purchase Organisation and the corresponding output is Address Data, Central Data, Bank Information, Sales Data of Customer. Is there any standard report or function module we can use for this requirement.?
    Thanks & Regards
    -Asim

    Hello,
    You may need to write your own RFC with the interface that you want. If all the input parameters are obligatory then you can use the following logic
    Select the vendor numbers from table LFA1 based on the name and city.
    Us these vendor numbers with the purchase organization from the input parameters and filter them using the table LFM1.
    Now the result will be all vendor numbers with the name specified in the city for the specified purchase organization.
    That may be multiple vendors so run a loop and inside the call the RFC BAPI_VENDOR_GETDETAIL and pass the vendor numbers to get the other details.
    Hope this helps in solving your query.
    Regards,
    Sachin

  • HT1692 how can i get the previous contact details in iphone

    how can i get the previous contact details in iphone

    You don't want to maintain a reference to the last selected node, but to the last selected path. Nodes within a tree are addressed using a TreePath, with contains references to each node from the root, down to a specific node. Look at the JavaDocs of javax.swing.tree.TreePath for more info.
    Also, JTree has getter/setter methods for the selectionPath.

  • Reg: Method to get the apache port details ?

    Team,
    We are developing OAF custom page with inline report.
    From this inline report , we have a requirement to navigate to another OAF page.
    For navigating to another OAF page we need to mention the total hyperlink, we are able to get the host name details but could not get the port details.
    Ex : Host Name: dev1.xxtempel.com
    Please provide your thoughts.
    Regards
    Sridhar

    I don't think dynamically we can obtain the port number , how ever you can frame the URL using java concurrent program .
    --Keerthi                                                                                                                                                                                                                                                                                   

  • How to get the shipping point details nothing but (name , address, etc)

    Hi, i am having the billing document number from that i am fetching the delivery doc number and shipping point.
    how i can get the shipping point details from the shipping point number.in which table i  need to pass this shipping point number(VSTEL)?

    Hi Praveen,
    TVST Shipping point
    KNVS Customer Master Shipping Data
    VTTK Shipment header
    VTTP Shipment item
    VTFA Flow shipping documents
    TVSTZ Organizational Unit: Shipping Points per Plant
    B024 Shipping point
    TVSRO Shipping points: Countries in Which Routes are Defined
    TVSWZ Shipping Points per Plant
    You can get the details from ADRC table. Please note that the TVST table has got a field ADRNR, pls use the same field in identifying the number and goto ADRC table enter the number under the ADDRNUMBER. It will fetch the address details for you.
    For ex from the standard SAP: I have taken std 0001 shipping pt. When I run TVST table for shipping points I get to see that ADRNR field has 297 as the number. I take the same number 297 and goto ADRC table and enter it under ADDRNUMBER and it will give me the address details entered for shipping pt 0001.
                                                              (or)
    All Standard Reports which are available are as under:
    SAP Easy Access: Information Systems -> Logistics -> Sales and distribution ->
    Shipping point -> Deliveries / Returns
    Shipping point Analysis - MC(U
    Shipping point Analysis-Returns - MC-O
    Reward if helpful,
    Regards,
    Harini.S

  • API for getting diagnotic server info

    Is there an API for getting diagnostic information about the server (memory usage, etc.). We'd like to write a program to monitor the server.

    I am trying to do something similar my call to Session.getSession generates
    the following exception:
    com.iplanet.portalserver.session.SessionException: Can't find resource for
    base name iwtNaming, locale en_US
    Can you help?
    Thanks?
    "Marshall Levin" <[email protected]> wrote in message
    news:9ljs3s$[email protected]..
    Hi,
    I have a JSP running on the same web server as the portal server but not
    running within the portal desktop (it is a stand-alone JSP).
    I have successfully gotten the user's Profile object via the Sessionobject
    and I can get the Hashmap of attributes.
    What I'm trying to get now is the user's domain and role -- is there anyway
    I can get this? I don't see these in the list of attributes. Is there an
    API to find this out? Any suggestions on how I can obtain this info
    programmatically?
    Thanks

  • HT201363 Dear, Apple Support  it says that when i am getting the credit card details on my iPhone 5s.....it always says that when i click continue please contact iTunes support to complete this transaction!!

    Dear, Apple Support  it says that when i am getting the credit card details on my iPhone 5s.....it always says that when i click continue please contact iTunes support to complete this transaction!!

    Use the link below to contact iTunes support.
    https://ssl.apple.com/emea/support/itunes/contact.html

Maybe you are looking for

  • Internal Table in MIRO

    Experts, While doing IR in MIRO , i have entered a PO no . then the Line Items under this PO are getting displayed.in PO Reference Tab. Suppose there are 3 line Items . But i want to do IR for only 2 line items (whose Quality Inspection has been done

  • HR Renewal Self Services Integration Issue with SAP Portal

    Hi, We are  Implementing  HR Renewal 2.0 FP1 and the Self-Services Landing Page to be launched from within SAP Portal. I have imported the PFCG role ZSAP_EMPLOYEE_ESS_XX_UI5_1  into portal and assigned to the user. The End User read permission is pro

  • Low cpu, loud fans

    hi, since a few months my macbook pro has became very noisy, i got only to bars in the activity monitor, but the fans run around 4500 rpm. i tried creating a new user account, and the problem still persists. even in target disk mode the fans run cons

  • HT4859 I want to be able to restore items from older backups, NOT a restor to a new device.

    I want to see all my backups and restore specific items.....how?

  • How do i set Lightroom 5.6 as my default CR2 program...

    How do i set Lightroom 5.6 as my default CR2 program. Every time i browse for a default program and choose Lightroom it rejects it and goes back to photoshop. Lightroom works fine when importing photos,its when it try to open files out side Lightroom