Login Management screen System.ArgumentNullException: Key cannot be null

Hi,
We are following the below technical note to configure BAM:
Tutorial: Oracle BAM Plans to collect data from JMS bus
(Tutorial_2_BAM_Administrator.doc)
Under the section "Creating a BAM user", when trying to create a new user, we noticed that there were two pre-existing entries for the user "aocdom1\aocrac" - one in lowercase and one in uppercase:
aocdom1\aocrac
AOCDOM1\AOCRAC
We did not find the "Delete" option in the Login Management screen. So we clicked on the edit option and deleted the username and full name for the user "aocrac" from the fields and saved the information. Now we are getting the below error whenever we enter into the Login Management screen:
System.ArgumentNullException: Key cannot be null.
Parameter name: key
at System.Collections.Hashtable.ContainsKey(Object key)
at Oracle.BAM.Administrator.ManageLogins.IsUnknownUser(SystemObject soUser, Hashtable& rhtUnknowns)
at Oracle.BAM.Administrator.ManageLogins
The screen is accepting creation of new users though.
Please let us know how to resolve above issue.
Regards,
Balu

Hi,
We are following the below technical note to configure BAM:
Tutorial: Oracle BAM Plans to collect data from JMS bus
(Tutorial_2_BAM_Administrator.doc)
Under the section "Creating a BAM user", when trying to create a new user, we noticed that there were two pre-existing entries for the user "aocdom1\aocrac" - one in lowercase and one in uppercase:
aocdom1\aocrac
AOCDOM1\AOCRAC
We did not find the "Delete" option in the Login Management screen. So we clicked on the edit option and deleted the username and full name for the user "aocrac" from the fields and saved the information. Now we are getting the below error whenever we enter into the Login Management screen:
System.ArgumentNullException: Key cannot be null.
Parameter name: key
at System.Collections.Hashtable.ContainsKey(Object key)
at Oracle.BAM.Administrator.ManageLogins.IsUnknownUser(SystemObject soUser, Hashtable& rhtUnknowns)
at Oracle.BAM.Administrator.ManageLogins
The screen is accepting creation of new users though.
Please let us know how to resolve above issue.
Regards,
Balu

