Q_CAT:1494: ERROR: xa_open() - failed to get shared memory

I am getting this error while booting tuxedo.
My question is how do I calculate shared memory on solaris and then which parameter to increase in /etc/system file.
Thanks

Vaibhav,
You need to make sure that the product of SHMMAX and SHMSEG is at least
equal to the total amount of shared memory needed by Tuxedo and any other
applications running on your machine.
"tmboot -c" will tell you the amount of shared memory required for the
Tuxedo bulletin board, but this does not include any space required by /Q.
To get /Q shared memory requirements, you can use the qmadmin subcommand
"qspacelist". If you have more than one queuespace on your system, you must
do this for each queuespace on your system, and add this total to the
bulletin board requirements. If any other applications on your machine use
shared memory, add their requirements as well. In case requirements change
in the future, it is good to add a comfortable amount of padding to this
sum.
Ed
<Vaibhav Gaur> wrote in message news:[email protected]..
I am getting this error while booting tuxedo.
My question is how do I calculate shared memory on solaris and then which
parameter to increase in /etc/system file.
Thanks

Similar Messages

  • 1494 ERROR: xa_open() - failed to get shared memory

    Hi,
    I am getting the following error when I try to create a Q Space with number of
    messages in it as 5,00,000. But if I try the same for 4,00,000 messages, it is
    successful.
    I checked the Shared memory in the machine and it is much more than it is required
    for 5,00,000 messages Q Space.
    Do I need to tune any other operating system parameter ?
    1494 ERROR: xa_open() - failed to get shared memory, key = key, errno = errno
    Description
    While opening the queue space, xa_open() was unable to get the necessary shared
    memory. The error number, errno, is printed in the message.
    Action
    This failure can be caused by a number of reasons but the most likely is that
    either the amount of shared memory requested would cause an operating system tunable
    to be exceeded (shared memory for the system or shared memory identifiers), or
    another application is using the same key. Determine and correct the problem.
    Thanks
    Vipul

    Peter,
    the errno value is 22
    thanks
    Vipul.
    Peter Holditch <[email protected]> wrote:
    vipul,
    What errno value did you get when you saw this message?
    Regards,
    Peter.
    vipul wrote:
    Hi,
    I am getting the following error when I try to create a Q Space withnumber of
    messages in it as 5,00,000. But if I try the same for 4,00,000 messages,it is
    successful.
    I checked the Shared memory in the machine and it is much more thanit is required
    for 5,00,000 messages Q Space.
    Do I need to tune any other operating system parameter ?
    1494 ERROR: xa_open() - failed to get shared memory, key = key, errno= errno
    Description
    While opening the queue space, xa_open() was unable to get the necessaryshared
    memory. The error number, errno, is printed in the message.
    Action
    This failure can be caused by a number of reasons but the most likelyis that
    either the amount of shared memory requested would cause an operatingsystem tunable
    to be exceeded (shared memory for the system or shared memory identifiers),or
    another application is using the same key. Determine and correct theproblem.
    Thanks
    Vipul

  • Qsample example failing with Q_CAT:1495: ERROR: xa_open()

    I'm trying to run qsample example coming with evaluation tuxedo 8.0 for solaris
    8.
    It fails in the qmadmin tool when trying to call "qopen QSPACE".
    The user log file has recorded error line "Q_CAT:1495: ERROR: xa_open() - failed
    to attach to shared memory, key = 62839, errno = 22".
    Truss utility shows this:
    <<<<<<<<<<<<<<<<<<<<<<<<<
    semget(62839, 1, 0) = 786432
    semop(786432, 0xFFBEE0BC, 1) = 0
    shmget(62839, 0, 0) = 24576
    shmctl(24576, 12, 0xFFBEE058) = 0
    shmat(24576, 0, 0) = 0xFD800000
    shmdt(0xFD800000) = 0
    shmget(62839, 94417, 0) = 24576
    open("/dev/zero", O_RDONLY) = 4
    mmap(0x00000000, 1048576, PROT_READ, MAP_PRIVATE, 4, 0) = 0xFE280000
    close(4) = 0
    munmap(0xFE280000, 1048576) = 0
    shmat(24576, 0xFE280000, 0) Err#22 EINVAL
    .and /etc/system has:
    set shmsys:shminfo_shmmax=4294967295
    set shmsys:shminfo_shmmin=1
    set shmsys:share_page_table=1
    set msgsys:msginfo_msgmap = 1026
    set msgsys:msginfo_msgmax = 4096
    set msgsys:msginfo_msgmnb = 4096
    set msgsys:msginfo_msgmni = 50
    set msgsys:msginfo_msgssz = 8
    set msgsys:msginfo_msgtql = 1024
    set msgsys:msginfo_msgseg = 2048
    ** IPC-semsys
    set semsys:seminfo_semmap = 1026
    set semsys:seminfo_semmni = 3072
    set semsys:seminfo_semmns = 32768
    set semsys:seminfo_semmnu = 2048
    set semsys:seminfo_semmsl = 128
    set semsys:seminfo_semopm = 128
    set semsys:seminfo_semume = 256
    set semsys:seminfo_semvmx = 32767
    set semsys:seminfo_semaem = 16384
    ** IPC-shmsys
    set shmsys:shminfo_shmmni = 3072
    set shmsys:shminfo_shmseg = 1024
    The box we are tryimg it on is a big SunFire 6800 server
    with 16 GB RAM and 8 CPUs and also has Oracle installed on it
    so all shared memory setting are quite high.
    Could anyone tell me where we are doing wrong. Thanking you in advance.

    Thank you, Scott
    Actually I've found the problem already. It was in the /etc/system file we had
    settings shmsys:share_page_table=1, and that caused ISM to function differently
    so, particularly calls to shmat() with supplying your own map address (and what
    Tuxedo does) would fail. Removing this setting fixed the problem.
    Scott Orshan <[email protected]> wrote:
    George,
    I tried qsample on Tux 8/Solaris 8, and it worked for me. I think that
    Support should take a look at it. You can have them check with me, and
    I'll show them where in the code this error comes from.
         Scott Orshan
    George wrote:
    I'm trying to run qsample example coming with evaluation tuxedo 8.0for solaris
    8.
    It fails in the qmadmin tool when trying to call "qopen QSPACE".
    The user log file has recorded error line "Q_CAT:1495: ERROR: xa_open()- failed
    to attach to shared memory, key = 62839, errno = 22".
    Truss utility shows this:
    <<<<<<<<<<<<<<<<<<<<<<<<<
    semget(62839, 1, 0) = 786432
    semop(786432, 0xFFBEE0BC, 1) = 0
    shmget(62839, 0, 0) = 24576
    shmctl(24576, 12, 0xFFBEE058) = 0
    shmat(24576, 0, 0) = 0xFD800000
    shmdt(0xFD800000) = 0
    shmget(62839, 94417, 0) = 24576
    open("/dev/zero", O_RDONLY) = 4
    mmap(0x00000000, 1048576, PROT_READ, MAP_PRIVATE, 4, 0) = 0xFE280000
    close(4) = 0
    munmap(0xFE280000, 1048576) = 0
    shmat(24576, 0xFE280000, 0) Err#22 EINVAL

  • Q_CAT:1497: ERROR: xa_open() - no more process table slots

    I am getting the following error when an attempt is made to open the Q Space using
    the qmadmin command :
    Q_CAT:1497: ERROR: xa_open() - no more process table slots.
    Any info on the possible cause of this problem will be appreciated !!!
    Thanks,
    Vipul

    definitely the no of processes attached to queuespace have crossed the limit which
    was defined at the time queue space was created.
    "Ian Langridge" <[email protected]> wrote:
    Don't forget that when the queuespace was created the number of processes
    that could attach to the queuespace was nominated - exceed that number
    and
    see this error. Maybe you have a script that created the queuespace
    and did
    not see this parameter.
    See http://edocs.bea.com/tuxedo/tux81/rfcm/rfcmd25.htm#1000233 for
    information on the qspacecreate and qspacechange commands.
    Ian
    "vipul" <[email protected]> wrote in message
    news:3ecbe75c$[email protected]..
    I am getting the following error when an attempt is made to open theQ
    Space using
    the qmadmin command :
    Q_CAT:1497: ERROR: xa_open() - no more process table slots.
    Any info on the possible cause of this problem will be appreciated!!!
    Thanks,
    Vipul

  • Scheduling a Deski report fails with error message: "Failed to get property

    Hi,
    We have created few Desktop Intelligence report. Now when these report are schedules to be refreshed weekly (on Sunday), it fails with the following error message:
    "Failed to Get Property"
    Have tried to refresh the reports manually in Full Client too but the report fails there too.
    Have checked for the connection information. The servers are up and running.
    Have tried to re-create the connection and even tried to re-import and export the Universe.
    If we rename the report and save it and export, it works fine. Can not try this workaround as have more that 500 reports.
    Please suggest.
    regards,

    Hi Maria,
    usually the message "Failed to Get Property" is followed by an item name such as SI_FILE, or SI_VARIABLE, or SI_USE_ORIGINALDS, and so on.
    Could you please specify as much information coming from the error message as you can?
    Furthermore, is this issue happening with any Desktop Intelligence reports you schedule?
    Are the reports using the same Universe?
    Which DB are you using?
    Regards,
    Samanta F.

  • ARD:  Unable to get shared memory

    Hi,
    Has anyone encountered this problem with ARD 3.
    As I try to open it it doesn't start and gives me get the following error message.
    "The Remote Desktop Administrator software failed to start due to an unexpected error. The Remote Desktop software may not be correctly installed or the computer may require a restart"
    Rebooting the server is no help.
    ARD has worked flawlessly for 2yrs untill now.
    When I check the console the lonly thing related to ARD there says:
    "ARD: Unable to get shared memory"
    Any suggestions?
    //Carlos

    It sounds like you have in incompatiblity between the version of the ARDAgent client software and the Remote Desktop Admin application on your admin machine. You should check the versions on both and make sure they are the same.

  • Getting Error : Cannot attach data store shared-memory segment,

    HI Team,
    I am trying to integrate Timesten IMDB in my application.
    Machine details
    Windows 2003, 32 bit, 4GB RAM.
    IMDB DB details
    Permanent size 500MB, temp size 40MB.
    If I try to connect to database using ttisql it get connected. But If I try to connect in my Java application I get following exception.
    java.sql.SQLException: [TimesTen][TimesTen 11.2.1.3.0 ODBC Driver][TimesTen]TT0837: Cannot attach data store shared-memory segment, error 8 -- file "db.c", lineno 7966, procedure "sbDbCreate"
    at com.timesten.jdbc.JdbcOdbc.createSQLException(JdbcOdbc.java:3269)
    at com.timesten.jdbc.JdbcOdbc.standardError(JdbcOdbc.java:3418)
    at com.timesten.jdbc.JdbcOdbc.standardError(JdbcOdbc.java:3383)
    at com.timesten.jdbc.JdbcOdbc.SQLDriverConnect(JdbcOdbc.java:787)
    at com.timesten.jdbc.JdbcOdbcConnection.connect(JdbcOdbcConnection.java:1800)
    at com.timesten.jdbc.TimesTenDriver.connect(TimesTenDriver.java:303)
    at com.timesten.jdbc.TimesTenDriver.connect(TimesTenDriver.java:159)
    at java.sql.DriverManager.getConnection(DriverManager.java:582)
    at java.sql.DriverManager.getConnection(DriverManager.java:207)
    Maximum permanent size that works with Java application is 100MB. But it would not be enough for our use.
    Could anybody let me know the way to resolve/reason for getting this error? Any response would be appreciated.
    Thanks in Advance,
    Regards,
    atul

    This is a very common problem on 32-bit Windows. A TimesTen datastore is a single region of 'shared memory' allocated as a shared mapping from the paging file. In 'direct mode', when the application process(in your case either ttIsql or the JVM) 'connects' to the datastore the datastore memory region is mapped into the process address space. In order for this to happen it is necessary for there to be a free region in the process adddress space that is at least the size of the datastore. This region must be contiguous (i.e. a single region). Unfortunately, the process memory map in 32-bit Windows is typically highly fragmented and the more DLLs that a process uses the worse this is. Also, JVMs typically use a lot of memory, depending on configuration.
    Your options to solve this are really limited to:
    1. Significantly reduce the memory used by the JVM (may not be possible).
    2. Use a local client/server connection from Java instead of a direct mode connection. To minismise the performance overhead make sure you use the optimised ShmIpc connectivity rather than TCP/IP. Even with this there is likely to be a >50% reduction in performance compared to direct mode.
    3. Switch to 64-bit Windows, 64-bit TimesTen and 64-bit Java. Even without adding any extra memory to your machine thsi will very likely fix the problem.
    Option (3) is by far the best one.
    Regards,
    Chris

  • Xa_open - failed

    145010.STINGRAY-32!TMS_QM.1608.1604.0: Q_CAT:1350: ERROR: xa_open - failed to open table QSPACE.00 on config C:\samplesTuxedo\qsample\QUE
    What can be the reason for this error?

    Peter,
    the errno value is 22
    thanks
    Vipul.
    Peter Holditch <[email protected]> wrote:
    vipul,
    What errno value did you get when you saw this message?
    Regards,
    Peter.
    vipul wrote:
    Hi,
    I am getting the following error when I try to create a Q Space withnumber of
    messages in it as 5,00,000. But if I try the same for 4,00,000 messages,it is
    successful.
    I checked the Shared memory in the machine and it is much more thanit is required
    for 5,00,000 messages Q Space.
    Do I need to tune any other operating system parameter ?
    1494 ERROR: xa_open() - failed to get shared memory, key = key, errno= errno
    Description
    While opening the queue space, xa_open() was unable to get the necessaryshared
    memory. The error number, errno, is printed in the message.
    Action
    This failure can be caused by a number of reasons but the most likelyis that
    either the amount of shared memory requested would cause an operatingsystem tunable
    to be exceeded (shared memory for the system or shared memory identifiers),or
    another application is using the same key. Determine and correct theproblem.
    Thanks
    Vipul

  • SCCM Get Collection Member Fails "Failed to get members of collection. The SMS Provider reported an error"

    Full Error is:  "Failed to get members of collection '{Collection Name from "Initialize Data"}'.". The SMS Provider reported an error. Details: Generic failure
    Orchestrator 2012 R2 7.2.84.0
    Using Integration Pack 7.2 for System Center 2012 Configuration Manager
    I have a Runbook that is setup to use Get Collection Members from SCCM.  The fields are:
    Collection:  {Collection Name from "Initialize Data"}
    Collection Value Type:  Name
    When I use the Runbook Tester (or when I try to run it myself) I get the error:
    "Failed to get members of collection '{Collection Name from "Initialize Data"}'.". The SMS Provider reported an error. Details: Generic failure
    I have tried using the Collection ID and I get the same error.  From the Collection Property in Get Collection Members I can browse and see all the collections in SCCM, so I know the connection is working.
    An example of a collection I am trying to use is this:  SUM - Patch and Reboot Server - 3rd Sat 1AM .  I have tried using it with quotes and single quotes as well and I get the same error.
    The log file for SCCM looks like this when it fails:
    CSspQueryForObject :: Execute...~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    ~*~*~e:\nts_sccm_release\sms\siteserver\sdk_provider\smsprov\sspobjectquery.cpp(1782) : Failed to parse WQL string SELECT * FROM SMS_Collection WHERE Name = "{Collection Name from "Initialize Data"}"~*~*~  $$<SMS Provider><03-25-2014
    11:34:52.904+300><thread=528 (0x210)>
    ~*~*~Failed to parse WQL string SELECT * FROM SMS_Collection WHERE Name = "{Collection Name from "Initialize Data"}" ~*~*~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    Execute WQL  =SELECT * FROM SMS_Collection WHERE Name = "{Collection Name from "Initialize Data"}"~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    Execute SQL =~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    Removing Handle 1792008112 from async call map~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    ExecQueryAsync: COMPLETE SELECT * FROM SMS_Collection WHERE Name = "{Collection Name from "Initialize Data"}"~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    CExtUserContext::LeaveThread : Releasing IWbemContextPtr=1862502880~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    My SCCM Administrator and I are out of ideas about what else to try.  Anyone have some ideas on what might be causing the issue? 
    MCITP | VCP4 | VCP5

    Hi,
    may I ask if you modified the log? Because of ...
    Execute WQL  =SELECT * FROM SMS_Collection WHERE Name = "{Collection Name from "Initialize Data"}"~  $$<SMS Provider><03-25-2014 11:34:52.904+300><thread=528 (0x210)>
    Have you typed or subscribe the Published Data to the Field Collection in the Activity "Get Collection Member"?
    It must be subscribed!: Click with right mouse key-> Subscribe->Published Data
    Regards,
    Stefan
    www.sc-orchestrator.eu ,
    Blog sc-orchestrator.eu

  • Error:  Failed to get a response after sending the message

    This is another one of those errors I only get some of the time with a specific script. I can't figure a rhyme or reason for it. The full error is:
    Failed to get a response after sending the message: <Message name="PageComplete"><Parameter WindowIndex="0"></Parameter><Parameter PassIfPageAlreadyComplete="false"></Parameter></Message>.
    It's triggering at a WaitForPage() method in the script. The script is executing from the OTM server which is Windows Server 2008 R2 and only runs for OTM. No roles or features (other than SMTP). IE-ESC is off for all users. The script runs with -delayPercentage 1.
    The script runs fine from within OpenScript workbench every time. The script does work when executed from OTM, however it will sometimes fail. When I run the scripts back to back the failure rate is about 50%. Same error every time....
    Any help, insight, and ideas would be greatly appreciated.
    Edited by: Colyn1337 on Mar 14, 2013 11:20 AM

    Also, some time it throw slightly different error like:
    "/web:window[@index='0']/web:document[@index='2']/web:form[@index='1']/web:inp
    ut_text[@id='saw_*' or @index='1']" failed to respond to action: <Message
    name="Click"><Parameter WindowIndex="0"></Parameter><Parameter
    DocumentIndex="2"></Parameter><Parameter index="1"></Parameter><Parameter
    tag="INPUT"></Parameter><Parameter type="text"></Parameter></Message>.
    Please help to triage.

  • Failed to get value of the "Attachments" column after my Edit Form customization in share point 2010

    Hi,
    I am trying to customize the Edit Form in sharepoint 2010 .After my customization when i click on save it is giving below error.
    Failed
    to get value of the "Attachments" column from the "Attachments" field type control.  See details in log. Exception message: Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx) "
    Every thing works fine if i  uncheck the Attachments property of the custom list.But i would need user to allow add attachments to the list.Could you
    help me to resolve  this issue.

    Hi,
    It would be better if you could provide the steps in details about how you customize your Edit Form.
    Anyway, you can take a look at the similar thread below, there is someone stuck with the similar issue before:
    http://social.technet.microsoft.com/Forums/en-US/d60e2a8e-575d-4b3c-959f-2a6a2b1364cf/failed-to-get-value-of-the-attachments-column?forum=sharepointcustomizationlegacy
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • Failed to get the Availability State on server Distriubtionpoint1 for role SMS Distribution Point

    Distriubtionpoint1-- Server share distribution point
    Distriubtionpoint1-- Acting as site system role (DP)
    Distriubtionpoint1--attached under the primary PR0 (Primary server0)
    Primary server0-- reporting to CS0 (central site 0)
    Distriubtionpoint1-- Windows 2008 sp1 r2 standard
    Infrastructure details:-
    =============
    Distriubtionpoint1 located in different domain with one way trust.
    1) Check ping status with FQDN from both domain and it is success.
    2) Check port 135, 445, 80,443 through telnet from both domain and success.
    3) Primary Server0 account is member of the local admin group on Distriubtionpoint1.
    4) Check the PR0-SCCM-DP$ folder NTFS & Share permission
    Share permission
    a) everyone & local admin group has full control
    Security permission
    a) System has full permission
    b) user has read & exec
    4) Local admin full
    Sitestat.log error message:
    ---->: Failed to get the Availability State on server
    Distriubtionpoint1 for role SMS Distribution Point. SMS_SITE_SYSTEM_STATUS_SUMMARIZER 4/22/2014 9:00:15 PM 952 (0x03B8)
    ---->: Now polling via NAL for SiteObject "["Display=\\Distriubtionpoint1\PR0-SCCM-DP$\"]MSWNET:["SMS_SITE=PR0"]\\Distriubtionpoint1\PR0-SCCM-DP$\" SMS_SITE_SYSTEM_STATUS_SUMMARIZER
    4/22/2014 9:00:15 PM 952 (0x03B8)
    for ["Display=\\Distriubtionpoint1\PR0-SCCM-DP$\"]MSWNET:["SMS_SITE=PR0"]\\Distriubtionpoint1\PR0-SCCM-DP$\, no connection account is available SMS_SITE_SYSTEM_STATUS_SUMMARIZER
    4/22/2014 9:00:15 PM 952 (0x03B8)
    ---->: The NAL path ["Display=\\Distriubtionpoint1\PR0-SCCM-DP$\"]MSWNET:["SMS_SITE=PR0"]\\Distriubtionpoint1\PR0-SCCM-DP$\ is currently not accessible. SMS_SITE_SYSTEM_STATUS_SUMMARIZER
    4/22/2014 9:00:18 PM 952 (0x03B8)
    Info>: Unable to get available space for the Site Object ["Display=\\Distriubtionpoint1\PR0-SCCM-DP$\"]MSWNET:["SMS_SITE=PR0"]\\Distriubtionpoint1\PR0-SCCM-DP$\ SMS_SITE_SYSTEM_STATUS_SUMMARIZER
    4/22/2014 9:00:18 PM 952 (0x03B8)
    STATMSG: ID=4701 SEV=I LEV=M SOURCE="SMS Server" COMP="SMS_SITE_SYSTEM_STATUS_SUMMARIZER" SYS=Distriubtionpoint1 SITE=PR0 PID=4112 TID=952 GMTDATE=Wed Apr 23 01:00:18.002
    2014 ISTR0="\\Distriubtionpoint1\PR0-SCCM-DP$" ISTR1="\\Distriubtionpoint1\PR0-SCCM-DP$" ISTR2="2014 04 4 17 04 31 31 000" ISTR3="" ISTR4="" ISTR5="" ISTR6="" ISTR7="" ISTR8=""
    ISTR9="" NUMATTRS=0 SMS_SITE_SYSTEM_STATUS_SUMMARIZER 4/22/2014 9:00:18 PM 952 (0x03B8)
    for ["Display=\\Distriubtionpoint1\PR0-SCCM-DP$\"]MSWNET:["SMS_SITE=PR0"]\\Distriubtionpoint1\PR0-SCCM-DP$\, no connection account is available SMS_SITE_SYSTEM_STATUS_SUMMARIZER
    4/22/2014 9:00:18 PM 952 (0x03B8)
    ---->: GetOperationsManagementData failed to connect to ["Display=\\Distriubtionpoint1\PR0-SCCM-DP$\"]MSWNET:["SMS_SITE=PR0"]\\Distriubtionpoint1\PR0-SCCM-DP$\; error
    = 5. SMS_SITE_SYSTEM_STATUS_SUMMARIZER 4/22/2014 9:00:20 PM 952 (0x03B8)

    I have tried to access the server share DP from the primary server by using my user
    credential. Yes I can able to access the share.
    But when I use the system credential to access the share received an error message as shown in below screenshot
    Hence i have provided the share and ntfs permission administrators, system, everyone,
    primary server account with full control on both tab. but still i am receiving error message.
    :\temp>whoami
    US\prasath
    c:\temp>dir \\PrimaryServer1\SCCM-DP$
    Volume in drive \\PrimaryServer1\SCCM-DP$ is Data
    Volume Serial Number is 22F0-661B
    Directory of \\PrimaryServer1\SCCM-DP$03/17/2014
    03:33 PM <DIR> .03/17/2014 03:33 PM <DIR> .
    04/01/2014 08:04 AM <DIR> SMSPKG
    0 File(s) 0 bytes
    3 Dir(s) 514,625,064,960 bytes free
    ===========================================
    C:\Windows\system32>whoami
    nt authority\system
    C:\Windows\system32>dir
    \\PrimaryServer1\SCCM-DP$
    Access is denied.

  • Failed to get user type

    We are running GroupWise 7.0.3 hp3 webaccess. When a any user logs into webaccess they get this error. Failed to get user type: response was empty
    If they click OK they can still get in and seems to be functioning correctly. Any ideas what would cause that error. I have been looking at various logs but can not seem to find the correct one.

    I have the same error here, it seems cosmetic.
    In our situation we are using M+Archive WebViewer and we only get the error when we replace the GW802HP2
    /var/opt/novell/tomcat5/webapps/gw/WEB-INF/classes/templates/webacc/css/caption.htt with the MA supplied caption.htt
    I would love to know if you have M+Archive as well as it will give me more information to go on trying to fix it.
    Dave

  • "failed to get function context for the data region"

    Hello,
    Is it possible to use {function::} inside a spry:when? It works, but it also shows an error:
    "getValueFromDataSet: Failed to get function context for the paceSetter region."
    excerpt:
    <div spry:choose="spry:choose">
         <div spry:when="'{function::diff4700}' < '0'"><span class="psNegative">{function::diff4700}</span></div>
    the spry:when looks to see if the number returned by function::diff4700 is a negative number, then adds a span class to change it to red. Code works the way I want it to, but can't make the error message go away.
    thank you for any assistance or ideas to make error go away

    Hello,
    Is it possible to use {function::} inside a spry:when? It works, but it also shows an error:
    "getValueFromDataSet: Failed to get function context for the paceSetter region."
    excerpt:
    <div spry:choose="spry:choose">
         <div spry:when="'{function::diff4700}' < '0'"><span class="psNegative">{function::diff4700}</span></div>
    the spry:when looks to see if the number returned by function::diff4700 is a negative number, then adds a span class to change it to red. Code works the way I want it to, but can't make the error message go away.
    thank you for any assistance or ideas to make error go away

  • Failed to get airlineregion context for the spryregion1 region

    Hi ,
    I am new to spry and using Neston json dataset.
    My data is uploding perfectly but i am getting an error like:-- "Failed to get airlineregion context for the spryregion1 region".
    where airlineRegion is one of my parenbt regions.
    Kindly suggest.
    Satish.

    Hi Satish,
    You have not given us much to work on and especially because we do not get this error, I can only assume that you are not doing the right thing.
    FYI I quote what is being suggested to newbies:
                            Announcement:
                            New to Spry, or  the Spry forums?
                                Hide Details
    Before you post a topic please verify
    that:
    You
    are using the latest Spry files
    The latest version of
    the Adobe Spry Framework is 1.6.1, this is the same version that ships
    with Dreamweaver CS4. If you use Dreamweaver CS3 (uses Spry 1.4), its
    wise to upgrade your files to the latest version. This can easily be
    done using the Spry Updater that can be found here.
    Your
    question was not asked before
    Using the search
    functionality on forums you can easily find out if your question has
    been answered before. While you are in search, you can specify the
    search locations. The Spry forum can be found under:
    Adobe
    Labs > Spry Framework for Ajax
    Yoru question can not be
    found in the existing documentation
    Spry provides you
    with allot of documentation this can found on different locations. In
    the sidebar of this forum you can find a small summary of resources that
    will help you on your way.
    If these options do not apply to your question,
    please be so kind to also supply the following information in your topic
    together with a clear description of your issue:
    What
    browsers does this issue occure:
    example: Internet Explorer 8 on
    Window 7 and Firefox 3.0 on Mac OSX
    What version
    of Spry are using:
    example: Spry 1.6.1 ( the version number can
    be found in license header of the .css and .js files )
    What
    is the url of your website or page in issue:
    example: http://www.example.com/page/in/issue.html
    Step
    to reproduce the issue:
    example: Scroll down till you find the
    header "help", there you will see a Spry Accordion. When you click on it
    it will not open or close.
    So users can provide you with a
    better answer, without having to ask you for further details.
    I look forward to helping you.
    Ben

Maybe you are looking for