1394 invalid image type

I am trying to use the NIIMAQ1394 functions in VB. I finaly figured out how to snap an image into the CWIMAQViewer, but when I try to use it as a CWIMAQViewer.Image after it is displayed in the viewer in a CWIMAQVision Function I recieve invlaid image type error. Below is the code I am trying to use.
errorCode = imaq1394SnapCW(sid, myImage2)
If (errorCode <> IMG1394_ERR_GOOD) Then
DisplayError (errorCode)
Stopped_Click
End If
CWIMAQVision1.Threshold CWIMAQViewer1.Image, myImage, 150, 255
So what I really want to know is how to you use the images aquired in the NIIMAQ1394 in all these NIVision Functions for Measurement Studio?

You have to make sure you are capturing the image in MONO form. The CWIMAQVISION cant handle color images from the viewer. It will just crash your whole computer and not give you an error that you may need to use a 8 bit image.

Similar Messages

  • I get an 'Invalid Image Type' error when using the Locate Features. (Evaluatio​n version)

    I'm using the Evaluation Version of Vision Builder. I Simulate Acquisition using my own image (jpg), which loads fine. However, when I try to use any of the Inspection Steps features, other than Enhance Images, I get an "Invalid Image Type" error.

    Hello,
    Vision Builder functions usually work with a certain image type. For example, all the functions listed under Binary (in the menubar) will only work with binary images. Likewise, color functions will work for color images and grayscale will work for grayscale images.
    You can convert a color image into a grayscale by extracting a color plane and a grayscale image can be converted to binary using the threshold function.
    Hope this helps!
    Regards,
    Yusuf C.
    Applications Engineering
    National Instruments

  • LabWindows/CVI and IMAQ - Invalid Image Type when saving bitmap

    I create and image, grab it, then display it, but when I go to save it using imaqWriteBMPFile, I get an error that maps to Invalid Image Type, so I use imaqCast to cast it to an IMAQ_IMAGE_U8 type (which is what the orignal image was created as), then it works, except that my image has changed, that looks like the contrast or something has changed. Any suggestions?
    Attachments:
    image.bmp ‏302 KB

    What kind of camera & IMAQ board are you using? I have seen similar problems when a 12 bit camera is used. The image is acquired as a 16 bit image, and if you just convert it to an 8 bit image, it ends up looking like the one you attached. To correctly convert to 8 bits, you need to shift the appropriate number of bits during the conversion. For a 12 bit camera, that would be 4 bits.
    Bruce
    Bruce Ammons
    Ammons Engineering

  • IMAQ resample invalid image type

    Hi,
    I am rewriting an old non-versatile version of a VI. I don't have much experience but I have the old VI as sort of a template for what I need to do. It's weird but although I try to do things exactly the same way, they don't work.
    I acquire a high resolution image from the camera (IMAQ Acquire) which is too big (1280x1024). I want to resample (IMAQ Resample) it to 256x320px.
    I get the error message: Error -1074396080 occurred at IMAQ Resample Invalid image type.
    The probe I put in to read the Image Src shows the image correctly and tells me it is an unsigned 16 bit image. This should be a valid image type, right?
    Dennis
    P.S. I use LabView 2009
    Solved!
    Go to Solution.

    Deneck wrote:
    I get the error message: Error -1074396080 occurred at IMAQ Resample Invalid image type.
    The probe I put in to read the Image Src shows the image correctly and tells me it is an unsigned 16 bit image. This should be a valid image type, right?
    No, not right. IMAQ Resample doesn't support U16 type (at least up to VDM2011). Refer to Help.
    Convert your image to I16 (if possible) prior to resampling.
    Andrey.

  • Imaq invalid image type

    Hi,
    i try to analyse a video image. it is an image typ 32 bit rgb. In the sub vi I try to count the pixel with a red value greater than the green and the blue value. Therefore i need to split the colorplanes.
    After that I write the values in an arry to count them.
    Sometimes the Error "Invalid image typ" appears. I´m not sure why this error sometimes appeared and sometimes not.
    I hope someone can help me to find the solution.
    Attachments:
    RED Pixel.vi ‏45 KB

    Hello,
    does the error happen only, when your ROI is passed as an empty cluster? So, if you have an active ROI, there is no error right?
    Make sure your ROI is not empty, or alternatively you could use "IMAQ SetImageSize" after allocating the memory for the mask (set the size to the same size as the input rgb image with "IMAQ GetImageSize".
    Does this help?
    Best regards,
    K
    https://decibel.ni.com/content/blogs/kl3m3n
    "Kudos: Users may give one another Kudos on the forums for posts that they found particularly helpful or insightful."

  • Strange behavior with invalid image type error

    Hi,
    I'm currently developing a stereo vision application. I started with the StereoVisionExample provided by NI but want to use my own camera drivers.
    I created the GetImage vi (see attachment) that accepts the camera handle and an allocated image, reads the acquired image from the camera, transforms the image array to a color image and returns it. I tested it with the TestVI (attached) and it works perfectly well.
    Now I wanted to integrate it as image source for the given example application and replace the ExpressVIs but this doesn't work. I get a 1074396080 invalid image type error as soon as the GetImage SubVI is called. The only possibility to run it without an error is to set the image type to RGB64 but in this case the image is not shown correctly. I get the error no matter if I choose Grayscale, HSL or RGB32 for the initial image creation. The strange is that with the TestVI everything works perfect, even with HSL that I'm using to get the grayscale image or RGB32. Basically I didn't do anything except copying the VI from Test to StereoExample. It's driving me crazy that the GetImage VI works perfect in the one but not in the other VI with the same data! What's wrong with that?
    I appreciate your help.
    Attachments:
    getImage.jpg ‏47 KB
    stereoVision example.jpg ‏92 KB
    TestVI.jpg ‏44 KB

    Hello NicoSch!
    In order to reproduce the error, I need the image data generated by the image driver you are using. Please wire the 2D array with the image data to a control on the frontpanel and run the VI. With the data now displayed, right-click the control and choose "Data Operations > Make Current Value Default" to save the data in the control. Please attach the VI to a new forum post.
    Additionally, can you describe the type of image acquired by the camera? Is the 2D array a 32bit RGB image? What camera and LabVIEW version are you using?
    Regards,
      Georg

  • Invalid image type imaqdx

    Hello,
    I hope that someone helps me to find the error in my VI. I am trying to modify the optical flow feature tracking. So Instead of reading the frame from a folder, I want to collect them from the camera recording.
    You can find attached the VI.
    Thanks for your help.
    Solved!
    Go to Solution.
    Attachments:
    Untitled 5.vi ‏37 KB

    Hello,
    Your problem is improper image allocation. This will work:
    Your code is quite messy...
    Anyway, I had an old example that I modified, maybe you can find it useful (attaching it for Labview 2010).
    Run the program, select the keypoints (hold ctrl + left click for multiple). When selecting keypoints, adding them (via the "add" button) and running the main loop with "continue...",  take care that the object of interest does not move (you can reprogram this at your leisure).
    Hope this helps.
    Best regards,
    K
    https://decibel.ni.com/content/blogs/kl3m3n
    "Kudos: Users may give one another Kudos on the forums for posts that they found particularly helpful or insightful."
    Attachments:
    OpticalFlow_live.zip ‏34 KB

  • ReadBarcode (Invalid image type) Capture images with a prosilica camra

    Hello everyone,
    I'm a new user of Labview and making an application that reads barcodes via Prosilica camera, I made a VI, but it gives me the same error again and again.
    I searched the site and found something about ROIToMask, but couldn't use it.
    Can you please give me tips on how to do it.
    I'm uploading the VI file.
    I know that this might be an easy question, but I spend alot of time and at last I deceided to ask you guys.
    Thank you
    Attachments:
    Barcode reader.vi ‏86 KB

    Thanks for your reply, I think that you are right, what I did was I changed the camera settings, so now it reads not as 16 bit, but as 8 bit.
    But now I'm facing another problem with it, when the camera records it gives a message that says :
    Not a linear barcode
    unfortunately I'm not at the lab at this moment so I can't give you the number of the message, but it says as I mentioned. If I use the barcode example of the LabView it works ofcourse, but I justed changed the barcode example of Labview so that it shouldn't read from a file, but it should read via camera, but the Not a linear barcode comes!!!!!!
    The VI file that I uploaded doesn't have any problems you are right but could you please give me some advice on how should I make this VI.
    Thanks again
    Mike

  • ORDImageSignature Invalid data type in Oracle 8i

    hi there,
    i have just started working on Intermedia, i am using Oracle 8i. i have configured the intermedia and executed the ordwebutl.sql file. all othe media data types are working perfectly like, ORDAudio, ORDImage,ORDVideo, but the ORDIMageSIgnature is not working at all. when i use it as data type in any table it says Invalid data type. which means oracle 8i is not recognizing ORDImageSIgnature at all. plz help me as soon as possible. Thanks in advance.

    The ordimagesignature is not something you can see or hear. It is strictly binary metadata about the image, used only to compare images to each other.
    What are you trying to do?
    Larry

  • Webservice hell -  invalid content type for SOAP: TEXT/HTML

    Hi All
    I'm trying to call a webservice in XI and getting the dreaded  "invalid content type for SOAP: TEXT/HTML" error.
    Running it in XMLSpy it works perfectly well, but not in XI.
    Here are some screenshots:
    1) The Request sent from XMLSpy
    [XMLSpy Request - Successful|http://www.host-images.com/u/files/3spjf72drc9ncjhtiovo.jpg]
    2) The successful response to XMLSpy
    [XMLSpy response|http://www.host-images.com/u/files/c3u8k9bplpzu8z6il61a.jpg]
    3) Here is the error in XI in RWB, together with the XML payload
    [XML and RWB error|http://www.host-images.com/u/files/9ex5dhqua9y07lhpja09.jpg]
    4) Here is the SOAP Comms Channel
    [Comms channel|http://www.host-images.com/u/files/w6pa90yy0nkly628535i.jpg]
    Note:
    1. The 'Target URL' and the 'SOAP Action' are taken directly from the parameters used successfully in XMLSpy
    2. I have already added 'localejbs/AF_Modules/MessageTransformBean' / 'Transform.ContentType' / text/xml;charset=utf-8
    I woul really appreciate some help with this, as I'm getting kind of desparate.
    Thanks in advance.

    Hi Mark / All
    Thanks for the info.  I have some additional questions please:
    1.  Regarding SOAP 1.2
    It apears that the WSDL provided allows for both 1.1 and 1.2.  Infact, when I sent the SOAP request in XMLSpy, the first thing I see if a pop-up window asking me to select 1) OrderServiceSoap or OrderServiceSoap12 ...
    [XMLSpy|http://www.host-images.com/u/files/g50y9xohakbhb7j5v3w4.jpg]
    However I don't see this option when I use the WSDL in XI, only a list:
    [XI|http://www.host-images.com/u/files/230urvn7okvb4jbad1o8.jpg]
    How can I emulate selecting the the non-1.2 version in XI?
    2.  Probably irrelevant but,  If I tick 'Do not use SOAP envelope'  option on the CC I get:
    MP: exception caught with cause com.sap.aii.af.ra.ms.api.RecoverableException: SOAP: response message contains an error XIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 407 Proxy Authentication Required ( The ISA Server requires authorization to fulfill the request. Access to the Web Proxy filter is denied.  )
    Can anyone confirm if this is a consequence of ticking ''Do not use SOAP envelope', or if it indicates a underlying problem with the Proxy credentials I have entered.
    Thanks again.

  • Upload from iAd Producer fails with error "The Ad contains an invalid banner type".

    I worked half a day on an ad in iAd Producer, only to see it fails right after the upload with this error:
    "The Ad contains an invalid banner type"
    "iAd Workbench currently accepts standard banners. Remove all other banner types and try upload your banner again."
    The error and the documentation give no hints on what these "standard banners" are exactly. My project is based on the Tap - Web iAd Blueprint, which requires a bunch of images to be created. I created all of these, regular images as jpeg, transparent images as png. At first the png's were normal (24-bit), but then I read in the help that 8-bit is required. Downgrading the png's to 8-bit didn't help to fix the error though. I also tried recreating the whole project, but it didn't help: same error.
    Before the upload, I get this vague warning:
    "Are you sure you want to upload your project with assets missing? There are 0 assets you haven't provided yet."
    Sounds like a bug. This warning was there in my 1st and in my 2nd project, the 2nd one being the exact copy.
    Finally I want to say that simulating in the simulator or Safari, or uploading to the sandbox works fine.
    I'm using version 4.2 of iAd Producer on OS X 10.9.2.
    Can anyone help me?
    Has anyone been successful with the Tap - Web iAd Blueprint?

    The Tap to Web blueprint for iPad contains banner types currently not supported in iAd Workbench.  Delete the MRec and Full Page banners and you should be able to upload.
    -Mark

  • Parameter causes invalid column type in custom iSetup API

    I have written a custom BC4J API that has 1 parameter. The extract operation for this API worked earlier with no parameter defined. Now I have defined 1 parameter, and specified 1 value for the parameter, and upon extraction, I get this error:
    Name: XXECSS_AZ_AKCUSTOMREGIONS
    Type: BC4J
    Path: oracle.apps.xxecss.isetup.server.AkCustomRegionsAM
    Time Taken(seconds): 1.0
    Logging parameter criteria xml
    <?xml version="1.0"?><parameters><conjunction>AND</conjunction><language></language><mode type="Import"> </mode> <mode type="Export"><param type="NameValuePair" seq="1" display="DisplayEnabled" editable="Editable"><operator>LIKE</operator><separator> </separator><name>CustomizationCode</name><value>1251058748512EGO_ITEM_RESULT_D</value><msgcode></msgcode><appcode></appcode><filtercode>CCFILTER</filtercode><datatype>java.lang.String</datatype><sqlforlov>SELECT DISTINCT CUSTOMIZATION_CODE CustomizationCode FROM AK.AK_CUSTOM_REGIONS</sqlforlov><sqlforlovcol></sqlforlovcol><param1>Customization Code</param1></param></mode> </parameters>
    oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_GENERIC_MESSAGE. Tokens: MESSAGE = oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT * FROM (SELECT AkCustomRegionsEO.CREATED_BY,
    AkCustomRegionsEO.CREATION_DATE,
    AkCustomRegionsEO.CRITERIA_JOIN_CONDITION,
    AkCustomRegionsEO.CUSTOMIZATION_APPLICATION_ID,
    AkCustomRegionsEO.CUSTOMIZATION_CODE,
    AkCustomRegionsEO.LAST_UPDATED_BY,
    AkCustomRegionsEO.LAST_UPDATE_DATE,
    AkCustomRegionsEO.LAST_UPDATE_LOGIN,
    AkCustomRegionsEO.PROPERTY_NAME,
    AkCustomRegionsEO.PROPERTY_NUMBER_VALUE,
    AkCustomRegionsEO.PROPERTY_VARCHAR2_VALUE,
    AkCustomRegionsEO.REGION_APPLICATION_ID,
    AkCustomRegionsEO.REGION_CODE
    FROM AK.AK_CUSTOM_REGIONS AkCustomRegionsEO) QRSLT WHERE ((CUSTOMIZATION_CODE LIKE :1 ));
         at oracle.apps.fnd.framework.OAException.wrapperException(OAException.java:896)
         at oracle.apps.az.fwk.server.BEExport.exportToXML(BEExport.java:525)
         at oracle.apps.az.fwk.server.BEApplicationModuleImpl.exportToXML(BEApplicationModuleImpl.java:403)
         at oracle.apps.az.r12.api.BC4JAPI.exportAPI(BC4JAPI.java:256)
         at oracle.apps.az.r12.extractor.cpserver.APIExtractor$APIExecuter.run(APIExtractor.java:635)
    ## Detail 0 ##
    java.sql.SQLException: Invalid column type
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
         at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:208)
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectCritical(OraclePreparedStatement.java:9231)
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectInternal(OraclePreparedStatement.java:8812)
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectInternal(OraclePreparedStatement.java:9534)
         at oracle.jdbc.driver.OraclePreparedStatement.setObjectAtName(OraclePreparedStatement.java:9560)
         at oracle.jbo.server.OracleSQLBuilderImpl.bindParamValue(OracleSQLBuilderImpl.java:3919)
         at oracle.jbo.server.BaseSQLBuilderImpl.bindParametersForStmt(BaseSQLBuilderImpl.java:3335)
         at oracle.jbo.server.ViewObjectImpl.bindParametersForCollection(ViewObjectImpl.java:13827)
         at oracle.jbo.server.QueryCollection.buildResultSet(QueryCollection.java:804)
         at oracle.jbo.server.QueryCollection.executeQuery(QueryCollection.java:669)
         at oracle.jbo.server.ViewObjectImpl.executeQueryForCollection(ViewObjectImpl.java:3723)
         at oracle.jbo.server.OAJboViewObjectImpl.executeQueryForCollection(Unknown Source)
         at oracle.apps.fnd.framework.server.OAViewObjectImpl.executeQueryForCollection(OAViewObjectImpl.java:4511)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:743)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:892)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:806)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:800)
         at oracle.apps.az.fwk.server.BEExport.exportToXML(BEExport.java:514)
         at oracle.apps.az.fwk.server.BEApplicationModuleImpl.exportToXML(BEApplicationModuleImpl.java:403)
         at oracle.apps.az.r12.api.BC4JAPI.exportAPI(BC4JAPI.java:256)
         at oracle.apps.az.r12.extractor.cpserver.APIExtractor$APIExecuter.run(APIExtractor.java:635)
    Status: ERROR
    The data type used is java.lang.String, and the value used is : 1251058748512EGO_ITEM_RESULT_D.
    using the query shown here, replacing the :1 bind variable with this value works fine. I'm wondering if I need to use a different data type, something more specifically supported by the iSetup Framework?

    Never Mind. I found the problem. It turns out it was that the VO's in the API were set to OracleNamed Binding, and it should be OraclePositional (Oracle) type binding.

  • Error : CGImageCreate: invalid image colorspace: NULL.

    Hi,
    I am unable to launch Intellij IDEA from command line using ./idea.sh on my Mac (OS 10.7.4). The intellij IDEA flash screen comes up after which I am seeing the following error and the application hangs -- the IDEA does not open. I have been trying to get over this for a long time but no help. Any help is appreciated.
    bash-3.2$ ./idea.sh
    Dec  7 17:37:28 rahusrivastava.ariba.com java[1789] <Error>: CGImageCreate: invalid image colorspace: NULL.
    Dec  7 17:37:28 rahusrivastava.ariba.com java[1789] <Error>: CGImageCreate: invalid image colorspace: NULL.
    Dec  7 17:37:28 rahusrivastava.ariba.com java[1789] <Error>: CGImageCreate: invalid image colorspace: NULL.
    Dec  7 17:37:28 rahusrivastava.ariba.com java[1789] <Error>: CGImageCreate: invalid image colorspace: NULL.
    Dec  7 17:37:31 rahusrivastava.ariba.com java[1789] <Error>: CGContextGetCTM: invalid context 0x0
    Dec  7 17:37:31 rahusrivastava.ariba.com java[1789] <Error>: CGContextSetBaseCTM: invalid context 0x0
    Dec  7 17:37:31 rahusrivastava.ariba.com java[1789] <Error>: CGContextGetCTM: invalid context 0x0
    Dec  7 17:37:31 rahusrivastava.ariba.com java[1789] <Error>: CGContextSetBaseCTM: invalid context 0x0
    Dec  7 17:37:34 rahusrivastava.ariba.com java[1789] <Error>: CGImageCreate: invalid image colorspace: NULL.
    Dec  7 17:37:34 rahusrivastava.ariba.com java[1789] <Error>: CGImageCreate: invalid image colorspace: NULL.
    Dec  7 17:37:34 rahusrivastava.ariba.com java[1789] <Error>: CGImageCreate: invalid image colorspace: NULL.
    Dec  7 17:37:34 rahusrivastava.ariba.com java[1789] <Error>: CGImageCreate: invalid image colorspace: NULL.
    Dec  7 17:37:34 rahusrivastava.ariba.com java[1789] <Error>: CGImageCreate: invalid image colorspace: NULL.
    2012-12-07 17:37:34.623 java[1789:c07] CWindow's _nativeShow encountered error: *** -[__NSPlaceholderArray initWithObjects:count:]: attempt to insert nil object from objects[0]
    Dec  7 17:37:34 rahusrivastava.ariba.com java[1789] <Error>: CGImageCreate: invalid image colorspace: NULL.
    Dec  7 17:37:34 rahusrivastava.ariba.com java[1789] <Error>: CGImageCreate: invalid image colorspace: NULL.
    bash-3.2$
    Thanks,
    Rahul.

    My input certainly wasn't intended to ba sarcastic, so please forgive me if it seemed so.
    Seroiusly, always do a search before updating, http://discussions.apple.com/search.jspa?objID=f1201&search=Go&q=update+problem, NI is flaky at best IMHO, did you heck with them yet to see if a patch is available?
    Always wait a few weeks before updating, a reinstall is a headache, goodluck!

  • .OAM file in Muse - invalid block type (type==3)

    Every time I try to insert an  Edge .OAM file in muse and try to publish I keep getting an "invalid block type (type==3)" error, over and over... it doesn't matter even if the OAM file is empty, it still displays this problem... could someone please point me if this is a bug or if I'm just doing something wrong?
    Regards

    Hi,
    I have the same issue but it's not an OS issue (i think) : I'm working on SnowLeopard and I have the same error message. All the http://www.adobekb.com/inserting_edge_content.html steps are correctly followed.
    I cannot use the preview mode and cannot preview in a browser as well.
    Any idea ?
    Cheers,
    Pierre

  • "Invalid Block Type" exception message

    I got "Invalid Block Type" exception message in my program. I'm not sure what this is. Could somebody please advice?
    Thanks
    GZIPInputStream gzip_in_stream = null;
    BufferedOutputStream destination_out_stream = new BufferedOutputStream(
       new FileOutputStream(weatherFile), BUF_SIZE);
       byte[] input_buffer = new byte[BUF_SIZE];
    int byteLength = 0;          
    while ( (byteLength = gzip_in_stream.read(input_buffer, 0, BUF_SIZE)) > 0 )
    destination_out_stream.write(input_buffer, 0, byteLength);     
    destination_out_stream.flush(); // Ensure all the data is written to the output.
    destination_out_stream.close();
    gzip_in_stream.close();     

    ZipException, and it only says "Signals that a Zip exception of some sort has occurred."
    I forgot to include this.
    InputStream tempStream = ftpClient.retrieveFileStream(zippedFile);
    gzip_in_stream = new GZIPInputStream(
    new BufferedInputStream(tempStream));