Similar Messages

  • System.ArgumentNullException: Value cannot be null.

    We have an application that utilizes the WCF-OracleDB adapter on a send port connecting to an Oracle database. The application sends insert statements to a stored procedure that inserts the data into one of the tables. The table has a column for City Fee
    Amount that allows NULL values. The schema that we populate the insert statement into contains a corresponding node called "P_CITY_FEE_AMT", that node is also set to allow null values. WE are running into an intermittent issue in which an error message
    is returned to BizTalk stating the value for field P_CITY_FEE_AMT cannot be NULL. We are not seeing any error messages in the Oracle database so it appears the error is being generated by the adapter. Any ideas as to why it would be generating an error like
    this when the schema and the target table both allow NULL values for this field?
    Error Message:
    A message sent to adapter "WCF-OracleDB" on send port "SendSproc" with URI "oracledb://test" is suspended.
    Error details: Microsoft.ServiceModel.Channels.Common.XmlReaderParsingException: The value for field "P_CITY_FEE_AMT" is invalid. ---> System.ArgumentNullException: Value cannot be null.
    Parameter name: numStr
    at Oracle.DataAccess.Types.OracleDecimal..ctor(String numStr, String format)
    at Microsoft.Adapters.OracleCommon.OracleCommonMetadataUtils.CreateParameterValue(OracleDbType oracleType, Object xmlValue, OracleConnection dbConn, Boolean ignoreLOB, String fieldName)
    --- End of inner exception stack trace ---
    Server stack trace:
    at System.Runtime.AsyncResult.End[TAsyncResult](IAsyncResult result)
    at System.ServiceModel.Channels.ServiceChannel.SendAsyncResult.End(SendAsyncResult result)
    at System.ServiceModel.Channels.ServiceChannel.EndCall(String action, Object[] outs, IAsyncResult result)
    at System.ServiceModel.Channels.ServiceChannel.EndRequest(IAsyncResult result)
    Exception rethrown at [0]:
    at System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg)
    at System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type)
    at System.ServiceModel.Channels.IRequestChannel.EndRequest(IAsyncResult result)
    at Microsoft.BizTalk.Adapter.Wcf.Runtime.WcfClient`2.RequestCallback(IAsyncResult result)
    MessageId: {A4503B09-51A0-48B7-915C-753100D250A7}
    InstanceID: {D8DC8808-41B9-47CC-A790-ACA0963E5BFE
    Insert Message:
    <ns0:TSA103 xmlns:ns0="http://Microsoft.LobServices.OracleDB/2007/03/BIZTALK/Procedure">
    <ns0:P_CITY_FEE_AMT/>
    <ns0:P_NO_LOCATIONS_NBR>1</ns0:P_NO_LOCATIONS_NBR>
    <ns0:P_STATE_FEE_AMT>12.00</ns0:P_STATE_FEE_AMT>
    <ns0:P_DOC_LOC_NBR_REGION>1234567890</ns0:P_DOC_LOC_NBR_REGION>
    <ns0:P_DLN_OCCUR_ID_REGION>0</ns0:P_DLN_OCCUR_ID_REGION>
    <ns0:P_REGION_CD>MAR</ns0:P_REGION_CD>
    <ns0:P_UPDATE_IF_EXISTS_INDC>N</ns0:P_UPDATE_IF_EXISTS_INDC>
    </ns0:TSA103>
    Thanks, Bruce

    Hi Bruce,
    Have you configured SOAP Action Header property at WCF-OracleDB send port.
    Refer the post->
    https://social.msdn.microsoft.com/Forums/en-US/238fdee1-564e-45cc-be96-6215af682b1e/exception-on-outbound-map-with-wcforacledb-adapter-at-send-port-in-biztalk-2010?forum=biztalkr2adapters
    For the alternate solution you can also refer the workaround mentioned here ->
    Error while inserting NULL value to Oracle database table using BizTalk
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • Exception: Error decoding message (Key cannot be null)

    Hi guys,
         Coherence 3.3.1/389
         .Net API 3.3.1.2
         I've wrote small invocation task, which collects the info about cluster members, stores it to HashMap and return it as result. This is the code:
         NamedCache cache = CacheFactory.getCache(sCacheName);
         CacheService service = cache.getCacheService();
         Cluster cluster = service.getCluster();
         HashMap res = new HashMap();
         Set members = cluster.getMemberSet();
         Iterator iter = members.iterator();
         while(iter.hasNext())
         Member member = (Member)iter.next();
         res.put((Object)member.getProcessName(), new Integer(member.getPort()));
         As you can see if member.getProcessName() returns null, then null is placed to HashMap.
         When the result was returned to the client, I've got this exception:
         2007-10-04 09:55:45.849 <Error> (thread=Tangosol.Net.Messaging.Impl.ConnectionManager+ConnectionManagerDaemon): Error decoding message
         System.ArgumentNullException: Key cannot be null.
         Parameter name: key
         at System.Collections.Hashtable.Insert(Object key, Object nvalue, Boolean add)
         at System.Collections.Hashtable.set_Item(Object key, Object value)
         at Tangosol.IO.Pof.PofStreamReader.ReadAsObject(Int32 typeId) in c:\dev\release.net\coherence-net-v3.3\src\Coherence\IO\Pof\PofStreamReader.cs:line 3446
         at Tangosol.IO.Pof.PofStreamReader.ReadObject(Int32 index) in c:\dev\release.net\coherence-net-v3.3\src\Coherence\IO\Pof\PofStreamReader.cs:line 2284
         at Tangosol.Net.Messaging.Impl.Response.ReadExternal(IPofReader reader) in c:\dev\release.net\coherence-net-v3.3\src\Coherence\Net\Messaging\Impl\Response.cs:line 117
         at Tangosol.Net.Messaging.Impl.Codec.Decode(IChannel channel, DataReader reader) in c:\dev\release.net\coherence-net-v3.3\src\Coherence\Net\Messaging\Impl\Codec.cs:line 118
         at Tangosol.Net.Messaging.Impl.Connection.DecodeMessage(DataReader reader) in c:\dev\release.net\coherence-net-v3.3\src\Coherence\Net\Messaging\Impl\Connection.cs:line 874
         I understood why it was happened, but I did not understood why it was masked and my client application was frozen until request time accured (180s).
         Why did you mask it?
         Regards,
         Dmitry.

    Hi
    Thanks for answered.
    I tried to import just 6 lines but the same error.
    Did you know, what could be?
    I am pasting the log.
    TOTAL STEPS  2
    1. Convert Data:         completed  in 1 sec.
    2. Load and Process:     Failed  in 1 sec.
    3. Import:               completed  in 1 sec.
    [Selection]
    FILE=\GrupoPit\FRATECO\DataManager\DataFiles
    41010100001.csv
    TRANSFORMATION=\GrupoPit\FRATECO\DataManager\TransformationFiles
    Frateco.xls
    CLEARDATA= Yes
    RUNLOGIC= Yes
    CHECKLCK= No
    [Messages]
    Convert Data
    Success
    Record Count : 6
    Accept Count : 6
    Reject Count : 0
    Skip Count   : 0
    Key cannot be null.
    Parameter name: key

  • SOAP Error : Server was unable to process request.   Key cannot be null.#

    HI, When I process SOAP call from ABAP using class csoaptransporthttp->request_response, I am getting following error message:
    "Server was unable to process request.   > Key cannot be null.##Parameter name: key"
    Is anybody as the clue to resolve this error ?

    Hi,
    if you're doing a SOAP client - did you compare with this example:
    http://help.sap.com/saphelp_47x200/helpdata/en/2d/64d053e74911d6b2e400508b6b8a93/content.htm
    Regards,
    Michal Krawczyk

  • Import error - key cannot be null

    We upgraded to v7.5 (MS) back in December with no major issues, and everything has been functioning normally. But, a few days ago I tried to run an import package (we get our actual data into the program by creating a file from Oracle then importing it). I used our usual Transformation file, and was about to validate the data file. But, when I went to import the file it failed and said "Key cannot be null. Parameter name: key". Can somebody tell me what is causing this and how to fix it?

    Hi Shawn,
    If you are using CSV file for data upload, Try this and let me know if it works:
    1. Go to the last record in your Row and Select the entire Row next to your last record.
    2. Press "Shift", "Control" and "Down Arrow" key and delete the entire selection. It will not have any data anyways.
    3. Go to the last record in your Column and select the entire Column next to your last record.
    4. Press "Shift", "Control" and "Right Arrow" key and delete the entire selection.
    5. Save the file and try uploading it again.
    regards,
    Amit

  • Key cannot be null error

    Hi
    When loading data i'm getting the error
    Key cannot be null.
    Parameter name: key
    What does this error mean? I have done this with a large load, then started testing with a small load. But Im still getting the same  error.
    Here is the full log
    TOTAL STEPS  2
    1. Convert Data:         completed  in 0 sec.
    2. LOAD AND PROCESS:     Failed  in 0 sec.
    3. Import:               completed  in 0 sec.
    [Selection]
    FILE=\BPC\FINANCE\DataManager\DataFiles
    BPC_GL_DATA.TXT
    TRANSFORMATION=\BPC\FINANCE\DataManager\TransformationFiles
    BPC_Transformation.xls
    CLEARDATA= Yes
    RUNLOGIC= No
    CHECKLCK= No
    [Messages]
    Convert Data
    Success
    Record Count : 3
    Accept Count : 3
    Reject Count : 0
    Skip Count   : 0
    Key cannot be null.
    Parameter name: key
    I have looked at a similar thread and tried this. Was not helpfull for me.
    BPC excel error
    any assistance will be appreciated

    Hi
    I have looked more into this.
    If I use the import package with the option "Merge data values" it works fine.
    I can also use the clear data package fine with no problem.
    I only get this error when i say "Replace & Clear Data Values" when using the import package.
    This means my data is ok, my transformation is also ok.
    I'm using BPC 7.5, has anyone had a similar problem?? I also tried using BPC 7 import package, still get the same error.
    Any ideas is appreciated.

  • Share your login manager screens/configs

    I haven't seen a login manager sharing thread yet on here.
    My contribution could be skipped as I have not done any customization yet, but posting a thread without picture at all would just feel wrong..
    Have my SLiM:
    Last edited by daedalus.mythos (2014-12-10 14:20:40)

    There is my SLiM:
    Last edited by gra2f (2014-12-12 22:05:07)

  • Hi all . I can't login to BIOS.system disable key !

    Hi all . I can't login to BIOS. for that I need to select the other card onboard video card is damaged Disable code 76671979. Please help me
    This question was solved.
    View Solution.

    Hi,
    Enter:     69759379
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • "WITH"  causes key cannot be null

    Hi
    Is the problem using "WITH" in sql statement with bind variables solved.i am using ODP.NET 9.2.0.4.01 version.Are there any patches to solve the above problem.
    regards
    srinivas

    Hi
    I have looked more into this.
    If I use the import package with the option "Merge data values" it works fine.
    I can also use the clear data package fine with no problem.
    I only get this error when i say "Replace & Clear Data Values" when using the import package.
    This means my data is ok, my transformation is also ok.
    I'm using BPC 7.5, has anyone had a similar problem?? I also tried using BPC 7 import package, still get the same error.
    Any ideas is appreciated.

  • Error APPX0002: Task 'ValidateAppxPackage' failed. Value cannot be null.

    Hi, I have been working on Windows Phone apps, and have created several packages and submitted them to the store. Starting today, for no apparent reason, I can't create packages for the store any more. When creating the Store package, using Visual Studio
    2013 Ultimate Update 4, build fails with this error:
    Error APPX0002: Task 'ValidateAppxPackage' failed. Value cannot be null.
    I have not been able to fix this. I've tried:
    - uninstalling and reinstalling Visual Studio
    - rebooting
    - deleting the Package.StoreAssociation.xml in the file (but it cannot be recreated).
    I am able to compile and run the project, but it fails when creating the store package to submit to dev center.
    Any suggestions?
    Here is the detailed compile report:
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error APPX0002: Task 'ValidateAppxPackage' failed. Value cannot be null.
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error APPX0002: Parameter name: source
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error APPX0002: 
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error MSB4018: The "ValidateAppxPackage" task failed unexpectedly.
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error MSB4018: System.ArgumentNullException: Value cannot be null.
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error MSB4018: Parameter name: source
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error MSB4018:    at System.Linq.Enumerable.ToDictionary[TSource,TKey,TElement](IEnumerable`1 source, Func`2 keySelector, Func`2 elementSelector,
    IEqualityComparer`1 comparer)
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error MSB4018:    at Microsoft.Build.AppxPackage.DumpResourceIndexMap..ctor(ITaskItem[] indexedPayloadFiles)
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error MSB4018:    at Microsoft.Build.AppxPackage.ValidateAppxPackage.CheckImages()
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error MSB4018:    at Microsoft.Build.AppxPackage.ValidateAppxPackage.ExecuteImplementation()
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error MSB4018:    at Microsoft.Build.AppxPackage.AppxPackagingTaskHelper.Execute()
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error MSB4018:    at Microsoft.Build.AppxPackage.ValidateAppxPackage.Execute()
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error MSB4018:    at Microsoft.Build.BackEnd.TaskExecutionHost.Microsoft.Build.BackEnd.ITaskExecutionHost.Execute()
    1>C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0\AppxPackage\Microsoft.AppXPackage.Targets(1706,9): error MSB4018:    at Microsoft.Build.BackEnd.TaskBuilder.<ExecuteInstantiatedTask>d__20.MoveNext()
    el_ber

    Hi el_ber,
    From your information, I see that you used VS2013. Could you please tell us how did you build the project? Using VS directly, using command line or writing a script to involve MSBuild to run it? I guess you used the command line or write a build script to
    run the project because I see the path is "C:\Program Files (x86)\MSBuild\Microsoft\VisualStudio\v12.0" instead of "C:\Program Files (x86)\MSBuild\12.0\Bin\msbuild.exe". If that is the case, please use "C:\Program Files (x86)\MSBuild\12.0\Bin\msbuild.exe"
    to build the project.
    If not, can you reproduce this issue? If you can, please provide us with the steps to reproduce this issue or provide us with a sample project on onedrive.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • HT1263 where can I find the System Mac 9 that would be in the (original release) factory shipped iMac's prior to 2010? I'm missing key system data and cannot update to iPhoto app past 6.0.6; any advice will be helpful, thank you.

    Where can I find the System Mac 9 that would be in the (original release) factory shipped iMac's prior to 2010? I'm missing key system data and cannot update to iPhoto app past 6.0.6; any advice will be helpful, thank you.

    Where can I find the System Mac 9 that would be in the (original release) factory shipped iMac's prior to 2010?
    What are you refering to here? Mac OS 9 came out around 2001 ( or about ).  Mac OS 9 last run  in an emulation mode in 10.4.11 -- Tiger.  Mac OS 9 ran on PPC machines that were last produced before 2004 or so.
    I think your conclusion you need Mac OS 9 is incorrect.
    I'm missing key system data and cannot update to iPhoto app past 6.0.6; any advice will be helpful, thank you.
    iPhoto '11, Mac OS X (10.6.8), need to upgrade system to 10.8
    We need to verify some information.  Are you really running 10.6.8?  What hardware?
    Here is how to find out what version of Mac OS you are running:
    Click on the blue apple in the upper left hand of the screen.
    click on this icon
    Click on the first line, "About This Mac"
    Most of these are numbers & that's what we want.
    What version & Processor do you have?

  • Remote system details keying in Data Manager

    Hello Gurus,
    I need to create records theough portal. Is there any default way to key in the remote system & remorte key details in to data manager automatically?
    Thanks in advnace for your help.
    Regards,
    Ravi

    Hi Ravi
    Please refer to following thread for details.
    Re: Remote Key Manupulation in Java MDM APIs
    best regards
    Ravi

  • HT204266 App store icon dissappeared from screen on ipad2, also cannot download or manage my apps in itunes when connected to my desktop

    App store icon dissappeared from screen on ipad2, also cannot download or manage my apps in itunes when connected to my desktop. Need help!!

    For the App Store icon check Settings>General>Restrictions. You may have restricted the installing of apps and the icon will disappear.
    If that's not it, swipe from screen to screen as you may have moved the icon.
    You can also reset the home screen layout and the icon will reappear - but the home screen will return to the way that it looked when you first activated your iPad.
    Settings>General>Reset>Reset Home Screen Layout.
    More information is needed about the apps not syncing or downloading. Are you signed into the same ID on the iPad as your are using in iTunes on your computer and are you talking about iTunes on the computer being the problem?

  • I upgraded to OS X Mavericks, and once I logoff of my user, overnight I cannot get the Mac back to the login user screen.  It remains black.  What is my problem?

    I upgraded to OS X Mavericks a couple of weeks ago.  Now, once I logoff of my user for a period of time like overnight, I cannot get back to the login user screen without shutting the computer down hard and rebooting.  What is my problem?

    A Safe Mode boot may help.
    Startup your Mac in Safe Mode
    A Safe Mode boot takes much longer than a normal boot so be patient.
    Once you are in Safe Mode, click Restart from the Apple () menu.
    Then see if you can get back to the login screen after logging off your account.

  • No 'system /administration /login manager" in Gnome

    With previous installs I always had login manager.
    so I tried to reinstall GDM and got this--
    warning: directory permissions differ on var/run/gdm/
    filesystem: 1775 package: 1777
    warning: directory permissions differ on var/log/gdm/
    filesystem: 1770 package: 755
    I ran gdmsetup as root and got "command not found"
    This is a new install and everything else is perfect.
    Can someone kindly tell me how to solve this please?
    Thanks

    See the "where is the gdm setup gone" thread, and the wiki page about changes in gnome 2.28.
    http://wiki.archlinux.org/index.php/Gnome_2.28_Changes
    http://bbs.archlinux.org/viewtopic.php?id=82089
    Last edited by Mr.Elendig (2009-10-13 11:45:32)

Maybe you are looking for

  • Want to call transactions from ALV list output

    Hi Guru's, I have a report which displays Open PR's, open PO's n their details with respect to material. wat i want to do is call transactions from this out put i.e i want a interactive output. if i click on particular PR i want the system to call th

  • LTE no longer showing up in my area

    The area in question is the Spotyslvania Courthouse area (zips 22407 & 22553). The last few days, LTE service has dropped and the phone fluctuates between 1X and 3G. I have friends with iPhones, a Samsung Note 2 and other Android devices having the s

  • My iphone 5 won't sync to itunes because it needs more GB, but I have enough space? what do i do?

    Hi i need some help... I am trying to sync my iphone 5 to my itunes. I did all the updates and it still tells me this when I try to sync it... "The iPhone "iPhone" cannot be synced because there is not enough free space to hold all of the selected it

  • Air 3.1 Crash on Mac OSX Snow Leopard (10.6)

    Description Intermittent crashing occurs after the application is launched on Snow Leopard. The crash tends to occur 10 to 20 seconds after the application has launched. The crash has happened 100% of the times we've tested on our Snow leopard testin

  • Cost center change in the Asset master record

    Hi When ever cost center changed in the Asset master record, can it possible what ever the dep that is posted to previous cost center,that will automatically transfers to the new cost center,is there any programme for this,i can use repost functional