What is the best way to establish sso between iphone and IIS?

Hi experts,
I try to configure the SCEP, and I can view a IIS content with "Certificate required", but, can I validate the username with this certificate?
thanks in advance,

Hi,
Yes, TCP/IP is most universal way for the communication. Otherwise you should develop some parts for establish connection / break connection / wait for the data. This way also good when you need to transfer the data across network.
Another possible way is following: you can create DLL from your LabVIEW code, then call this dll from your C# application, and interchange the data through this DLL. Here you can use different techniquies (also TCP/IP as well). The advantage of this method that you will establish LabVIEW<->LabVIEW communication.
In attached example I have create "quick and dirty" project with shared variables. LabVIEW application will write the shared variable, then external application will read this, increment variable, then LabVIEW will read it back. I have used CVI, but you can call SharedLib from C#, here no differences.
Something like that:
best regards,
Andrey.
Message Edited by Andrey Dmitriev on 10-28-2008 03:17 PM
Attachments:
App Intercomm Test.zip ‏224 KB
ScreenshotSV.png ‏13 KB

Similar Messages

  • HT1349 I lost/had my iPhone stolen. Tried using Find My iPhone and it's offline. It was set up. What do I do now? Do I report it stolen? What is the best way in getting back my iPhone if any? Thank you in advance.

    Tried using Find My iPhone and it's offline. It (Find my iPhone) was set up. What do I do now? Do I report it stolen? What is the best way in getting back my iPhone if any? Thank you in advance.

    Find My iPhone is good for misplaced iPhone but not good for thief and it was never meant to be.
    You chance of getting it back is very small.
    There are a few things you can try.
    Try remote lock/wipe your iPhone through Find My iPhone.
    https://www.icloud.com
    You can report to the police, cell carrier (expensive cell charges for international calls, roaming etc)
    Change all the passwords used in iPhone: Apple ID, E-mail, Bank Account ....
    http://support.apple.com/kb/HT2526

  • What is the best way to have access to OSX and OS9 from the same machine?

    What is the best way to have access to OSX and OS9 from the same machine?
    Do I need to partition the hard drive? Installed both Tiger and OS 9 on the G5 and it is having problems starting up properly.
    G5   Mac OS X (10.4)  

    And here is the prove for Edwin's message: Macintosh: Some Computers Only Start Up in Mac OS X

  • Different ways to establish SSO between Portal and ADP

    Hi,
    We are implementing payroll with the help of ADP.
    Please let me know different ways of establishing SSO between portal  and ADP
    Thanks
    Bala Duvvuri

    You may a few issues. SSO with logon tickets is based on accessing web sites in the same domain. So, if the portal is on http://ourportal.company.com, then the web site being accessed needs to have a URL like http://adphosted.company.com. Is the ADP system accessible by a DNS alias that is within company.com? If so, you're OK. If not, then there will be problems.
    The other SSO method is user mapping, but the security implications are not good...

  • Best way to transfer video between iphone and mac wirelessly?

    Please suggest me the best way to transfer files between mac and iphone wirelessly.Mainly for videos.

    If you want to transfer photos and videos from the Mac to the iPhone (but not in the other direction) you can use iTunes and sync via wi-fi: http://support.apple.com/kb/HT1386
    If you want to wirelessly tranfer videos in the other direction you may want to look into a 3rd party app such as http://www.photosync-app.com Note that I have not used that app so be sure to investigate others as well.

  • What's the best way to set up my iPad and iPhone through I tunes

    I have an iPad and now an iPhone what's the best way to sync these in iTunes I'm assuming I'll use the same account and as such the same music aps etcwill sync on both devices? Also it is best to back up to the cloud and would this allows instant transfer of data between device ie pictures? Thanks

    You can use the same Apple ID, iTunes will still be able to tell them apart. If both are on IOS 5.x, you can use backup from the iCloud. To have pictures across all you devices, switch Photo Stream to ON.
    Settings > iCloud > Photo Stream.
    (Note: Photos that are already in Photo Library will not stream, only those you take after Photo Stream is switched on)

  • What is the best way to clean up your mac and make it faster and run to an optimum level?

    Hi Everyone, Hope all is well
    Iv been running my mac pro for a long time now, its a Mac pro, 2x 2.26 GHz Quad Core Intel Xeon. 12 GB 1066 MHz DDR3 Ram
    Over time now it has become slower, at the moment its still running fine but im sure over time it has probabally collected unwanted data etc. i just dont want it to become a problem as its only going to be used more and more... i now notice that some of the regular programs which i open do take a little while longer to open and i sometimes see that little round Mac loading the sign (the round multicolor wheel).., is there a way to clean the mac up? so that it can run more smoothly and just a better over all feel.,,, the machine is still running beautifully but its time i give it more care and revive it a little more..
    What are the best ways to do this, i dont trust any of these non apple based products which claim they can clean ur Mac etc.
    Any solutaion and advice that u guys can give would be great and i would be very thankful
    Thanks in advance

    For immediate speed improvements, upgrade to a Solid State Drive and upgrade your conventional hard drives to new ones, because the newer ones are faster at reading and writing than the ones from 5 years ago.
    By Re-installing your OS onto a solid state drive, the system will boot much faster, and your programs will launch much faster.
    I use a small SSD (only 60GB) which contains only OS X and all my apps.  All of my personal files are on the large mechanical hard drive.  If you still use the drive that shipped with the Mac, then it might be a good idea to replace it.
    Depending on what kind of work you do, then additional RAM will help.  Swapping CPUs should only be done if you are really in need of the improvements they would bring. 
    You appear to have the 2009 dual-CPU Mac Pro, which is the most challenging model to swap CPUs into.

  • What is the best way of reading a browser cookie and writing to sessionbean

    Hi,
    So far I have happily written a cookie in the visting browser and happily can display with a browser using a servlet println etc
    But what is the best way to take that value and put it into say getSessionBean1().setCookieValue("Cookievalue");
    I was thinking on the lines of calling a forward from the servlet "nexpage?cookievalue=stringetc".... or is there some nicer way?
    Thanks
    James

    In the page I simply referenced the facescontext directly... no need for a custom servlet.
    public void createcookie() {
    FacesContext fc = FacesContext.getCurrentInstance();
    HttpServletResponse resp = (HttpServletResponse)fc.getExternalContext().getResponse();
    Cookie userCookie = new Cookie("cookiename", "cookievalue");
    userCookie.setMaxAge(-1);
    userCookie.setMaxAge(3600);
    resp.addCookie(userCookie);
    return null;
    public String readcookie() {
    FacesContext fc = FacesContext.getCurrentInstance();
    ExternalContext ec = fc.getExternalContext();
    Map cookiemap = ec.getRequestCookieMap();
    if (cookiemap != null) {
    Cookie cookie = (Cookie) cookiemap.get("cookievalue");
    return cookievalue;
    For reference I could not get getCookies() method of HttpServletRequest to work.. it would only return JSESSIONID.

  • What's the best way to copy a big poster and print it out?

    I'm doing a big art project (around 5ft by 5ft), where I'm going to draw stuff out by hand, and would like to make a copy of that project by scanning it into the computer, or taking high-res photos of the project and compiling them together in the computer, and then printing the image out at that size, or bigger. So, I will have the original, 5x5ft, and a printed copy. 
    What's the best way of doing this?
    I hear that vector images are ideal for this, so is Illustrator recommended for this?
    I know it's a vector graphics program, but is there any way I can take a bitmap image from a scan or photo, and somehow turn it into a vector? If this is not possible, what recommendations would you have?
    I have Illustrator CS2.

    Take the photo in one shot by a camera with 24MP, e.g.
    http://www.kenrockwell.com/nikon/d3x.htm
    This should be sufficient for a poster reproduction 5ft square
    as a raster image.
    For vectorizing one doesn't need high resolution (it's often
    recommended to blur the source image).
    Perspective and lens corrections can be applied by Photoshop,
    but the lighting should be well balanced.
    Barrel distortion by wide angle lens is really no problem.
    Plenty examples:
    All photos here were taken without tripod by a 170 Euro camera.
    http://www.fho-emden.de/~hoffmann/andalusien13032010.pdf
    Especially see p.20, a photo (with flash) of an exhibition photo,
    viewing direction not orthogonal to the object, then perspectively
    and lens-distortion corrected.
    (The PDF shows the photos heavily downsampled).
    Best regards --Gernot Hoffmann

  • What is the best way to operate 2 separate iphones on one computer

    HI - HELP PLEASE.....
    My wife has an iphone and an itunes account registered on her computer - i have just bought an iphone and i want to register it to the same computer, create and itunes account, but we want to keep out apps & music ect seperate - what is the best way of doing this?  Thanks.
    rb999

    The best way is a matter of personal taste. The Apple support document How to use multiple iPods with one computer suggests a number of ways, each with their own pros & cons. For instance if you generally share one profile on the computer already, creating another just to support a different iTunes library may be inconvenient. Switching libraries within the same profile ought to be as easy as opening two different documents, but it isn't. If you have some cross over in your taste for music and apps you may find a shared library is actually easier to manage.
    We don't have two iPhones in the family as yet but as I understand it each device can have separate settings for syncing calendars and contacts. For example my iPhone syncs these over the air with the Exchange server at work so if/when my wife gets an iPhone it would be easy to have hers sync to our computer.
    If you go down the shared library route you can make sure your apps don't inadvertently merge by turning off Automatically sync new apps from the apps tab when you connect your device.
    For media I use the sync with selected playlists method with a slight twist. Rather than regular playlists I set the grouping field to indicate which users should receive which tracks and create smart playlists based on the content of this field.
    e.g.
    "Alice's Tracks" is "Grouping contains Alice" + "Kind contains audio"
    "Bob's Videos" is "Grouping contains Bob" + "Kind does not contain audio"
    Tracks that both Alice & Bob want on their iPods have the grouping set to "Alice/Bob"
    etc.
    I currently manage our family's five iDevices using this system, each getting a different selection to suit their tastes and the capacity of their device. An advantage of using the grouping field is that it is stored in file tags (for non-wav audio files anyway) so that it is relatively easy to recreate the playlists should the iTunes library get trashed and need rebuilding. Also useful if you move files about manually as playlist membership is preserved when you delete & re-import the tracks.
    tt2

  • What's the best way to add a new iphone to family itunes?

    We just bought a second iphone for my wife.  It was set up with her own apple id.  It looks like the family sharing for itunes requires a common apple id.  What's the best way to share the family music library with her new device?
    Thanks

    Hi,
    I would suggest looking into some javascript samples to insert within your site. 
    Ex: http://www.mortgagecalculator.org/free-tools/
    Kind regards,
    -Sidney

  • What is the best way to sharpen using both Lightroom_4 and Photoshop CS6?

    I want to learn the best way to sharpen various subjects.  I have Martin Evening's latest Lightroom 4 and Photoshop CS6 books, but no mention of which methods are better,  or better for which subjects/conditions.  It seems that Camera Raw and Lightroom are the same, so I'm tempted to just do it all in Lightroom with the Develop module Detail panel, and the adjustment brush for local sharpening. But can I be doing more with Photoshop CS6, or Lightroom and Photoshop together?

    Lightroom and Photoshop have different capabilities.  Photoshop power lies in layers so sharpening in Photoshop is best done using a sharpening layer which can be blended and masked into layers below.  Lightroom is more a image developer then and editor and does not have layer support.  Both Lightroom and Photoshop use Adobe RAW conversion engine to develop images.  Adobe RAW Conversion Engine has very good sharpening and noise reduction capabilities. Sharpening and Noise reduction is more or less a balancing act to much sharpening enhances noise to much noise reducing loose details and add softness.  Though both Photoshop and Lightroom use the same Adobe RAW conversion engine they use different user interfaces when they use Adobe RAW conversion engine.  Lightroom also lacks Layer support.

  • The best way to transfer videos between devices and mac?

    I have an iphone 4s, ipad and a macbook pro - is there any way to transfer videos wirelessly betwen these platforms?
    As far as I know icloud only allows photostream of photos only but nit videos. This is quite inconvenient for video users as I normally take videos using my iphone 4s and would like to edit using ipad/mac's iMovie. I suppose I could transfer videos using a wire between iphone and Mac (still a PAIN without being able to transfer wirelessly), and what about between iphone and ipad? I understand Apple might be concerned about storage and speed for video transfer via icloud, if we could selectively do the transfer and have the option to delete them from icloud after the transfer it will be very much easier for video editor like myself.
    Or have I just missed something? Is there indeed a way to do so??

    If you want to transfer photos and videos from the Mac to the iPhone (but not in the other direction) you can use iTunes and sync via wi-fi: http://support.apple.com/kb/HT1386
    If you want to wirelessly tranfer videos in the other direction you may want to look into a 3rd party app such as http://www.photosync-app.com Note that I have not used that app so be sure to investigate others as well.

  • What's the best way to be able to access and work on files between new iMacs?

    One is used in office downstairs and other is for personal. We want to be able access office documents and work on them upstairs.

    There really is no best way, without knowing what you want to do more in-depth it's difficult to recommend.  You can turn on iCloud on both machines, you can use Sharing on both and/or  you can use a Dropbox account. Please explain in-depth what kind of files you will be sharing and what you are thinking of.

  • What's the best way to transfer music between computers after iTunes Match?

    I've pretty much uploaded everything to iTunes Match now, but my collection is across two computers and so it has merged everything together... Which is fine. However, I was planning on moving some of my items from one computer to another (i.e. from my smaller iTunes Library on the MacBook to the main iTunes Library on my PM G5).
    Since it is all nicely synced now, I've discovered that if I use Home Sharing, then transferring the files manually seems to duplicate them on iTunes Match. So instead of doing this, I'm downloading them from the cloud on my PM and then deleting them on the MacBook once they're done... All good so far. However, a bunch of my music is in ALAC and so I don't want to do it this way because I'll end up downloading the files at 256kbps AAC instead.
    So I just wanted to know, is there a good way of getting already-synced ALAC files from one machine to the other without having to get iTunes Match to re-sync them all over again?

    You can preserve such metadata - worth an initial trial on simply moving as outlined - if metadata is lost you can reinstate by accessing the itunes library .xml file, to force itunes to read it you would need to clear the .itl file (if essential this will work but it is best avoided since it requires iTunes to rebuild your library from the .xml file).

Maybe you are looking for

  • Re: sales analysis report

    HI, New to SAP B1.I need to modify selection criteria, instead of pulling all group items,I need to hard code it to one perticular item group code. Please help me how to do it. Thanks in advance.

  • Flashing light in Wrotham supply. And not working wi-fi..

    Hello. Flashing light in Wrotham supply.   And not working wi-fi, or rather does not recognize the access point. They are not on the list . But the access point is at hand. Please send me the answer to email (Personal information removed by Moderator

  • About FM CM_F_INITIALIZE

    What is this fm used for? any document about it?

  • Text Missing for 0CURRENCY

    In BI 7.0 system, is it possible to get Text for 0CURRENCY since it produces Key only during BEx output and F4 value. Though it gives you the option to choose short/long text. However when its executed in BEx to display 'Key and Text', it does not pr

  • Dynamically invoking a web service.

    How can i dynamically invoke a web service using jax-ws proxy?