Weird Issue with session collection creation

Hello everybody,
While building a fully redundant RDS infrastrcutre I cam across this issue
While creating the session collection through Server Management on Windows Server 2012 R2 I get the following error:
"Unable to configure the RD Session Host server - Invalid Operation".
Here is a detailed spec of the environment:
- 2 RDS brokers connected in HA mode to a Cluestered SQL Instance
- 2 RDS license servers that are correctly configured on the session hosts
- 3 RDS Session Hosts
All are Windows Server 2012 R2
I have checked the Event logs also and everything I do not see any issues, the session hosts have correct communication between one another and to the license and rd  broker servers.
At this point I am really lost.
Anybody have any ideeas about such a ambiguous error?
Thank you!
Above and Beyond Information Technology

Hi,
Thank you for sharing your experience here. It will be very beneficial for other community members who have similar questions. 
Regards.
Dharmesh Solanki
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Similar Messages

  • Having a weird issue with my assign after java embedding

    hi,
    I'm having a weird issue with my assign activity, i am using a Java Embedding wherin i access a variable and assign it some data, later in next step when i try to assign some other data to this same variable in assign activity i get a Error message as below.
    com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure} parts: {{ summary=Invalid to part type. When performing the assign operation, the to node THIS,IS,,TEST is invalid. The node named in the error message was either null or an empty node set, and it was not an instance of org.w3c.Element. Verify the node value at line number 795 is not null and is an instance of org.w3c.Element. } .
    i'm using soa 11.1.1.5
    Can anyone please help ?
    - Thanks
    Shirish

    Shirish,
    It's a bug and you will need to apply a patch for that.
    You can find all explanation in Oracle Support Id ID 1194228.1.
    Arik

  • Weird issue with safari on iPad mini?

    I just had a weird issue with my safari web page, it stopped responding to my scrolling. I then tried coming out of it and going bad in again a couple of times, which still did not work. It then started jiggling around all over the place (jiggling is the only word I can use to describe it), it was as if you had clicked and held the page with a mouse and then started moving the page all over the place, or even like an earthquake on the page. The tab then closed. Can anyone explain this? Thanks.

    Quit Safari then reset your iPad.
    Double click the Home button to show the screen with running and recently used apps. Each app icon will have a sample page above it. Flick up on the page (not the app icon) and the page will fly away and the app icon will disappear. This quits that app. Then reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • Weird Issue With Windows Live Mail

    I have a friend using Windows Live Mail and he's been having some weird issues with it. When he goes to forward an email, it will occasionally open the email up twice, which isn't a huge deal it's just more annoying than anything. I thought maybe there was
    some malware or other junk that could be causing it so I ran MBAM and got everything cleaned up but it's still happening. Any other thoughts on what could cause this?
    Thanks.

    Windows Live Mail support is found @
    https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=12&ct=1410798892&rver=6.1.6206.0&wp=LBI&wreply=https:%2F%2Fanswers.microsoft.com%2Fen-us%2Fsite%2Fcompletesignin%3Fsilent%3DFalse&id=273572
    You must login to your Windows Live account and then Ask a Question.
    This forum is dedicated to the Windows 7 operating system.  Windows Live is not a feature of Windows 7 and Microsoft has established support for Windows Live Mail  @ the Microsoft Community found @
    http://answers.microsoft.com/en-us/windows/forum/windows_7-ecoms?auth=1
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Issues with ODATA service creation

    Hi Gurus,
    I am facing some issues with ODATA service creation. I have an analytic view which I want to consume via SAP UI5.
    As per guides and blogs, I need to create 3 files, namely .xsaccess, .xsapp and .xsodata. I created these three files but at the same time .xsodata and .xsaccess got created at one more place. That place is my package which I checked out while creating the repository. Now when I try to activate my .xsaccess or .xsapp file, I get an error message - "The file name .xsaccess or .xsapp already exists and only 1 file is allowed per package"
    for more info please revert.
    Kindly help.
    Best regards,
    Chandan

    Chandan Sinha wrote:
    Can we add multiple analytic views in one ODATA service?
    Certainly.  You just have multiple entities then. You can even create associations between them. Here is an example that uses a combination of CDS Views, Attribute Views, and Analytic Views:
    service namespace "Wile.services" {
      "Wile.data.models::AN_EPISODES" as "Episodes"
      keys ("EPISODE_ID")
      navigates ("ToACMEItems" as "ACMEItems",
                "ToCoyoteNames" as "CoyoteNames",
                "ToRoadRunnerNames" as "RoadRunnerNames",
                "ToDirectors" as "Directors",
                "ToWriters" as "Writers");
      "Wile.data.models::AT_ACME_ITEMS" as "ACMEItems"
      keys ("EPISODE_ID","ITEM_ID");
      "Wile.data.models::AT_ACME_CATALOG" as "ACMECatalog"
      keys ("ITEM_ID")
      create using "Wile.services:ACMECatalogExits.xsjslib::itemsCreate"
      update using "Wile.services:ACMECatalogExits.xsjslib::itemsUpdate"
      delete using "Wile.services:ACMECatalogExits.xsjslib::itemsDelete";
      "Wile.data::WileECoyote.Episode.CoyoteNamesView" as "CoyoteNames"
      with ("EPISODE_ID","NAME_ID","NAME")
      keys ("EPISODE_ID","NAME_ID");
      "Wile.data::WileECoyote.Episode.RoadRunnerNamesView" as "RoadRunnerNames"
      with ("EPISODE_ID","NAME_ID","NAME")
      keys ("EPISODE_ID","NAME_ID");
      "Wile.data::WileECoyote.Episode.DirectorsView" as "Directors"
      with ("EPISODE_ID","NAME_ID","NAME","URL")
      keys ("EPISODE_ID","NAME_ID");
      "Wile.data::WileECoyote.Episode.WritersView" as "Writers"
      with ("EPISODE_ID","NAME_ID","NAME","URL")
      keys ("EPISODE_ID","NAME_ID");
      association "ToACMEItems" principal "Episodes"("EPISODE_ID")
       multiplicity "1"
       dependent "ACMEItems"("EPISODE_ID") multiplicity "*";
      association "ToCoyoteNames" principal "Episodes"("EPISODE_ID")
       multiplicity "1"
       dependent "CoyoteNames"("EPISODE_ID") multiplicity "*";
      association "ToRoadRunnerNames" principal "Episodes"("EPISODE_ID")
       multiplicity "1"
       dependent "RoadRunnerNames"("EPISODE_ID") multiplicity "*"; 
      association "ToDirectors" principal "Episodes"("EPISODE_ID")
       multiplicity "1"
       dependent "Directors"("EPISODE_ID") multiplicity "*";
      association "ToWriters" principal "Episodes"("EPISODE_ID")
       multiplicity "1"
       dependent "Writers"("EPISODE_ID") multiplicity "*";

  • Weird issues with latest X-Fi Driver/Software

    -Weird issues with latest X-Fi Driver/SoftwareO So I decided to update my X-fi drivers and software today, but I am running into some issues.
    First and foremost is that my Volume Panel no longer works correctly. It brings up this cheap pos window when I click on the Systray icon instead of the corrrect full featured interface.
    It lists the merdia source programs and has a volume dial, thats all this new one has.
    The other issues are that none of the software updates want to install: Alchemy, Mixer, Mediasource Go
    They all give me a message after I being to install that says "can not locate layout.bin please specify the path"? and gives my a "this setip reqires a cd" window and lists a path to a temp folder inside my windows folder.
    Installing these for Vista? Ultimate 32-bit.

    -Weird issues with latest X-Fi Driver/SoftwareO So I decided to update my X-fi drivers and software today, but I am running into some issues.
    First and foremost is that my Volume Panel no longer works correctly. It brings up this cheap pos window when I click on the Systray icon instead of the corrrect full featured interface.
    It lists the merdia source programs and has a volume dial, thats all this new one has.
    The other issues are that none of the software updates want to install: Alchemy, Mixer, Mediasource Go
    They all give me a message after I being to install that says "can not locate layout.bin please specify the path"? and gives my a "this setip reqires a cd" window and lists a path to a temp folder inside my windows folder.
    Installing these for Vista? Ultimate 32-bit.

  • Weird issue with Exchange 2010 Room Mailboxes - allows multiple booking of the created meeting rooms

    Hi,
    we are facing weird issue with Exchange 2010 Room Mailboxes
    it allows multiple booking of the created meeting rooms.Sometime we are not getting acceptance or declined mail but and we could see our meetings has been booked at slot.
    for e.g.
    User A booked room1 with weekly recurrence for time 4pm to 5pm., and User B made his  booking other day,without realizing that user A meeting is exists.
    Neither of user A nor user B got declined/rejected emails.
    please sahre guidelines if anyone known to this issue.
    Note - Allow Conflict booking is disabled already :) but still have issue
    Thanks,
    NPratik

    Hi,
    Just add more in this issue, following testing is done.
    referring results and conclusion, you will get better view on issue 
    ====================
    Test Case - 1
    User OnCloud/O365 - Pratik Nimbalkar
    Email ID - [email protected]
    ( same as UPN)
    Room Booking Scenario - Book Room for 6.30pm to 7.30pm slot
    Results - Accepted
    Room Booking Scenario for same slot- ReBook Room for 6.30pm to 7.30pm slot
    Results - Declined
    Conclusion = working fine
    ==================
    Test Case - 2
    User OnCloud/O365 - Testsm
    Email ID - [email protected]
    ( different from UPN)
    Room Booking Scenario - Rebook Room for 6.30pm to 7.30pm slot
    Results - No Response from Room Mailbox neither Accepted nor Declined
    But we can see as booked as "Tentative"
    Room Booking Scenario for same slot- Rebook Room for 6.30pm to 7.30pm slot
    Results -No Response from Room Mailbox neither Accepted nor Declined
    But we can see as booked as "Tentative"
    =========================
    Conclusion = There is issue with booking room and not getting response while user is
    @abc.my id.
    ======================
    Note = for all other on premise users those are having @abc.co.in
    and @abc.my it is working fine. Users are getting respective correct reply from room mailboxes.
    This issue seems with only on cloud
    @abc.my users

  • Issue with session management with portal 701 AFP

    Hi portal experts,
    We are facing an issue with one of our portal 7 ehp1 running the AJAX framework pages.
    When logging off, the DSM popup is shown and it disappears. However, the backend sessions are kept alive when we look in transaction SM12, which indicates that the backend session has not been closed (proven in transaction SM04)
    The same issue arises when closing a popup window. In this case, no DSM popup is shown and the sessions are maintained as well.
    Popup blockers are disabled
    Portal url and backend url are in the trusted sites collection
    Does this have something to do with the AJAX framework?
    Does anyone have any pointers for us?
    Thanks in advance!
    Regards,
    Luk

    Hi Tom,
    I already came across this note earlier. Currently I'm unable (not allowed) to install the httpwatch utility.
    To add to the complexity, web dispatchers are used to access the portal and used between the portal and the backend systems. If I understood correctly, we need to have the ABAP Security Sessions Enabled setting turned on in this sort of landscape. Is this correct?
    If it is not required, couldn't we just turn off this setting?
    Thanks in advance!
    kr,
    Luk

  • Weird issue with Site Template in O365

    Hi,
    I ran into a weird issue while working with Site Template in O365 last night.
    I created a sub-site in a Site Collection with some Site Columns, CT and Lists. Then I saved it as a Site Template so that it can be used for different sites. Then I created 3 different sub-sites using the template. All went good.
    After some time when I looked at the sites, something really irritating happened. I saw the first two sites were missing all the site columns and CT. And the latest third site had 3 copies of each Site Column and CT.  Though for the first two sites,
    all the CT, Site Columns were available at List level, but it wad just the reference. The Actual CT was not seen the site settings.
    This is the first time I saw this kind of issue. Not sure what is the reason for this.
    Any idea around this ?
    Thanks,
    Nutan
    Nutan Sharma

    Hi,
    According to your description, my understanding is that the error occurred when you created a site from the template with no files in the document library.
    I tested the same scenario per your post, and I can create a site from the template with no files in the document library with no errors.
    To solve this issue, I recommend to verify the things below:
    Did you save the site as a template with Include Content checked? If yes, I recommend to test if it works when saving the site as a template with Include Content unchecked.
    Test the same scenario with a new site to narrow the issue scope.
    I also recommend to check the event log and ULS log to see if anything unexpected occurred.
    To check event log, click the Start button and type “Event Viewer” in the Search box.
    For SharePoint 2010, by default, ULS log is at C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS.
    You can check the ULS log by the methods here:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    http://msdn.microsoft.com/en-us/library/gg193966(v=office.14).aspx
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Issue with Session ID during POST

    Hi All,
    I am using Weblogic server version weblogic 9.2 and facing an issue with the session ID.
    I have a client side script with numerous GET calls and one POST call that it makes in a single session. Frequently I come across with issue that the session ID that I send in POST request is not the same as received and this affects my subsequent GET calls not to be in the same session. The call order is like this
    GETij/POSTij where i is the sent and j is the recieved session IDs.
    [GET11, GET11, GET11, POST12, GET11, GET11, <after few secs interval> GET22, GET22]
    I store the session id in a cookie. And I always create a session using the HttpServletRequest.getSession();
    Can some one advice on this.
    Thanks
    Shankar

    Hi,
    Again as a follow-up, I am using net scape ns plugin for load balancing (iPlanet/Weblogic). The issue happens when the primary server id and the secondary server id are same in the session id (set in the cookie) when the cookie is sent and received, where session id is of the default format <session id>!<primary server id>!<secondary server id>
    Any clue?

  • Known Issues with Session Vars and non-IE browsers?

    Are there any known issues with non-Internet Explorer
    browsers storing or reading session variables. Or loops and
    ListGetAt functions? I'm using CF 5.
    The code works fine in IE, but not in FireFox or Netscape.
    Thanks,
    Josh

    This testing will not really address any cross domain issues, due to the content being hosted by ScormCloud.
    What I found interesting, is that in ScormCloud, using the links below, my results were opposite those that I obtained through my LMS.
    In LMS, Captivate 5 worked, Captivate 6 did not in IE8, both worked in FF
    In ScormCloud, Captivate 5 did not work in IE8, but worked in FF, and Captivate 6 did work in FF and IE8.
    Here are the links:
    captivate 5 http://cloud.scorm.com/sc/InvitationConfirmEmail?publicInvitationId=3c04f298-d0db-4d10-ab6 3-80b9aaf2890b
    captivate 6 http://cloud.scorm.com/sc/InvitationConfirmEmail?publicInvitationId=e2b05753-2f03-421a-87d 9-62b92ad199af
    Thanks for your attention, every bit of information that I can get will help.
    Thanks,
    SL

  • [SOLVED] Major weird issues with KDE/Qt apps and unicode

    Hi, I've tried to search for my problem, but nothing has showed up, so if this has already been answered, please forgive me.
    Anyway, I use KDE as my primary desktop environment with SKIM as my unicode input method. After installing SKIM and Japanese fonts back when I first set Arch up, I have never had any issues with inputting unicode or displaying it in any program, whether that be irssi running through Konsole, or the song titles in Amarok. That all changed this afternoon, somehow...
    The only major changes I can remember making to my system today are the following:
    1.) I installed Awesome Window Manager to check it out
    2.) I installed a pkgbuild of urxvt
    3.) I made an .Xdefaults file and added these lines to customize my urxvt
    After messing around with these things, I decided that Awesome wasn't a suitable WM for me, went back into KDE, and removed the package. I noticed a few strange issues after that though:
    1. Foreign characters refuse to display properly in any terminal emulator.
    2. Foreign characters come up as jumble in Konqueror now as well, when they never did before:
    3. SKIM refuses to let me input Japanese characters with Anthy in any KDE app. The option for Japanese just isn't there, even though I have it installed:
    4. Foreign characters display perfectly as tags for songs in Amarok, but if the music file itself has foreign characters in it, the title is garbled and the track is unplayable:
    5. SKIM works absolutely fine in non-KDE apps like Firefox:
    As seen in the last example, my Japanese fonts are all installed, and SKIM is working as it should in any non-KDE app, suggesting that there are no problems on that end. The issue seems to be with something in KDE, but I have no idea where to begin fixing it. Furthermore, I have no idea what could have caused this issue in the first place. I don't see how installing a window manager or terminal emulator package could have screwed up my fonts, and the .Xdefaults file I wrote just contained config information for urxvt. Nothing else. I even ended up deleting that, but it did not fix my problem.
    If you could be of any help, I'd really appreciate it. I have a lot of files with foreign characters in them, and being able to read them is essential.
    Last edited by LighthouseKeeper (2008-04-20 00:57:36)

    I was just looking into locales, actually.
    My current locale is:
    LANG=en_US.utf8
    LC_CTYPE="en_US.utf8"
    LC_NUMERIC="en_US.utf8"
    LC_TIME="en_US.utf8"
    LC_COLLATE=C
    LC_MONETARY="en_US.utf8"
    LC_MESSAGES="en_US.utf8"
    LC_PAPER="en_US.utf8"
    LC_NAME="en_US.utf8"
    LC_ADDRESS="en_US.utf8"
    LC_TELEPHONE="en_US.utf8"
    LC_MEASUREMENT="en_US.utf8"
    LC_IDENTIFICATION="en_US.utf8"
    LC_ALL=
    and locale -a brings up:
    C
    POSIX
    en_US.utf8
    Is there anything here that could be causing this issue?
    I'm curious how my locale got messed with in the first place if this is indeed the problem...
    and here is my export:
    declare -x COLORTERM=""
    declare -x DESKTOP_SESSION="kde"
    declare -x DISPLAY=":0.0"
    declare -x DM_CONTROL="/var/run/xdmctl"
    declare -x GS_LIB="/home/rael/.fonts"
    declare -x GTK2_RC_FILES="/etc/gtk-2.0/gtkrc:/home/rael/.gtkrc-2.0:/home/rael/.kde/share/config/gtkrc-2.0"
    declare -x GTK_IM_MODULE="scim"
    declare -x GTK_RC_FILES="/etc/gtk/gtkrc:/home/rael/.gtkrc:/home/rael/.kde/share/config/gtkrc"
    declare -x HOME="/home/rael"
    declare -x KDE_FULL_SESSION="true"
    declare -x KDE_MULTIHEAD="false"
    declare -x KDE_SESSION_UID="1000"
    declare -x KONSOLE_DCOP="DCOPRef(konsole-19951,konsole)"
    declare -x KONSOLE_DCOP_SESSION="DCOPRef(konsole-19951,session-1)"
    declare -x LOGNAME="rael"
    declare -x OLDPWD
    declare -x PATH="/opt/kde/bin:/usr/local/bin:/usr/bin:/bin:/usr/bin:/usr/games"
    declare -x PWD="/home/rael"
    declare -x QT_IM_MODULE="scim"
    declare -x SESSION_MANAGER="local/broadway:/tmp/.ICE-unix/19566"
    declare -x SHELL="/bin/bash"
    declare -x SHLVL="2"
    declare -x SSH_AGENT_PID="19539"
    declare -x SSH_AUTH_SOCK="/tmp/ssh-MtdHR19538/agent.19538"
    declare -x TERM="xterm"
    declare -x USER="rael"
    declare -x WINDOWID="41943050"
    declare -x XCURSOR_THEME="default"
    declare -x XDM_MANAGED="/var/run/xdmctl/xdmctl-:0,maysd,mayfn,sched,rsvd,method=classic"
    declare -x XMODIFIERS="@im=SCIM"
    Last edited by LighthouseKeeper (2008-04-19 22:31:16)

  • Weird issue with 10.0.1.0 on Linux - 5 mins delay in server start-up!!

    Hi ...
    I am having some weird (and unique??) issue with WLS 10.0.1.0 on RHEL servers.
    WLS installation on our DEV env works perfectly fine and the server starts up in 15-20 secs. for each of the two domains created on it.
    But the QA server is another story all together ! ... It has the same OS and version, WSL installation and version, hardware configs, processes running at the time of start-up etc. But the problem is that when I try to start the server on the only domain on that server, it always gets delayed by 5-6 mins in between the startup at this point -
    +&lt;Feb 17, 2009 *7:04:50 *PM UTC&gt; &lt;Info&gt; &lt;Management&gt; &lt;BEA-141107&gt; &lt;Version: WebLogic Server 10.0 MP1 Thu Oct 18 20:17:44 EDT 2007 1005184 &gt;+
    +&lt;Feb 17, 2009 *7:10:56 *PM UTC&gt; &lt;Info&gt; &lt;WebLogicServer&gt; &lt;BEA-000215&gt; &lt;Loaded License : /opt/bea/license.bea&gt;+
    (Notice the 6 mins delay in the timestamps)
    There are no logs getting generated within this time and it seems like the WLS 10.0.1.0 just spaces out
    After the delay it starts up pretty fast .. within 10-15 secs!!
    Anybody here seen such behavior with WLS
    thanks,
    --Shailesh Welankar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    I recommend taking some thread dumps during this delay and contacting support to get some advice.
    You can take the thread dumps by kill -3, JRockit Mission Control, etc.

  • Having some weird issues with logic 8

    i am almost Positive! that i pushed some buttons or selected something to mess it up, i would be indebted to anyone who can help me with like three issues i'm having
    I run my M-audio mobile pre into logic and am having these issues:
    #1. track 1 and two seem to be tied together even though i select mono tracks... so i need to leave track two blank otherwise it interferes with whatever is on track one. and on the bar where i drag the loop i was using it has two O's that make like a vinn diagram symbol.
    #2. the volume controll (the bottom left fader one) can increase the Db but not decrease...
    #3 through my headphones the signal only comes out the right side. i am inputting my guitar/vox into the right input on the mobile pre, but i thought if the tracks were mono, it wouldn't matter.
    please please please help, i need to get recording soon!
    thanks.

    i figured out the volume issue, with the weird stereo track, i needed to adjust it on both tracks (even though one was empty haha duh)

  • Weird issues with file share using both SMB and AFP?

    I use my Xserve with 10.4 server primarily as a file server (with a huge RAID array attached via Ultra320 SCSI). I've served files from this server over SMB ("Windows" sharing) to both PCs and Macs for a few years now with no big issues. The files are being shared in a collaborative environment with extensive user accounts and ACLs set up.
    I would like to turn on AFP for these same file shares, so those accessing with a Mac can have the added benefits of AFP over SMB. However, I've heard some rumors of some complicated issues developing from the use of both AFP and SMB together on the same folders, in a mixed environment.
    The rumors I've heard are things that would happen rarely but enough for it to be significant. For example, a file created over SMB and then edited over AFP would have some problems being re-edited over SMB again, due to some complicated feature that the rumor is unable to explain (something with a resource fork or file locking?). Maybe something weird that just involves the Adobe Creative Suite?
    Anyway, I figured I'd throw this out there. Anyone who serves files over both protocols to a varied set of computers and applications having weird issues? Or is everything working for you? Thanks in advance.
    Message was edited by: dtemp

    Thanks for the responses!
    re:crop
    It's coming in as cropped with no way to fix it that I can see.
    Pressing space or opening in preview shows the full image but if it gets anywhere near Photoshop it comes in auto-cropped.
    I'm starting to this it's a bug and will be reporting it to Adobe.

Maybe you are looking for