Parameter is incorrect compile problem

Hi there,
I am really tearing out my hair on this one.  I have a flex project using Flash Builder 4.5.1 that uses BlazeDS remoting services.
I run my Flash Builder inside a Oracle VirtualBox VM (Windows XP) since I am an Ubuntu user.  I have been happily compiling and deploying for a couple of months without any hassles.
Recently I got a new laptop.  I exported my VM, and imported it on the new laptop.  Suddenly my project upon compilation gives me an error: "The parameter is incorrect" location "Unknown".
If I create a simple project from scratch it compiles fine without any problem.  I can then navigate to my BlazeDS service, add it - but as soon as I make a reference to that service in my component - the component compiles fine but on project level it gives the above error.
I have been searching everywhere for a more verbose version of the error - but nothing.
Help please!
Rgds,
Willem.

So for those interested, I solved this problem by creating another blank Windows VM, re-installing Flash Builder and importing my project again.
It seems that Adobe Flash Builder has built in something obscure that does not like you migrating a VM to another host.  I did un-register and re-register my product between the VM's by the way - that also did not work.

Similar Messages

  • Parameter is incorrect compile problem in virtual box

    Hi, since Linux support for flash builder (flex builder at the time) was dropped longer ago, we Linux users are forced to use virtualbox to run flash builder. Latest virtualbox 4.1 has an issue to build flex projects.
    I spent hours yestarday to try to solve this and finally only working solution I found was to downgrade back virtualbox to version 4.0
    Stuff I tried after upgrading to VB4.1
    1. building existing flex project in existing installation of flash builder 4.5
    2. using 4.5.0 sdk and 4.5.1 SDK to compile.
    3. trying to set lower flash target, and changing other deployment params
    4. getting rid or any aditional compiler parameters
    5. setting up same project again using same fodler with files
    6. setting up project from scratch with project source files got fresh from repo
    7. trying with new flash builder installation 4.6 trial with 4.6 flex sdk
    none of these helped and all resulted in compilation error
    Parameter is incorrect, flex problem, location "Unknown".
    As this thread explaines http://forums.adobe.com/thread/982266
    there may be other solution which is to setup new windows virtual machine and install flex there.
    but for me this is just another bad solution as mine so far (not upgrading VB)
    After downgrading back to VB 4.0 all even existing projects in both 4.5 and 4.6 built with no problems.
    Just to complete I'm using Windows 7 as OS in VM.
    If anyone finds acceptable solution please share..
    thanks.

    So for those interested, I solved this problem by creating another blank Windows VM, re-installing Flash Builder and importing my project again.
    It seems that Adobe Flash Builder has built in something obscure that does not like you migrating a VM to another host.  I did un-register and re-register my product between the VM's by the way - that also did not work.

  • Using MSXML2.ServerXMLHttp in MS SQL 2012 - receiving error "The Parameter is incorrect".

    I have a procedure used to make http post requests to a REST web service external to my SQL server, using MSXML2.ServerXMLHttp via POST request. This procedure works without issue in SQL 2008 r2, but upon upgrade to 2012, begins to fail with the message
    : "The Parameter is incorrect."
    It is failing when I attempt to exec the 'send' method on line 137. I cannot find any documentation about how the MSXML2.ServerXMLHttp object needs to be treated differently in 2012. I found a similar question here: http://social.technet.microsoft.com/Forums/sqlserver/en-US/a6de1eea-5fe9-4087-809b-524c98f20a4d/msxml6dll-methodsend-dont-work-in-windows-server-2012-and-sql-2008r2?forum=sqlxml 
    But it isn't resovled - just indications to file a bug report - and one solution that says to just copy the DLL from 2008 over to 2012 to fix the issue. Is that really the right solution here or does someone have information on how to do this properly with
    2012?
    Here is my procedure:
    CREATE procedure [dbo].[HTTP_REQUEST](@response varchar(4000) out, 
    @method varchar(64),
    @p1name varchar(256) = null,
    @p1value varchar(max) = null,
    @p2name varchar(256) = null,
    @p2value varchar(max) = null,
    @p3name varchar(256) = null,
    @p3value varchar(max) = null,
    @p4name varchar(256) = null,
    @p4value varchar(max) = null,
    @p5name varchar(256) = null,
    @p5value varchar(max) = null,
    @p6name varchar(256) = null,
    @p6value varchar(max) = null,
    @parent_table varchar(30) = null
    As
    Declare
    @obj int
    ,@hr int
    ,@status int
    ,@msg varchar(255)
    ,@apiKey varchar (64)
    ,@params varchar (max)
    SET @apiKey = (Select a.default_value from T_DEFAULTS a WHERE a.parent_table = @parent_table AND a.field_name = 'm2apiKey')
    SET @params = ''
    If @apiKey is null
      Begin
    select @msg = 'Invalid mail2 APIKey'
    RAISERROR(@msg, 11, 2) WITH SETERROR
    return -101
      End
    If @method is null
      Begin
    select @msg = 'No valid mail2 API method provided'
    RAISERROR(@msg, 11, 2) WITH SETERROR
    return -101
      End
    exec @hr = sp_OACreate 'MSXML2.ServerXMLHttp', @obj OUT
    if @hr <> 0 begin Raiserror('sp_OACreate MSXML2.ServerXMLHttp.3.0
    failed', 16,1) return end
    exec @hr = sp_OAMethod @obj, 'open', NULL, 'POST', 'http://api.someapiurl.net/REST/', true
    if @hr <>0 begin set @msg = 'sp_OAMethod Open failed' goto eh end
    exec @hr = sp_OAMethod @obj, 'setRequestHeader', NULL, 'Content-Type',
    'application/x-www-form-urlencoded'
    if @hr <>0 begin set @msg = 'sp_OAMethod setRequestHeader failed' goto
    eh end
    --Set Timeouts
    exec @hr = sp_OAMethod @obj, 'setTimeouts',NULL,5000,5000,10000,10000
    if @hr <>0 begin set @msg = 'sp_OAMethod setTimeouts failed' goto
    eh end
    --Add Method
    SET @params = '&method='+@method
    --Add API key
    SET @params = @params + '&key='+@apiKey
    --Add p1 if present
    IF @p1name IS NOT NULL
    BEGIN
    SET @params = @params + '&' + @p1name + '=' + @p1value
    END
    --Add p2
    IF @p2name IS NOT NULL
    BEGIN
    SET @params = @params + '&' + @p2name + '=' + @p2value
    END
    --Add p3
    IF @p3name IS NOT NULL
    BEGIN
    SET @params = @params + '&' + @p3name + '=' + @p3value
    END
    --Add p4
    IF @p4name IS NOT NULL
    BEGIN
    SET @params = @params + '&' + @p4name + '=' + @p4value
    END
    --Add p5
    IF @p5name IS NOT NULL
    BEGIN
    SET @params = @params + '&' + @p5name + '=' + @p5value
    END
    --Add p6
    IF @p6name IS NOT NULL
    BEGIN
    SET @params = @params + '&' + @p6name + '=' + @p6value
    END
    --SELECT @params
    --Send the request
    exec @hr = sp_OAMethod @obj, send, NULL, @params
    if @hr <>0 begin set @msg = 'sp_OAMethod Send failed' goto eh end
    --Get the status
    exec @hr = sp_OAGetProperty @obj, 'status', @status OUT
    if @hr <>0 begin set @msg = 'sp_OAGetProperty read status failed on get status' goto
    eh
    end
    if @status <> 200 begin set @msg = 'sp_OAMethod http status ' +
    str(@status) goto eh end
    if @status = 200 begin print 'sp_OAMethod http status is 200:Successful ' +
    str(@status) + @params end
    exec @hr = sp_OAGetProperty @obj, 'responseText', @response OUT
    if @hr <>0 begin set @msg = 'sp_OAGetProperty read response failed on get response text error code' + convert(varchar,@hr) goto
    eh end
    exec @hr = sp_OADestroy @obj
    return
    eh:
    exec @hr = sp_OADestroy @obj
    Raiserror(@msg, 16, 1)
    return
    Many thanks for the input - 
    Chris

    How can I fix the problem? changing the OS? I just bought the new server. I do?
    thanks
    Miky
    Rambaldi

  • Windows Backup no longer works. Trying to change settings results in "The parameter is incorrect. (0x80080057)"

    I tried to backup my computer and it didn't make any progress for many hours. After a few hours I gave up and closed the backup panel. I restarted the computer and now the panel comes blank with the external backup drive plugged in.  If I double click
    the backup folder on the external drive and click restore I keep getting the error dialogue, "The parameter is incorrect. (0x80080057)".
    If I don't plug in the drive it and click Options > Change backup settings I get the same error dialogue. Note, the backup control panel displays and says the drive is not plugged in and shows the last time I attempted to backup. It says that backup was
    complete but some files were skipped. The error code is 0x8100002F.
    I tried to solve the problem using: http://support.microsoft.com/kb/982736/en-us It did not help.
    I have looked into some of the logs and found this:
    Description
    Windows Backup failure
    Problem signature
    Problem Event Name: WindowsBackupFailure
    Operation: Backup
    AppVer: 6.1.7601
    HRESULT: 0x81000015
    TargetType: 11
    OS Version: 6.1.7601.2.1.0.256.48
    Locale ID: 1033
    Files that help describe the problem
    WindowsBackup.1.etl
    This is the second to last time I backed up. 
    Someone else had this problem: http://www.techsupportforum.com/forums/f299/solved-windows-7-backup-0x80070057-error-546542.html
    They had a restore image and could go back to an earlier time. I do not have this option.
    What can I do?

    Hi,
    I doubt this was External harddrive problem. Please check Event log about VSS error log. If there is any error message with VSS.
    If so, please refer to the link below for more details about VSS error.
    http://technet.microsoft.com/en-us/library/ee692290(v=ws.10).aspx
    In addition, please also try to backup your system to other location for test if it had same problem. If not, it should be external drive problem.
    Roger Lu
    TechNet Community Support

  • Error Message: "The parameter is incorrect" when trying to modify SSLs

    Like I wrote in my subject line, RoboHelp pop-ups the error message “The Parameter is incorrect” when I try to modify any SSL.
    What happens next, is that the “Print Document General” window opens, but does not allow me to select anything (the fields are blank).
    If I close the window and open it again, it seems to work until I have to select the styles from our Microsoft Word Template.
    Then the error message “The parameter is incorrect” appears again, and RoboHelp does not allow me to select anything but a stylesheet
    (which is not what I need).
    This is very strange, because not only  until recently I was able to build Word documents and PDFs, but also my colleagues are able to
    produce them out of my source.
    Even the old projects, that I was able to build, now I cannot.
    I do not have any problem in generating CHMs.
    Until now I have tried everything I found in the forum:
    I deleted the PSS file (also following the advice in your snippet number 14 from 10 – RoboHelp HTML –Features and Use).
    http://forums.adobe.com/thread/120022
    I reinstalled RoboHelp and the Adobe Technical Communication Suite (I also used CCleaner to delete the registries).
    http://forums.adobe.com/thread/598335
    I gave Administrator rights to all users in my computer (what seemed to work for some SSLs, but not for all)
    http://forums.adobe.com/thread/870339
    I am also looking at all programs that I installed since the last time I was able to build .docs in case there is a conflict, but I do not find anything!
    My computer has Windows 7 installed and I use the Adobe Technical Communication Suite 3.5, with RoboHelp 9.
    My Microsoft Office is 2010.
    Can somebody please help me? Did someone have the same problem?
    Thanks in advance.

    Hi there
    I know you said you reinstalled, but did you reinstall before or after you gave administrator rights to all users on your computer? And how many users *ARE* on your computer?
    Often you need administrator rights to properly install things.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • One section of one web site gives "The parameter is incorrect" only after I log into the site and only a blank screen?

    "The parameter is incorrect" is the error msg. on a blank screen when I log in to a particular web site.
    Of many tabs at the site only one gives this error.
    Without logging in I can navigate as I desire.
    I access this site on a daily basis. Using Safari is no problem at all.
    FF 16.0.2 on a mac 10.6.8 this also occurred before upgrade to 16.0.2
    I have not applied any bells or whistles to FF . . to my knowledge.
    Bob

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"

  • What is the Cause of: Parameter is Incorrect error

    Using XP, RH6, RoboSource Control
    I had posted previously inquiring about the "Parameter is
    Incorrect" error occurring when selecting the Printed Documentation
    option on the Primary Layout list. Clicking OK did not clear the
    error, and had to terminate RH in Task Manager. After reopening the
    project the error still occurred. The resolution posted to that was
    deleting the PSS file from my PC (the file was/is not on the
    RoboSource machine). Which did clear the problem.
    The problem came back after about a month. I'm just trying to
    determine if there is a know reason for this error? Is it a
    workflow issue, or a bug, or ??
    Thanks for any help that can be offered.
    Joe

    The problem I ran into was the following line in the PSS
    file:
    Language=C:\<pathname>\RoboHHRE.lng
    If the pathname didn't match up to reality on my PC, then I'd
    get errors. The reason for the pathname not matching up was that
    the project had been moved from one location to another. There are
    other paths listed in that file, but RH seems to handle those a
    little better.
    Take a look using Notepad and see if the RoboHHRE.lng file is
    indeed located where the PSS file says it is. If not, then go ahead
    and delete the PSS file again. If it is, then you have a different
    issue.
    I suppose I'd classify this as a bug, but at least there's a
    workaround.
    G

  • Wbadmin System State Backup "Parameter is incorrect"

    Hello,
    We have two physical Windows Server 2008 R2 x64 Standard Domain Controllers and the system state backup on both fails with the same error.
    We issue the command:
    wbadmin start systemstatebackup -backuptarget:c:
    (NOTE: We did the REG fix to allow backups to the system volume)
    and we get  this as the output:
    C:\Windows\system32>wbadmin start systemstatebackup -backuptarget:c:
    wbadmin 1.0 - Backup command-line tool
    (C) Copyright 2004 Microsoft Corp.
    Starting to back up the system state [28/02/2010 21:26]...
    Retrieving volume information...
    This will back up the system state from volume(s) System(C:) to c:.
    Do you want to start the backup operation?
    [Y] Yes [N] No y
    Creating a shadow copy of the volumes specified for backup...
    Creating a shadow copy of the volumes specified for backup...
    Please wait while system state files to back up are identified.
    This might take several minutes...
    Summary of the backup operation:
    The backup of the system state failed [28/02/2010 21:27].
    Log of files successfully backed up:
    C:\Windows\Logs\WindowsServerBackup\Backup-28-02-2010_21-26-31.log
    Log of files for which backup failed:
    C:\Windows\Logs\WindowsServerBackup\Backup_Error-28-02-2010_21-26-31.log
    The operation ended before completion.
    The parameter is incorrect.
    C:\Windows\system32>
    This happens on both servers and the two backup log files mentioned in the output are both empty.
    There's no other information that I can find so I don't know what the "parameter" is or why it is incorrect.
    Has anyne come across this problem and know what the error is referring to?
    Thanks
    Sunil

    I received a PowerShell script from Suhas and ran it on the affected server, the script output gave:
    1.
         Service Name    : RMAGENT
         Service Caption : RMAGENT
         Registry key    : HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\RMAGENT\ImagePath
         Value           : \\PRIMARY\admin$\Microsoft DPM SRT\RFCAgent.exe
         Reason          : The service path contains a double slash. Network paths or paths containing a double slash are not supported.
    2.
         Service Name    : RMAGENT
         Service Caption : RMAGENT
         Registry key    : HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\RMAGENT\ImagePath
         Value           : \\PRIMARY\admin$\Microsoft DPM SRT\RFCAgent.exe
         Reason          : The service path does not have a proper path format. Only paths beginning with [<Drive>]:\ format are supported.
    The "RMAgent" is from Microsoft Data Protection Manager 2007 System Recovery Tool (DPM-SRT) and I think is the remote agent that DPM-SRT uses to backup the remote system.
    The DPM-SRT RMAgent isn't supported and doesn't work on Windows Server 2008 R2 systems and I am not sure how it ended up installed on the server. Removing this service should solve the problem and allow the System State Backups to work. The DPM-SRT agent wasn't listed in the "Programs and Features" and so couldn't be installed from there (if it was I would have spotted this a long time ago and probably solved the problem). Instead, I used the information at:
    http://www.howtogeek.com/howto/windows-vista/how-to-delete-a-windows-service-in-vista-or-xp/
    To delete the RMAgent service: sc delete "RMAgent" in an Administrator CMD prompt. This removed the registry entries shown in the script output above. When this was done, I ran the script again just to be sure there was nothing else and indeed the RMAgent entries had gone and there were no other items that needed attention.
    Finally, I tried "webadmin start systemstatebackup -backuptarget:C:" again in an administrator CMD prompt and it completed successfully.
    I would like to thank Abhinav Mathur and Suhas Rao in particular for their very helpful script.
    Sunil

  • Cannot copy IGMT: the parameter is incorrect

    ok so heres my problem
    i have had to recently wipe my whole laptop due to a hefty virus and in doing this i lost all my itunes library but once the restoration of my laptop was complete i proceeded to install i-tunes and use the method where you:
    open itunes preferences
    go into my computer and copy the music to a destination and then import the folder into itunes to have my collection back
    but for some reason half way through copying and pasting it get the error message "cannot copy IGMT: the parameter is incorrect"
    and only copies half my collection does anyone know the solution to this problem or a way around it?
    much appreciated and thnx in adavnce to any help!

    Sounds like that IGMT file is corrupt.
    Try copying things over in chunks, and skip that file.
    Here's the answer from a different forum:
    http://forums.afterdawn.com/thread_view.cfm/344692

  • Contribute 6.5 the parameter is incorrect error

    I have three clients who all have the same problem on the same day on different site. When they try to edit a page and add a link they get an error message 'the parameter is incorrect' - if they continue to add link from the pop up box Contribute crashes. Any ideas?

    Not sure if you've tried, but you might get better/faster answers in the Contribute Forum: Contribute General Discussion

  • HELP: Flash Error Parameter is incorrect.

    Hi. I really need help on this...I am working as a teacher in Singapore and I am currently doing a project for our school. I am using the Adobe CS4 Design Premium. I am using Adobe Flash CS4 for the project I am doing.
    Adobe Flash CS4 crash often and after the latest crash and when I open up my project i got an error which is "parameter is incorrect" and when I press ctrl+enter, it didn't pulish the file and I have noticed that the swf file that was created before is gone after I press CTRL+enter.
    I was wondering what went wrong and if this problem can still be solved. I really neede help right now. I have tried to read articles on the adobe form but found no such case and I have also tried looking using google but no concrete answer.
    I hope there would be someone to helpl me out on this. Thanks in advance...

    I had the same problem in Flash CS6 and the problem was corrupted file inside folder with publication .FLA file.
    In my case it was .apk file which I've transfered from tablet to PC, and apk file was without Date modification info (obviously corrupted).
    When I deleted corrupted file, no error was thrown anymore.
    Also, when I moved .FLA file away from the path of corrupted file (folder and subfolder structure) it worked just fine.
    Once before I've found out that AIR application (I believe only when you're testing it) indexes root folder and all subfolders at startup. So, when it couldn't read corrupted file in the root folder, the error was thown.

  • Application Error - The parameter is incorrect

    During a call on skype, as I was playing a video game, my computer encountered a "blue screen of death". I figured there was something wrong with my hard drive but when my computer rebooted, it seemed fine. However, after my computer attempted to start up applications many of them crashed and restarted with no problem. Except skype, I encountered an application error saying "The parameter is incorrect". I then tried uninstalling and installing, but as I was trying to install Skype it gave me a more specific error "Exception EOutOfResources in module Skype.exe at 0016DED2. The parameter is incorrect". Please help! I cannot install Skype at all.
    Attachments:
    application error.PNG ‏29 KB

    Try first to reset all Skype settings.
    Quit Skype or use Windows Task Manager to kill any Skype.exe process. Go to Windows Start and in the Search/Run box type %appdata% and then press Enter or click the OK button. The Windows File Explorer will pop up. There locate a folder named “Skype”. Rename this folder to something different, e.g. Skype_old.
    Next go to Windows Start and in the Search/Run box type %temp%\skype and then press Enter or click the OK button. Delete the DbTemp folder.
    Restart Skype.
    N.B. If needed, you will still be able to re-establish your call and chat history. All data is still saved in the Skype_old folder.

  • Message 'The parameter is incorrect'

    I have an Officejet 6500A Plus all-in-one printer. I'm trying to get a reading on ink levels and I keep getting the message 'the parameter is incorrect.' I have rebooted the computer and printer and tried various other things and still can't solve the problem. Please help
    This question was solved.
    View Solution.

    So the next steps would be to reinstall the software:
    If the printer connected via USb make sure to unplug the cable first.
    Click Start > All Program > HP > The printer model and follow the link to uninstall the software.
    Once the uninstall completes, reboot your PC and install the software again.
    You may find the latest software available for sownload at the link below:
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloadIndex?softwareitem=mp-86366-3&cc=us&dlc=en&lc=en&...
    Regards,
    Shlomi
    Say thanks by clicking the Kudos thumb up in the post.
    If my post resolve your problem please mark it as an Accepted Solution

  • The parameter is incorrect Error when browsing by name

    I have a domain setup, When i try to browse my "servername - share" i recieve the following error
    "servername - share" is not accessible. you might not have permission to use this network resource. Contact the administrator of this server to find out if you have access permissions.
    the parameter is incorrect.
    if i browse "ip address - share" i get in no problem
    also if i browse by fully qualified domain name the the directories are empty

    Hi,
    Please try to use UNC name to access the folder to check the result.
    Also, try to use another account for test or using another client to access the share folder.
    In addition, here is a thread for your reference:
    Parameter incorrect error after browsing network drives. 
    http://social.technet.microsoft.com/forums/en-us/w7itpronetworking/thread/192F6F59-D4AF-4FD1-A411-74A3A4E9A022
    Hope this helps
    Vincent Wang
    TechNet Community Support

  • W7: Error creating Repair disk or image "...the parameter is incorrect (0x80070057)

    Initial cause of problem was trying to duplicate bootable SD card and it wrote it to C Drive system partition. Finally stumbled around and got system volume rebuilt and got it running again but Recovery partition got deleted in the process. I used W7 Recover/repair since Toshiba options seemed to be to overwrite everything (backup was month old, so wanted to avoid restoring since system files and data were still "there". I can use Toshiba program to make Repair, Recovery and Image copies. However, I cannot use W7 Backup program to make a Repair disk or Image backup. I get the error message: "System Repair disc could not be created  The parameter is incorrect (0x80070057)"
    I suspose the next thing to try would be to run System file checker  since W7 sees a problem that the Toshiba utilities do not detect. Is there any "risk" of running the system file checker (sfc.exe), which also changes permissions on all system files.
    I would like to correct any lurking system file problem, but also don't want to take a step backward trying to correct it. I have a W7 Windows disk.
    Would appreciate suggestion.... leave alone and trust Toshiba image/recovery DVD I've made, try to correct it or leave well enough alone and hope it doesn't bite me later when I need to do a recovery.  Thanks....  

    Hi! I just got to add my 2 cents! Very nice replies and good information. Nice work Jerry and eagle!
    Dokie!
    Just one small problem the link has a down load manager. I'll let eagle explain that?? My advise is not to use a down load manager period! If you scroll down to the bottomof the page, you will be fine.
    I Love my Satellite L775D-S7222 Laptop. Some days you're the windshield, Some days you're the bug. The Computer world is crazy. If you have answers to computer problems, pass them forward.
    Attachments:
    Capture48.JPG ‏297 KB
    Capture49.JPG ‏146 KB

Maybe you are looking for

  • Having problems with Startup Disk Installing Panther

    I'm having problems installing Panther, I currently have a 9.2 OS. I get a message that the startup disk could not select the new os as the start up disk. Has anyone had this problem before? I've done all my updates, firmware included. Any suggestion

  • Can I write in greek on pages?

    Can I write Greek on pages? Many people say to use symbols but I don't know how to.

  • Client drops - Tuning EAP timers?

    I have had some clients complaining (laptop users) about being dropped from the WiFi and this appears to correlate with the events in the WLC log for DOT1X-4-MAX_EAPOL_KEY_RETRANS for those clients. Drops are more frequent when the network and neighb

  • NAC DHCP server subnet-list issue

    Hello everyone, I currently setup the CAS as a layer 3 IB deployment, and use the CAS as the DHCP server for our remote subnets. My issuse is when I configure the IP address pool, I have to check option "Retrict range to REALY IP", and can only put o

  • Updating JVM (using IIS and Coldfusion)

    I recently created my first java class and compiled it using the new java SDK. I Registered my new CFX Tag and now I get this error "500 HelloColdFusion (Unsupported major.minor version 50.0)" when trying to access it in my .cfm test page. I read tha