NotActiveException received in Serialization attempt

I have a Serializable Class, posted below with some edits for brevity. I've set up my writeObject() and readObject() methods according to the documentation, but I'm still receiving the NotActiveException when the methods are executed. Can someone take a look at this and tell me their opinion? readObject() and writeObject() are down at the bottom.
My java version:
C:\>java -version
java version "1.3.0"
Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
**********************BEGIN**********************************
public class DtkAuthorization implements Serializable {
private int level = 0;
private transient char key = (char)100;
public final static int HELPDESK = 1;
public final static int BASELINE = 2;
public final static int ADMIN = 3;
private String encLevel = null;
private transient File levelFile = null;
private static transient DtkAuthorization _instance = null;
// Some other static final variables are here
private DtkAuthorization() {
initialize();
private DtkAuthorization(File file, int level) {
this.levelFile = file;
setLevel(level);
* Return the instance of DtkAuthorization. If _instance does not exist yet,
* create it and return the Object reference.
public static DtkAuthorization getInstance() {
if ((_instance == null) || !(_instance instanceof DtkAuthorization)) {
_instance = new DtkAuthorization();
return _instance;
* Provide a way to get a separate instance of this class for admin
* purposes. This method returns a separate instance of this class
public static DtkAuthorization getNewInstance(File file, int newLevel) {
return new DtkAuthorization(file, newLevel);
* Return <code>level</code>
public int getLevel() {
return level;
* Set <code>level</code> to <code>newLevel</code>. This has the side effect
* of updating the encrypted authorization String.
public void setLevel(int newLevel) {
level = newLevel;
encLevel = xorEncrypt(level, key);
public void saveObject() {
try {
System.out.println("File is " + levelFile);
ObjectOutputStream oos = new ObjectOutputStream(new FileOutputStream(levelFile));
writeObject(oos);
} catch (IOException e) {
String msg = new String("Error writing file:\n" +
levelFile.toString() + "\n" +
"Error: " + e.toString() + "\n");
DtkMessages.displayMessage(null, msg);
private void initialize() {
// Doing some initialization stuff
private String xorEncrypt(int level, char key) {
// Doing some basic encryption stuff--not fancy, not expected
// to withstand decryption attempts
private int xorDecrypt(String s, char key) {
// Doing some basic decryption stuff--not fancy, not expected
// to withstand decryption attempts
private void setDefaults() {
setLevel(1);
//Serialization methods
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException {
ois.defaultReadObject();
private void writeObject(ObjectOutputStream oos) throws IOException {
oos.defaultWriteObject();
**********************END*************************************

Here's the two places the read/write are initiated. These are from two separate classes.
Here's the call that initiates the readObject() method:
public int getAuthorization() {
int level = DtkAuthorization.getInstance().getLevel();
return level;
Here's the call to the saveObject method:
void saveAction() {
DtkJFileChooser djc = new DtkJFileChooser("Choose file:");
int button = djc.showSaveDialog(this);
if (button == DtkJFileChooser.APPROVE_OPTION) {
File file = djc.getSelectedFile();
System.out.println("dialog file is " + file);
DtkAuthorization da = DtkAuthorization.getNewInstance(file, authLevelJComboBox.getSelectedIndex());
da.saveObject();

Similar Messages

  • I have elements 5 on a vista pc. Elements will not open I receive the message "Attempt to access invalid address". Ihave re-installed but still receive the same message. Any ideas please.

    I have elements 5 on a vista pc. Elements will not open I receive the message "Attempt to access invalid address". I have re-installed but still receive the same message. Any ideas please.

    Make sure your user account has full administrative permissions.  Then, at this stage of the game, I would take the following steps:
    - Re-create the Preferences file following these instructions:
    Re-create the Photoshop Elements preferences file to eliminate problems that a damaged preferences file might cause.
    Note: When you use this solution, Photoshop Elements will create a new preferences file and you will lose custom settings associated with your current preferences file. However, the file you rename in step 2 is your original preferences file. If you determine that the preferences file is not causing the problem, then you can restore your custom settings by undoing the instructions below.
    To re-create the Photoshop Elements preferences file:
    Quit Photoshop Elements.
    Locate the Adobe Photoshop Elements preferences files. In Photoshop Elements 5.0, there are two preferences files, one for Organizer and one for Editor:
    Users\[ user ]\AppData\Roaming\Adobe\Photoshop Elements\5.0\Organizer\psa.prf
    Users\[ user ]\AppData\Roaming\Adobe\Photoshop Elements\5.0\Editor\Photoshop Elements 5 Prefs.psp
    Rename the extension for the files (for example, to psa.old).
    Start Photoshop Elements. Photoshop Elements creates a new preferences file.
    I doubt that this will fix your problem, however, it is always the first thing to try.  If it does not, take these steps:
    - Uninstall Photoshop Elements
    - Run the Windows Installer CleanUp Utility (http://support.microsoft.com/kb/290301)
    - Reinstall Elements
    - Reinstall the 5.0.2 patch
    Good luck,
    Juergen

  • Just received a Phishing attempt for Quicktime 2009 How do I report?

    I just received a obvious Phishing attempt email just hovering over the link has nothing to do with apple. And to beat it all I use a Mac and its for the windows version.
    I'd like to send the email to an abuse or spoof@ address to apple. I hate stuff like this.

    If this email came via a MobileMe account, you can report it to [email protected] You can also try [email protected], though I don't know if that is still a valid email address (reports are that it was at one time, but I haven't sent any message there myself).

  • Not receiving iMessages after attempting to link accounts by adding additional email address.

    I tried to link my daughters iMessages (iPod) to my account (iPhone). On my iphone I went to settings/ messages/ send and receive/ add another email. I was told that I could not add her email address and was directed to 'cancel' or 'remove email address'. I chose to remove it and was told that 'you will no longer be able to receive iMessages from (email address) on any device. Foolishly I continued and now she is not receiving her messages. How can I get them back?

    Go to Settings>Messages>Send and Receive and sign out of your ID and then sign in again.

  • "Attempted to use an object that has ceased to exist" error when opening list with grouping and item level permissions

    Hi All,
    I have a list with few items. If I break role inheritance for at least one item and try to open list view page, I receive this error:
    Attempted to use an object that has ceased to exist. (Exception from HRESULT: 0x80030102 (STG_E_REVERTED))
    This occurs only if view has GroupBy in query. If I remove grouping from view, then error disappears. But I need to have grouping in view as well as item level permissions.
    How can I achieve this? Is this some limitation?
    Any help will be appreciated.
    The full stacktrace:
    System.Runtime.InteropServices.COMException: Attempted to use an object that has ceased to exist. (Exception from HRESULT: 0x80030102 (STG_E_REVERTED))    
    at Microsoft.SharePoint.Library.SPRequestInternalClass.GetListContentTypes(String bstrUrl, String bstrListName, ISPDataCallback pXMLCallback)     
    at Microsoft.SharePoint.Library.SPRequest.GetListContentTypes(String bstrUrl, String bstrListName, ISPDataCallback pXMLCallback)
    System.Runtime.InteropServices.COMException: Attempted to use an object that has ceased to exist. (Exception from HRESULT: 0x80030102 (STG_E_REVERTED)),
    StackTrace:    
    at Microsoft.SharePoint.SPContentTypeCollection.FetchCollection(IList`1 exceptions)     
    at Microsoft.SharePoint.SPList.get_ContentTypes()     
    at Microsoft.SharePoint.SPCustomActionElement.QueryForToolbarButtons(SPWeb web, SPList list, SPListItem item, PAGETYPE pgtype)     
    at Microsoft.SharePoint.SPCustomActionElement.AddCustomToolbarButtons(SPWeb web, SPList list, SPListItem item, SPContext renderContext, PAGETYPE pgtype, ToolBar toolbarControl, WebPart webPart, Page page)     
    at Microsoft.SharePoint.WebControls.ViewToolBar.CreateChildControls()     
    at System.Web.UI.Control.EnsureChildControls()     
    at Microsoft.SharePoint.WebControls.TemplateBasedControl.OnLoad(EventArgs e)     
    at System.Web.UI.Control.LoadRecursive()     
    at System.Web.UI.Control.AddedControl(Control control, Int32 index)     
    at Microsoft.SharePoint.WebPartPages.DataFormWebPart.CreateChildControls()     
    at Microsoft.SharePoint.WebPartPages.XsltListViewWebPart.CreateChildControls()     
    at Microsoft.SharePoint.WebPartPages.WebPartMobileAdapter.CreateChildControls()     
    at System.Web.UI.Control.EnsureChildControls()     
    at System.Web.UI.Control.PreRenderRecursiveInternal()     
    at System.Web.UI.Control.PreRenderRecursiveInternal()     
    at System.Web.UI.Control.PreRenderRecursiveInternal()     
    at System.Web.UI.Control.PreRenderRecursiveInternal()     
    at System.Web.UI.Control.PreRenderRecursiveInternal()     
    at System.Web.UI.Control.PreRenderRecursiveInternal()     
    at System.Web.UI.Control.PreRenderRecursiveInternal()     
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     
    at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint)     
    at System.Web.UI.Page.ProcessRequest()     
    at System.Web.UI.Page.ProcessRequest(HttpContext context)     
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()     
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)     
    at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error)     
    at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb)     
    at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context)     
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     
    at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus)     
    at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus)     
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)     
    at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags)

    Does the site use any custom code? Not necessarily the task list but can be anywhere. If yes, ensure that current context SPWeb/SPSite objects are not being disposed off.
    This post is my own opinion and does not necessarily reflect the opinion or view of Slalom.

  • XI Receiver Channel Restarts

    Hi
    Does anyone know how may times an XI Receiver Channel will attempt automatic restarts? Also what are the time periods between each restart?
    I'm testing an Exactly Once In Order scenario and want the receiver system to be offline in order to see how i can get the messages flowing again once it is up (in order).
    Will the message go into a failed state after a certain amount of time?
    Thanks

    Hi Riaz,
    Every receiver channel retrive 3 times & Retry Interval is 5 mins. You can overwrite it
    And Yes. After the specific retrival time message will go into failed state.
    User should have have the SAP_XI_ADMINISTRATOR_J2EE role.
    Thanks,
    Soumen
    Edited by: soumen patra on Jul 29, 2010 1:01 PM

  • Standalone JMS Receiver in 8.2

    Hello all,
    As a proof of concept I am attempting to send a JMS message between two stand-alone Java processes via App server 8.2. It seems that while the sender does seem to send the message successfully (I have verified this by writing an MDB which correctly receives all messages sent by the stand-alone sender), the stand-alone receiver does not receive any messages. I am sure I have made a very simple error but I cannot see it. I would greatly appreciate a second pair of eyes. Code below:
    The Sender
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    import javax.jms.ConnectionFactory;
    import javax.jms.Session;
    import javax.jms.Destination;
    import javax.jms.JMSException;
    import javax.jms.MessageProducer;
    import javax.jms.Message;
    import java.util.Properties;
    public class MessageSender
        public static void main(String[] args)
                throws NamingException, JMSException
            Properties properties = new Properties();
            properties.setProperty("java.naming.factory.initial", "com.sun.enterprise.naming.SerialInitContextFactory");
            Context namingContext = new InitialContext(properties);
            String jmsConnectionFactoryJndiName = "jms/ConnectionFactory";
            String jmsEventDestinationJndiName = "jms/EventTopic";
            ConnectionFactory jmsConnectionFactory = (ConnectionFactory) namingContext.lookup(jmsConnectionFactoryJndiName);
            javax.jms.Connection jmsConnection = jmsConnectionFactory.createConnection();
            Session jmsSession = jmsConnection.createSession(false, Session.AUTO_ACKNOWLEDGE);
            Destination jmsDestination = (Destination) namingContext.lookup(jmsEventDestinationJndiName);
            MessageProducer jmsProducer = jmsSession.createProducer(jmsDestination);
            Message jmsMessage = jmsSession.createTextMessage("Ping");
            System.out.println("About to send message");
            jmsProducer.send(jmsMessage);
            System.out.println("Message sent");
    }The Receiver
    import java.util.Properties;
    import javax.jms.ConnectionFactory;
    import javax.jms.Destination;
    import javax.jms.JMSException;
    import javax.jms.MessageConsumer;
    import javax.jms.Session;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    import javax.naming.NamingException;
    public class MessageReceiver
        public static void main(String[] args)
                throws NamingException, JMSException
            Properties properties = new Properties();
            properties.setProperty("java.naming.factory.initial", "com.sun.enterprise.naming.SerialInitContextFactory");
            Context namingContext = new InitialContext(properties);
            String jmsConnectionFactoryJndiName = "jms/ConnectionFactory";
            String jmsEventDestinationJndiName = "jms/EventTopic";
            ConnectionFactory jmsConnectionFactory = (ConnectionFactory) namingContext.lookup(jmsConnectionFactoryJndiName);
            javax.jms.Connection jmsConnection = jmsConnectionFactory.createConnection();
            Session jmsSession = jmsConnection.createSession(false, Session.AUTO_ACKNOWLEDGE);
            Destination jmsDestination = (Destination) namingContext.lookup(jmsEventDestinationJndiName);
            MessageConsumer messageConsumer = jmsSession.createConsumer(jmsDestination);
            System.out.println("About to start consumer");
            messageConsumer.receive();
            System.out.println("Message Received");
    }Despite many attempts at sending messages, the output never gets beyond "About to start consumer".
    Thanks for any help.

    Also have a problem similar to this. I have found that
    1. JMS between beans on the same server work fine
    2. JMS between standalone client and server work fine if you start the bundled imq as a standalone message server
    3. If you are using the Appserver then standalones cannont connect, but it you are using the imq beans cannot connect.
    so i haven't had time to try this yet but my possible solution is:
    configure the app server to use an external JMS server (its in the admin console some place) make the external server to be an imq running as a standalone, hopefully it can be started on localhost with out any port changes.
    I think rather than bundling the two so both could be used they embeded the imq in the appserver and shielded it from outside comminication

  • Just upgraded iCloud to 4.0.1, and now receive message: "You can't sign in because of a server error".

    Just upgraded iCloud to 4.0.1, and now I'm unable to sign in. The error message I receive after each attempt is "You can't sign in because of a server error". Any suggestions?
    Thanks in advance!

    I also have the same problem. I've tried all fixes listed in other forums and nothing works. Running windows Vista 32 bit. Any working solutions yet? Tried every solution listed for the cmd prompt. Turned off antivirus and spyware. Rebooting about 100 times. Nothing works.

  • An attempt was made to access a socket in a way forbidden by its access permissions

    Hello, I have the same issue with Windows 7 laptop. unable to connect to the network and if I try ipconfig/renew I receive error 
    an attempt was made to access a socket in a way forbidden by its
    access permissions
    Any idea on whats wrong? I have tried netsh winsock reset, uninstalling the wireless adapter from device manager and reinstalling the drivers but no changes. same error. it started after my laptop installed automatic windows update last night.
    Windows built in Restore utility is a crap and doesn't work.. it fails I tried it twice as well.

    Hi,
    Per my knowledge, the symptom could occur if the replication service tries to use the ports that occupied by others, or by a malfunction NIC. Please try the following
    steps:
    1.      
    Restart the windows firewall service
    2.      
    Reboot the problematic machine
    3.      
    Restart the “TCP/IP stack”.  Run CMD as administrator, type “netsh int ip reset resetlog.txt” to reset TCP/IP.
    4.      
    Try to temporarily disable antivirus.
    I wonder if you could provide the model of the laptop and wireless adapter.
    It will help us move more quickly toward a solution if you could collect the information now.
    Hope that helps
    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. ”

  • Idoc Serialization for Transactional data

    Hi All,
    1. Please let me know if you have done IDOC serialization for Transactional data.
    If so please let me know the steps.
    2. How do we use serialiazation using object types. If you have done this please let me know the steps for this too.
    Thanks for your help.
    Srikanth.

    Hi Srikanth,
    Follow the steps below to set up serialization using object types:
    1.       In the SAP menu choose ® IDoc Interface/ALE ® Development ® BAPI ® Serialization ® Serialization Using Business Objects ® Determine Supported Business Objects (transaction BD105). Enter all the business object types relevant for serialization.
    2.       In the SAP menu choose ® IDoc Interface/ALE ® Development ® BAPI ® Serialization ® Serialization Using Business Objects ® Assign Message Type to a Business Object (transaction BD104). Assign the message types relevant for serialization to each business object type.
    3.       In Customizing (IMG) activate the serialized distribution in both the sending and receiving systems:
    ALE Implementation Guide (transaction SALE)
    Modeling and Implementing Business Processes
    Master Data Distribution
    Serialization for Sending and Receiving Data 
    Serialization Using Business Objects
    Execute activities Activate Outbound Business Objects and Activate Inbound Business Objects. Set the Serialization flag for the required business object types.
    If you want to do serialization by message type then
    1. go to BD44 and create a serialization group and assign messages and the serial number to each.
    2. Run the program RBDSER01.
    Award points if useful,
    Aleem.

  • IPod touch 4G cannot send, only receive picture messages

    As the title says.  I am able to send and receive normal messages, am connected to wifi, etc.  The only function that is not working is the ability to SEND picture messages.  I am able to receive them just fine - after yet another picture message failed, I had a friend send me a test picture, and immediately after successfully receiving it, I attempted to resend - failure, again.  It also has been taking up to a couple minutes for the "!" failed notification to appear on the messages.
    Things I have tried already today:
    - "renew lease" on wifi
    - toggled iMessages on and off
    - reset my iPod
    - upgraded to iOS 6.1.3 (from 6.0.1; hadn't seen a need to since I first got the iPod)
    All with no success.  It stopped working sometime between June 5th and June 10th.  It is driving me absolutely MAD and I cannot find any helpful and recent information.  Any help would be greatly appreciated.

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • Receiving "ATError error 3." and "ATError error 16."

    I do not know what these errors represent, but I do know that I only receive them when attempting to add some of my e-books (epub) to the iPad through iTunes (latest version as of this moment; 10.6.0.40). To clarify, adding these particular e-books to the iPad (via iTunes) produces  errors on the iPad (within the iBooks application). Specifically, the messages state:
    "The operation couldn't be completed. (ATError error 3.)"
    After pressing "OK" I sometimes get an additional error: "The operation couldn't be completed. (ATError error 16.)", however this error is a bit more rare, whereas the aforementioned error is ever present.
    Another thing to add is the fact that I have successfully transfered other e-books (also epub) without issue. Again, I do not know the significance of these errors, so I am unable to troubleshoot further. Neither Google nor Apple's Support pages have yielded any information of value. Thank you.
    P.S. -- When attempting to specify a product (when creating this thread) the iPad 3 (a.k.a., "New iPad") is not available for selection.

    Same problem here, but ATError 1 instead. Using iTunes 10.6.1.7 running under Windows 7, 64-bit and an original iPad.
    1: Added new ePub generated by InDesign CS5.5 to iTunes. Connect the iPad, check this new book. When the sync completes, I get ATError 1 on the iPad. A bunch of books are now missing from the library.
    2: I unchecked the new book and re-synced. Now, one of my older enhanced ePubs from InDesign CS5.5 which opened as recently as last week is the one that can not be written (per itunes). Everything else syncs OK.
    3: Unchecked all books in iTunes and re-synced. Samples that I downloaded from iBookStore remain. Everything else goes away.
    4. Sync again with only the new book and it opens fine in iBooks. So - the same book that apparently caused the problem in step 1 works fine now.
    5. Add back the enhanced ePub from step 2. During the sync, I get iTunes error: Could not copy "title" to the iPad because the file could not be written. On the iPad, I had iBook application open. The cover temporarily appeared in the bookshelf, but disappeared and we get the message "The operation couldn't be completed. (ATError error 1.)" Maybe this book is the problem. I can see the book size is 59,368K. This is large, but not as large as The Beatles Yellow Submarine eBook (317.6MB).
    6. I tried adding The Beatles Yellow Submarine back to the iPad, and now *IT* is returning the same error.
    In my case, it seems to be a problem with large files, although certainly way under the published 2GB limit. Other (smaller) books with video and audio (including Liz Castro's books) are syncing OK.

  • Making a customer inactive in R12 Receivables

    I am using R12 and in receivables I am attempting to make customer inactive but cant seem to find how to do it in this form. I can make the account and site inactive but not the customer. I am sure that there is a simple way to do this but the customer form in R12 can be hard to follow at times. Any help would be greatly appreciated. Thanks

    Hi Helios
    Thanks for the info however the note refers to making a customer contact inactive, but does not refer to making the customer itself inactive. Also the AR user guide does not display how to do this either.
    Does anyone else have any idea how to make a customer inactive in the R12 AR customer form?
    Thanks

  • Can not refresh snapshot changes after importing data of master site

    Hello !
    I have two database computer,one as master site,one as snapshot site.Because the error of the hard disk of master computer,I use the exporting data file to recover my database.after importing ,I found I can't refresh the refreshgroup on snapshot,who can tell me why?
    thinks in advance!
    (exp system/manager full=y inctype=complete file='/home/save/backdata/xhsdcomp.dat')
    (imp system/manager inctype=system full=Y file='/home/save/backdata/xhsdcomp.dat'
    imp system/manager inctype=restore full=Y file='/home/save/backdata/xhsdcomp.dat')
    null

    You haven't listed the errors that you're receiving when attempting to refresh your refresh group, but if your snapshots are attempting to fast refresh, I suspect it's because the creation timestamp of the snapshot log on the master site is newer than the creation timestamp of the snapshot. In this case you will need to do a complete refresh of the snapshot (or drop and recreate the snapshot) before you will be able to fash refresh it again.
    If this is not the case, please post the errors you are receiving when you attempt to refresh the refresh group.
    HTH,
    -- Anita
    Oracle Support Services
    null

  • VPN connection to WRVS4400N using a Samsung Galaxy tablet

    I have a Samsung Galaxy 10.1 tablet and have bee trying to connect to my WRVS4400N router with VPN through the "on board" software as well as with the Any Connect software from Cisco.  I have no issues at the moment using Quick VPN from my laptop.
    When using the Any Connect software I receive the following messages:
    Security warning: untrusted certificate
    AnyConnect cannot verify the identity of <IP address>.  Would you like to continue anyway?
    - Certificate does not match the server name.
    - Certificate is from an untrusted source.
    - Certificate is not identified for this purpose
    [Accept]  [Details]  [Cancel]
    If I select accept, the following error is received:
    "Error:  Connection attempt has failed due to server communication errors.  Please retry the connection".
    I have tried setting up the on board VPN with the Samsug Galaxy but every attempt has resulted in a time-out of the connection.
    Any assistance would be greatly appreciated.  Thanks.

    Hi Blair,
    The WRVS4400N only works with the QVPN software. The only small business router at this current time works with the Cisco any connect vpn is the SA500 series routers.
    I hope this helps.....
    Thanks,
    Tori Woods
    Cisco Support Engineer
    CCNA, CCNA Wireless

Maybe you are looking for

  • Adobe AIR apps won't open

    I have all of the sudden had issues with all of my AIR applications. I recently tried installing 2 new ones and the icon will bounce in my dock for a few seconds before disappearing as if it were quitting before anything happened. Installations of th

  • Agent Determination Rule Not Working

    I have created an new agent determination rule in PFAC. The category I used is "Agent Determination: Responsibilities". I have also selected the "Terminate if Rule Resolution has no Result" option. The container has one element in it which is NOT man

  • Cropping workflow?

    Any suggestions for isolating content in a document, so that it can be saved by itself? Sure, there is crop, but that cuts the whole image down, and if you accidentally save the document.... then you may have lost a lot of work. Sort of dangerous. I

  • Extract Pages Action for PDFs

    Has anyone used the Extract Odd/Even Pages action for PDFs? I'm trying to use it to extract pages from a PDF and save as separate files. When I use it the action spins for a moment, says it succeeded, but I don't get any new files.

  • Upgrade to CS4 from CS2 - worth it?

    Hi, Good afternoon, I wonder if anybody can advise me on the core difference between Creative Suite 2 (Premium) and upgrading to the CS4 version of the software. Is there signicant difference? I am now on Windows 7. We are a small charity and use InD