Maybe you are looking for

  • How to Create SSL certificate for HTTPS Connection in SAP PI

    Hi,           I have Proxy to HTTPS scenario. I need to provide my SSL certificate( SAP PI SSL Certificate) to the vendor.           How to generate SAP PI SSL certificate. I have already imported vendor certificate using STRUST T-code.          I am

  • Can't download new bb messenger, have to verify network?

    Im onto my 6th Blackberry! Curve 8520. I downloaded the new blackberry update onto it, but it still has the old blackberry messenger, I went onto blackberry app world and it downloaded a lot and then suddenly said something about blackberry app world

  • BUG - in flash pro CC, 'bold' and 'italic' properties of TextFormat have no effect on rendered text

    Concise problem statement: If you compile with flash pro CC, and use the 'setTextFormat' method of a TextField, the 'bold' and 'italic' properties of the TextFormat argument have no effect on the rendered text. If you compile with flash pro CS6, the

  • Can't sign into to Creative Cloud Desktop application or Ae

    Hi, Please see attached images. Everytime I try to sign into CC ap on my new 27" iMac it brings up a window that says I'm signed out. It will not open or at all. Ae also gives me this prompt and won't open. Please help I'm in the middle of a time sen

  • Wireless Cisco System and AD users

    I want to add guest wi-fi account, users which in AD (authentification Microsoft IAS), but not create special lobby user in WCS. I use http://www.cisco.com/en/US/docs/wireless/wcs/5.1/configuration/guide/wcsadmin.html#wp1063447 for example, but when