EA10 Missing session string - Proxying into another account

Hi there.
We are getting this error on Webacess 2012 SP2 when proxying into another account.
Here are the versions of agents:
novell-groupwise-webaccess-12.0.2-108211
novell-groupwise-gwha-12.0.2-108211
novell-groupwise-gwdva-12.0.2-108211
novell-groupwise-agents-12.0.2-108211
Can't find any logic on this error because we have users using diferent browsers without error and users using same browser with error.
This is reported as bug fixed in GW2012 SP2 as BUG 770879 but we are on latests version and getting the error.
Any idea on this?

Originally Posted by laurabuckley
Hi,
Are you using anything like Access Manager?
Are you using browsers in a language other than English?
Who told you that Bug 770879 is resolved?
Let us know.
Cheers,
Thank you for the reply.
It came to our attention that the error only occurred in Portuguese browsers (we use english and portuguese).
In fact, nobody told me that Bug 770879 is resolved, i just saw it in a Bug Fix List https://www.novell.com/documentation...ugfixlist.html
Cheers.

Similar Messages

  • Proxy access: Missing session string

    Hello:
    I am having some trouble trying to configure proxy access for all users. When I try to add a user this message appears:
    "[EA10] Missing session string"
    Notice that I updated the webaccess to sp1 but the poa still remains in the 2012 without sp1. Could be that the reason?
    Version of webaccess: novell-groupwise-webaccess-12.0.1-103731
    Version of agents: novell-groupwise-agents-12.0.0-98586
    Best Regards,

    Originally Posted by randolf_carter
    Hello:
    I am having some trouble trying to configure proxy access for all users. When I try to add a user this message appears:
    "[EA10] Missing session string"
    Notice that I updated the webaccess to sp1 but the poa still remains in the 2012 without sp1. Could be that the reason?
    Version of webaccess: novell-groupwise-webaccess-12.0.1-103731
    Version of agents: novell-groupwise-agents-12.0.0-98586
    Best Regards,
    Yes, you need the POA to also be at SP1.
    At least for us, that was the only resolution (regardless of whether "all user" proxy access was given or not. NOBODY could proxy anywhere with the released GW2012 code, once WebAccess was at SP1 level).

  • When i Log into instagram it say my account  is disable but when i log in on another iphone my instagram account log's in. when i try logging into another account it continue to say disable. Why cant i log into instagram or make another one on my iphone?

    When i Log into instagram it say my account  is disable but when i log in on another iphone my instagram account log's in. When i try logging into another account on my phone it continue to say disable. i also tried to make a new instagram on my phone but it wont let me. i deleted the app over and over again but it still wont let me log into any instagram account. Why cant i log into instagram or make another one on my iphone?
    Is is=t possable to have your phone banned from a app forever???
    HELP !!

    I just asked the same thing and did some research. Some people have said  that the UDID code is like banned from instagram, but your account isn't. I'm able to use it on my phone but not on my iPod.

  • When I send an email the rely comes into another account in my apple email.  How do I set it so that my email comes to the correct address?

    When I send an email the rely comes into another account in my apple email.  How do I set it so that my email comes to the correct address?

    Hi Sunny C,
    Welcome to the Support Communities!  The "From" field should be showing by default, but you can check or change your settings for Mail with the instructions below:
    Mail (Yosemite): Set Mail preferences
    http://support.apple.com/kb/PH19178
    In the Composing pane, you can set the email account that you want to send new messages from.
    Also, check the View command on the Menu bar.  View > Message Attributes should have a checkmark beside the "From" field.
    Cheers,
    Judy

  • How to ensure I don't lose songs on iPhone (Match music) when logging into another account

    Hi all,
    I hope I get some answers here, I'm struggling with an issue I've been having.
    I have my songs set up through iTunes match, which is fine.
    However the issue I have had is when I sign OUT of my account and into another (to update an app or such) I've had issues where the songs that were previously on my phone get deleted.
    While I sort of understand that, at the same time when I'm just signing out for a few minutes, to lose that and have to download multiple gigs of music AGAIN and AGAIN is beyond irritating. I know the easy answer Is to just not sign out, but I want to have that flexibility if I need to.
    Is there anything I can do here?  Any help would be greatly appreciated.
    Nick

    Oka, another question I have then, which is frustrating me beyond belief, is why, if is Tay logged into my match account, songs are oftentimes deleted from my phone?
    I have a playlist of "new" music that has about 600 songs in it. That playlist will randomly dump hundreds of songs, leaving them to show available for download from match, but they are removed without me having deleted them.
    Now, 2 things happen on my main PC where I set up match. The first is that randomly, with little fanfare, match will just shut itself off. No explanation, just stops.
    The next is that I have multiple iTunes accounts and in order to update the apps in those accounts, I have to sign into another account, update, and then sign back in. Each time I have to turn match back on, which I do. It takes all of 2 minutes and according to a less than scientific test I just did, it doesn't seem to cause song deletion from my phone by doing this.
    I'm getting very frustrated that a service I pay for, while being somewhat convenient from time to time, is causing nothing but problem upon problem. I can't be the only person juggling multiple iTunes accounts on each device, can I? =\

  • Parsing String Oject into another JFrame page

    Hi,
    Can I know if it is possible to parse a string object into another JFrame page that I had created.
    Say i created a string object called obj, i want to pass the value of the string object "obj" to another JFrame page. How can it be done?
    String obj= new String();
              obj=table.getValueAt(table.getSelectedRow(),table.getSelectedColumn()).toString();Next, can i know how tocheck if a connection exist?
    Like i wann connect to a FTP server and i would like to check in the first place if the connection exist/available.
    appreciate all help.
    thanks.

    Essentially the same problem as solved here: http://forum.java.sun.com/thread.jspa?threadID=698985
    You should keep in mind that there is a difference between static and non-static thingies...
    * what goes into the class and what goes into the objects?
    ...and you should also keep in mind that Java is case sensitive and Java programmers (well, almost everyone) follow the same naming conventions :
    * use Capital letter for classes
    * finals all capital (with undercores denoting words)
    * everything else have lowercase letter
    * capitalize first character whenever "a new word" comes along
    You will keep bashing your head against a wall with minor problems until you figure it out. A "Java naming-ized" version of your (presumed) code might act as some kind of starting point?
    public class Search extends JFrame {
      //instance/object thingies -----------------
      private String aString;            // a instance field (unique for this instance)
      public Search(String anArgument) { // the Search constructor, with an argument
        aString = anArgument;          //do something with the argument ...
      //class thingies -----------------
      public static String str= "Some string";  // a static field (shared by all instances)
      public static void main(String[] args) {  // the main method is static...
        Search frame = new Search(str);      // create the Search object/frame, passing a parameter
        frame.setVisible(true);     
    }

  • I am sending an email from one account on iphone 4s but the replies are coming into another account on my phone

    I have had an iphone 4s for about a year and have 4 email accounts that come in on it: verizon, gmail, my work, and icloud.  Periodically, I send an email from one account, it shows the message as sent from that account in my sent mail, but the recipient receives it from the gmail account and therefore replies to the gmail.  Has anyone had this happen?  It is almost as if my messages are bouncing into gmail when I send them, although on my phone it shows as having been sent from another account.  I have not had this happen on my computer where I have all of these emails coming in as well.  I thought perhaps it was me not being careful about which account I was sending from when using my phone, but the mail I sent this morning I was very careful to make sure was from verizon, the sent mail on my phone shows it was sent from verizon, and the reply came in on gmail.  Gmail isn't even the default email address- verizon is! My iphone is using version 6.1.3. Does anyone have any ideas? This is a major problem for me so I appreciate any ideas!  Thank you!!!

    I am not sure whether this is related, but I had a problem with Gmail where each time I sent and email via my iPhone it would bounce back in my Gmail account as unread. You migh want to check this Google article explaining why this happens and how to avoid it:
    https://support.google.com/mail/answer/1710338?ctx=gmail&hl=en-GB&authuser=0

  • Missing session string error removeItemsRequest

    I'm logged into the POA and there is a session string but I'm getting this error when I try to use the removeItemsRequest in PHP. All of the getItemRequest and getItemAttachments work fine. Any help would be appreciated. Thanks

    Nevermind, there is a bug in the GroupwiseService.php file in the way it makes the soap call. I pretty much used the way the getItemRequest soap call is made (I think I had this same issue with getAttachment..) and it now works.

  • HT204053 Money in one apple account, how do i move that money into another account that i use most of the time?

    I have money in an account that i don't use any more and i just simply want to move it into my other account that has all my data on it anyways. I've tried to use the "Send a Gift" option as well, but when i do this it just keeps asking for my password, which i enter correctly, and verifies that it was entered correctly, it just keeps on asking. Anything would help
    Thanks!

    Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

  • App store asking me to sign into another account?

    Hello,
    I have a lot of apps on my MacBook Pro that were downloaded with an old account ID. When I try and update those, it asks me to sign out of my current ID, and back into the old one to update.
    However, when I log into the other ID and try to download, that doesn't work either.
    It says "Please sign into the other ID to download", yet I am currently in that one!
    Can anyone help? Thanks!

    Thanks Illaass. You know I couldn't think of any time that my wife purchased an app on my iPod, but then it occurred to me that she bought the device for me as a gift. iBooks was loaded on it at the time. Maybe somehow in those early transactions it became an app in her account -- or something. Anyway, I simply used her password (which she kindly gave me) to update.
    Thanks,
    Mike

  • How to copy one account preferences into another account on the same mac?

    I would like to open a new account (on the same mac) but would like to copy some preferences including software from the existing account. How can I do that?
    Thanks

    To copy files from Account A to Account B:
    1. Log in as A.
    2. Find the files you wish to copy.
    3. Move them to /Users/A/Public. Don't move your actual Documents, Pictures, Library etc folders. Just move their contents.
    4. Log in as B.
    5. Navigate with Finder to /Users/A/Public.
    6. Drag the files to the desktop to make new copies of them.
    7. Put the files away in the appropriate places in B's home folder.
    8. Log back in as A and move the files in /Users/A/Public back to their original locations.

  • Is it possible to get my iTunes money out of one account and put it into another account?

    So I bought a Macbook Pro recently and a lady, who was working at the Apple Store, was putting in a Back to School giftcard for $100 in my account but I forgot the answers to my security questions. Since the lady already have put that money in that account, I was wondering if I make a new account and take the money out of my old account and I can put it my new account. Will it be possible or not? Please answer my question

    janelle27 wrote:
    ... I was wondering if I make a new account and take the money out of my old account and I can put it my new account. Will it be possible or not? Please answer my question
    This is not possible...

  • Transferring purchases out of my iTunes account and into new accounts for my kids

    I have had an itunes account for a number of years.  My children (when younger) purchased music, games, videos, etc through this account for the ipods, itouches, etc.  We now have iphones for each teen and would like to give them their own accounts so that only their purchases appear on their phones, ipods, etc and only mine appear on my phone, ipad, etc.  I would set up 2 new accounts and transfer the items directly from mine into the appropriate child's account.  How do I accomoplish this?  Since we own the purchase, I dont see any reason why we should not be able to move that purchase into another account (not copying it, but more like cutting it out of the existing account and moving it into the new one).  If we are not able to do this, we are talking about hundreds of dollars in re-purchases.

    You canot transfer content to another account.
    Just authorize their computers for your account so they can sycn the apps to their devices.

  • Duplicate all articles into another folio

    Right now you can only import articles one at a time from one folio into another folio. This is tedious on 100 article folios.
    There are a few scenarios where it would be helpful to be able to one-click duplicate a folio into another account, or have the ability to select all articles when doing the "add article":
    Building a different version (ie International version) of said folio in a different account. (We do this every month, with renditions, so that's 2x the pain.)
    For troubleshooting purposes. When a production folio exhibits a bug, I need to copy that folio into a sandbox account where it won't be edited/updated so that I can provide TS reps with a folio exhibiting the behavior.

    http://help.adobe.com/en_US/digitalpubsuite/using/WS9293e1fb3b977c5c-6e66370112f982025bb-7 fff.html#WS67cb9e293e2f1f60793ca036128c63d70f5-8000
    When you save the files, include _v and _h suffixes in the filenames if you want to import articles. For example add an _v suffix for the vertical (portrait) document, such as article_v.indd.

  • How do I move all my files from one User Profile (account) into another? I needed to create a new account and want all of my files accessible in the new one.

    How do I move all my files from one User Profile (account) into another?
    I needed to create a new account and want all of my files accessible in the new one.

    ok, what you're learning right now is 101 unix, which is good. Unix is a good thing
    now: the way unix works, and macos (which uses unix underneath) the files and folders work like a hierarchy.
    the start of that tree is /
    so, if you were to do:
    cd /
    (cd means change directory)
    it will bring you at the highest branch of the file system.
    cd /Users
    will bring you to where all the users are.
    to see whats in /Users you can use your friend ls command
    ls means list files/directories
    so:
    cd /Users
    ls -la
    (the -la here means show all (even hidden) and long format (very verbose))  this flag is very optional.
    you will see
    fred
    user2
    for example.
    if you want to see the desktop of user2 you would change directory to it then list the files.
    for example:
    cd /Users/user2/Desktop
    Note that the files and directory are case sensitive, so, desktop is NOT the same as Desktop, or DESKTOP
    ls -la
    you should then be able to see everything in users2 desktop
    you could have done as well the same thing in smaller steps, for example:
    cd /
    cd Users
    cd user2
    cd Desktop
    this is the equivalent of cd /Users/user2/Desktop
    So, for your file, i don't know where it was, but know that if you log in as user2, it will directly put you in
    /Users/user2
    which most likely the file you had created from the other user was in /Users/user1
    if you copied all the files from /Users/original_user to /Users/secondUser
    most likely yes, all your mail, bookmarks etc would be copied over.
    so in your case.
    sudo chown -R seconduser:staff /Users/secondUser
    should work
    Remember that if you start a path with the character /  it means start from the root of the file system, at the highest top you can ever get.
    so
    cd /Users/fred
    is not the same as
    cd Users/fred
    unless you were in / already
    i know it may be confusing at first but it's actually very logical if you play with it.
    to simplify, think of it that / means C:\  on windows
    you can't go any higher than C:\  (in a way)
    if you're unsure which directory you're currently in, you can always type:
    pwd
    it will tell you where you are.
    for example:
    cd /
    pwd
    this shows  /
    cd Users
    pwd
    this now shows /Users
    cd /System/Library
    pwd will show /System/Library
    cd /
    cd /Users
    cd fred
    cd Library
    pwd will show /Users/fred/Library
    unix can look very scary but it's actually vital and very necessary to do tasks sometimes that would take for ever to do via the windows. This is good learning.
    so for the myfile you had created, i can't tell you where it is, at the time you created, if you can do a pwd command you'll know the path,
    ls -la  (this shows all the files where you are)
    if you see myfile in the list
    do a pwd
    whatever is return, the real location of the file would be:
    whatever pwd returned / myfile
    I hope that makes sense.

Maybe you are looking for

  • Unique id  when form is submitted

    I have a form that submits data to an access 2007 database. I am using formfields: Is there a way to create a unique id that gets entered into the database and display it as an registration/confirmation number on the action page? _ THANK YOU <cfinser

  • How to fit image file to exact table size on import?

    I am inserting image files (gif and jpeg) into spots in a pre-existing table.  When I do so the image file comes in way oversized and I have to resize the image to my original table block size.  Is there a method of inserting an image and specifying

  • Documents Management

    In transaction CV00 we can manage documents for bussines, I see that when I create a document I can assign an output message to it. I would like to merge a document in a purchase order, i.e. when we print a purchase order we want to print a document

  • Print PDF - Add image to page header

    Using APEX 3.2.1.00 Oracle 11g FOP printing support I need to include a logo on my PDF reports. I know I can put text on the heading of the report but how do I add a logo or image to the report header? Thank you in advance!

  • Blackberry Bridge - Calender, Files

    Hello, I got an actuell Playbook and a Bold9700 with OS6. I can see my calender and write entries, but there is no way to make them private. Another problem is, that I can't view Photos, Videos or listen to the Music from the Bold on my PB. Greets.