How to respond to an OTA response???

Hi
I�m writing a server app using .net. I would like to know what responses an AMS is expecting from the server after it has sent its OTA response? (e.g a POST with 900 Success as the content).
Thanks

For those interested,
respond with "200 OK" as the content

Similar Messages

  • How to respond to IOCTL_MOUNTDEV_QUERY_UNIQUE_ID?

    Hi all!
    I am developing a driver which implement a virtual disk. I am trying to notify MountMgr that a new volume arrive when the volume is mounted. MSDN tell me that I can send MountMgr an IOCTL named IOCTL_MOUNTMGR_VOLUME_ARRIVAL_NOTIFICATION to compete it.
    I do so, and MountMgr send to me some other IOCTLs. MSDN says, the most important IOCTL is IOCTL_MOUNTDEV_QUERY_UNIQUE_ID. My driver can elect to ignore others, but must provide an unique ID as the response of it.
    But I find that the input length of this IOCTL is just 4, equal to sizeof(MOUNTDEV_UNIQUE_ID). MSDN says the struct MOUNTDEV_UNIQUE_ID has two member: 
    USHORT UniqueIdLength;
    UCHAR UniqueId[1];
    I think member UniqueId is a variable size string. Length of it should be more than 4. So I write the code below as response:
    status = STATUS_BUFFER_OVERFLOW;
    Irp->IoStatus.Information = need_len;
    The variable need_len is equal to the summarize of the length of my ID string and size of USHORT, that is 2. But MountMgr send this IOCTL with same length buffer again. I don't know how to respond this IOCTL. Should I ignore this length limit and copy my
    ID to AssociatedIrp.SystemBuffer directly? I think if I do so, the pool will be corrupted. The system will come into BSOD, isn't it? If I do nothing, I find the system will come into a wired mistake after a while. What should I do?
    I hope someone could be kind to help me. Thank you!
    Best regards!
    whiteclouds

    When you have one of these calls, you should return STATUS_BUFFER_TOO_SMALL since that is the error indicating that the buffer needs to grow.  For device driver questions, you should really be asking this on the WDK forum
    https://social.msdn.microsoft.com/Forums/windowsdesktop/en-US/home?forum=wdk
    Don Burn Windows Filesystem and Driver Consulting Website: http://www.windrvr.com
    1. STATUS_BUFFER_TOO_SMALL can't work. I try to set status as it and return, system come into BSOD, windbg tell me the pool was corrupted.
    2. Sorry, before I post my message, I hadn't find here isn't the correct forum. I will post my message at WDK forum again.

  • Why doesn't siri know how to change the time of a reminder? When asked, "Do you want to confirm or cancel your reminder?" Reply, "Can I change the time to a half hour later?" Siri doesn't know how to respond.

    Why doesn't siri know how to change the time of a reminder? When asked, "Do you want to confirm or cancel your reminder?" Reply, "Can I change the time to a half hour later?" Siri doesn't know how to respond.

    Hi
    In iMovie'11 (version 9.0.x)
    on top menu row - Apple/iMovie/File/Edit/Cut (Can vary dep. on language - in Swedish Apple/iMovie/Arkiv/Redigera/Klipp . . . )
    down Cut menu - Slow playback/Raspid Playback/Re-play in Slow Motion and onvards
    Here one can select the Pre-Set speeds
    Are you familiar with getting 'inspector' to run?
    No - but I guess that Double Click on clip/sequense or ctrl-Click on it might open it.
    Yours Bengt W

  • I tried to set up a remote desktop between my macmini and my work computer.  I hit cancel and now the Remote Desktop will not close.  I cannot shut down my computer either.  How do you close a non-responsive application.  I have tried everything!

    I tried to set up a remote desktop connection between my MacMini and my work computer.  It was not working so I hit cancel, but then the big black screen of death came up and will not go a way.  I cannot close my computer nor quit the remote desktop connection.  How do you close a non-responsive application?  By the way, I am new to Mac and it is not as simple as hitting the Control, Alt, Delete.  Please help.

    virginiafromphoenix wrote:
    .......How do you close a non-responsive application?.......
    Try ( alt + cmd + esc ).  Gives you a menu of running applications, and a chance to "Force Quit".

  • How to respond on my iPhone when it disabled?

    How to respond on my iPhone when it disabled?

    You don't.  It's disabled.  You need to re-enable it.  What have you done to re-enable it?

  • What's a loss how to respond when iPad?

    What's a loss how to respond when iPad?

    I'm afraid your question makes no sense. perhaps if you rephrase

  • I am using a timed while loop and am unable to get the loop to run at a speed of less than 1ms (I am currently using the Wait(ms) function). How can I get a faster response?

    I am trying to create a virtual engine within a timed while loop and am unable to get the loop to run at a speed of less than 1ms (I am currently using the Wait(ms) function). This does not however allow realistic engine speeds. How can I overcome this? I have access to a PCI-MIO-16E-4 board.

    andyt writes:
    > I am using a timed while loop and am unable to get the loop to run at
    > a speed of less than 1ms (I am currently using the Wait(ms) function).
    > How can I get a faster response?
    >
    > I am trying to create a virtual engine within a timed while loop and
    > am unable to get the loop to run at a speed of less than 1ms (I am
    > currently using the Wait(ms) function). This does not however allow
    > realistic engine speeds. How can I overcome this? I have access to
    > a PCI-MIO-16E-4 board.
    Andy,
    Unless you use a real time platform, getting extactly 1 ms loop rate
    (or even less) is impossible. It starts getting troublesome at about
    0.1 Hz for standard operating systems.
    I'd tackle your problem with "if i mod 10 == 0 then sleep 1 ms".
    Of
    course this is jerky by design.
    HTH,
    Johannes Nie?

  • How to avoid long user interface response time in long measurements ?

    Hi
    I tried to find more information regarding techniques how to avoid long user interface response times in case of extremely long measurement times with an external instrument communicating over GPIB, so I post this hoping to get some hint or a link to a guideline. I guess this is quite normal problem.
    Problem is that when I want to measure long time in order to get an average result from the instrument, I have to wait until the result is returned from the instrument. Obviously that makes the user interface response very slow in traditional technique. 
    My restriction is the old GPIB 488 instrument driver that I would not want to modify, but I have source code to it.
    What would be the best way to improve the response time for user interface ? I have looked into the few things:
    * multithreading
    * callback in main program for GPIB events
    * modifying instrument driver e.g. to support VISA and creating a VISA callback
    regards,
    Petri

    Several ways to do this:
    If you're getting several measurements, you could have the instrument generate an asynchronous interrupt (an "SRQ" in GPIB terms), then collect the data in response to the SRQ callback.  While you're waiting for the SRQ's, you can have your main thread running the interface so responsive GUI.  You don't have to spinlock on the GPIB read waiting for instrument data.
    Or, as you mentioned, you could spawn a thread to manage the measurements, and use a timer in the main thread to periodically allow you to check the status of the measurement thread.  Again, the main thread mostly just runs the user interface.
    Either way, the idea is to keep the main thread freed up most of the time to run the GUI, and have it periodically check for completion of your measurement sequence.  While you're waiting in the main thread, you may want to make sure the user can't inadvertently re-trigger another measurement sequence until the active one is complete.
    If you do find yourself doing a dead wait, you'd want to break this up into a series of shorter waits, and in between each wait, do a ProcessSystemEvents from the main thread to keep the GUI active.
    Menchar

  • How to retrieve a password policy response after a ldap bind operation

    Background:
    I've set up openldap with the ppolicy overlay. The overlay works as expected, but after a bind operation I need to get hands on the ppolicy response.
    This can be done manually (with shell commands like ldapsearch) by specifying '-e ppolicy' (general extension).
    But how can i get hands on response from my LoginModule? Code:
    env.put(Context.SECURITY_PRINCIPAL, userDN);
    env.put(Context.SECURITY_CREDENTIALS, inputPassword);
    ctx = new InitialLdapContext(env, null);
    ..is it possible to use ExtendedRequest or UnsolicitedNotificationEvent when the creation of the context throws a NamingException (the bind operation fails due to a locked account).
    Thanks in advance!
    J�rgen L�kke

    Hi,
    I am having the exact same problem in that OpenLDAP is implementing the password policy people login and everything is fine, but then the password expires and bang they are out. I would like to be able to give my users some warning to say that their password will expire in x days or that your password has expired you have X logins left.
    Anyway I have tried the methods suggested here and using ctx.getResponseControls() will either give me null or an array with the exact same objects that I passed in with new InitialLdapContext. What I have did work fine when we used the old jar libraries but we moved to JNDI.
    Any help would be appriciated

  • How to respond to itunes on a disabled connect to itunesphone

    how to respond to itunes on a disabled connect to itunesphone

    If your phone is disabled then you will have to connect it to your computer's iTunes : Forgot passcode for your iPhone, iPad, or iPod touch, or your device is disabled.

  • How to get IdP Token (SAML Response) in Office 365 using SharePoint hosted app parts.

    Hi All
    We have a requirement to retrieve data from SQl azure & consume it O365 Sharepoint hosted app parts. to expose SQL azure data we implemented Web API .  Now we are struck at securing Web API. I found below flow in internet search.
    In this process
    Client component (App part) get  IdP token ( signed SAML Responce) from sharepoint & sends IdP token to ACS, which validates the token signature & claims & issues Access Token(valid for 600sec) to client ,which would be forwarded to
    Web API. where web Api validates & provides data.
    Client - SharePoint Site (App parts)
    Identity provider : Onelogin is our Identity provider.
    Application : Web API
    In this whole process . how to get IdP Token (SAML Response) from sharepoint in Sharepoint hosted appparts using client object model? 
    can any one help on this.
    ragava_28

    Hi,
    According to your post, my understanding is that you want to enable/disable the custom ribbon button accordingly.
    We can use the EnabledScript attributes to achieve this scenario.
    The EnabledScript attribute of the CommandUIHandler that will enable or disable the button depending on whether the function returns true or false. 
    There are some articles about this topic, you can refer to them.
    http://dannyjessee.com/blog/index.php/2013/01/javascript-to-conditionally-enable-a-sharepoint-custom-ribbon-button/
    http://aaclage.blogspot.com/2014/07/how-to-enabledisable-ribbon-buttons-by.html
    http://dannyjessee.com/blog/index.php/2014/06/enabling-custom-ribbon-buttons-dynamically-based-on-multiple-selected-item-values-using-refreshcommandui-and-jsom/
    Thanks,
    Jason
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Jason Guo
    TechNet Community Support

  • HT4759 attempting to download clo on app to ipad. Step 2 of download process asks for a storage space. Not sure how to respond.

    attempting to download cloud on app to ipad. Step 2 of download process asks for a storage space. Not sure how to respond.

    HHey GB, thanks, this was of great help and should, if you are correct, solve the problem quickly.
    if I am unable to buy 'Hanna' then I am better to use the money (and that for the apparently totally useless iCloud storage!) on my much-needed medications (I am on Disability) OxyContin and Heroin Hydrochloride tablets From my UK pharmacy. Oh, and Gador Alplax bars from Argentina (we only get Xanax brand here and it is the most expensive in the world, and can only be bought in tiny 0.5mg dose meaning I need twelve tablets daily rather than only THREE of the 2mg Alplax 'bars').
    my entertainment via my new iPad is my only real way of forgetting about the pain and anxiety problems I suffer.
    THANK YOU SO MUCH FOR ANSWERING SO QUICKLY!
    Michael in Scotland
    gail from maine wrote:
    Hi Michael,
    You can contact iTunes Support about the movie issue, and Apple Support about the iCloud Storage refund:
    iTunes Support WorldWide
    Apple Support Numbers WorldWide
    Cheers and best of luck!
    GB

  • How can I add a CAPTCHA response to a FormsCentral online form?

    How can I add a CAPTCHA response to a FormsCentral online (web) form?

    We do not have the ability to add a Captcha at this time.  You can vote on this idea here: http://forums.adobe.com/ideas/2510
    We use the feedback we get through the ideas section to help prioritize future development.

  • How do I see calendar event responses (accept, decline,...)?

    Does Yosemite Calendar track the responses?  I just can't seem to find a way in the Calendar app itself on my macbook how to see who accepted, declined, maybe, or didn't respond at all yet. I see this very easily from my iPhone calendar app, just not on Mac. 
    Thanks!

    I'm not seeing where it shows me that.  Is it only the icons that tell me this?  There's no hover text or right click menu option that gives any other indication.

  • How would one test the system response of the following example control loop

    Basically, I want to control the upstream pressure in a pipe, using a single setpoint PID loop on a valve. As the pressure changes up or down, upstream, I want to open or close a valve appropriately to maintain say 5kpsi.
    I will used the advanced auotune PID loop, My instrument provides a 4-20mA, and my valve accepts a 4-20mA signal.
    Would I be able to simulate this without taking the equipment to a live system? I have a simulated 4-20mA that I could inject into the DAQ and increase/decrease as required to simulate pressure changes, and the DAQ could give a 4-20mA signal to the valve.
    But how would this all work in practice. Id like to see the valve respond, but unsure how I would be able to verify the valve response and upstream pressure
    Any ideas or tips?

    You should be able to simulate without equipment to get the PID response you are looking for.  The best place to state would be the LabVIEW example programs.  Use Help -> Find Example and search for PID.  I used this one to get the PID response I was looking for: C:\Program Files\National Instruments\LabVIEW 2011\examples\control\PID\Autotuning PID Online.vi
    SOme systems respond quickly and others much slower.  Some systems can't deal with overshot and there are many design considerations.  You will need to tune the PID look for what is best for your system.If the system is straight forward and you can apply "rules" then consider the Fuzzy Logic controller.  I have had success with both but there is no magic answer for PID loops except trial and error.
    Matthew Fitzsimons
    Certified LabVIEW Architect
    LabVIEW 6.1 ... 2013, LVOOP, GOOP, TestStand, DAQ, and Vison

Maybe you are looking for