Reflection and enum types: help needed

Hello, I just released a new version of my OpenSource project (http://sourceforge.net/projects/jdbcmanager).
The application needs JRE 1.5 just only for printing tables (JTable.getPrintable(...) method).
I have had a lot of complains from users due to requiring 1.5
So I'm trying to make it compatible with 1.4.2 and also provide JTable printing functionality to 1.5 users.
I can check if JRE in use is 1.5 and then invoke getPrintable(...) method via reflection, but I do not find a way to pass its first argument (an enum) via reflection, because in 1.4.x enum type does not exist, and without solving this the compiler reports a compilation error.
Here is the code I'm using:String sJavaVer = System.getProperty( "java.version" );
       if( sJavaVer.charAt( 0 ) == '1' && sJavaVer.charAt( 2 ) < '5' )
           MessageFormat mfHeader = new MessageFormat( sHeader );
           MessageFormat mfFooter = new MessageFormat( sFooter );
           Printable     p        = getPrintable( PrintMode.FIT_WIDTH, mfHeader, mfFooter );
           PrintShop     ps       = new PrintShop( p );
           if( bPreview )
               ps.showPreview( "Preview: "+ sHeader, getPreferredScrollableViewportSize() );
           else
               ps.print( bPageDialog );
       else
           App.showMessage( "Warning", "You need JRE 1.5.0 or above to be able to print tables." );
       }Obviously this can't compile under 1.4.x
Every suggestion is more than welcome.

I haven't worked with 1.5 enums, but my best guess is that you'd have to get instances of the enums via reflection as well.
As an incidental suggestion: rather than doing a text search on the "java.version" property, you should simply try to retrieve the "getPrintable" method via reflection. The "if" condition then checks to see if you got anything back.

Similar Messages

  • Demoting a DC and Group policy, help needed.

    Hi all,
    so we have 3 domain controllers, lets say dc1,dc2 and dc3. We have the 3rd line assistance from another company, they have advised the following.... 
    SO the stages will be
    1) Can you please go through all the GPO's in DC3 and consolidate what you need and what you do not need, you need to extensively cross reference this with DC1 and DC2, this is something you have to do. As I will not know what you need and what you do
    not. You can do this by logging into each domain controller and opening up the settings of each GPO and cross referencing.
    2) Once the above is done, we will consolidate the GPO's to a central repository in your domain
    3) Backup Sysvol directory and Netlogon folder in DC3
    3) Proceed to dcpromo DC3 out of the domain
    4) Test connectivity if clients to the AD
    5) Add the additional Server options
    6) All of the above can be done during office hours.
    it was my understanding (perhaps wrongly) that the group policies were not on the individual Domain Controllers but in Sysvol and as such replicated anyway?
    any advice would be very much appreciated.

    > I am being told that our Group policies are different across different
    > Domain Controllers and to my knowledge that's impossible as we have
    > discussed it should be in the replicated Sysvol.
    Ok, that's a common problem. Fix it and you will be fine:
    http//support.microsoft.com/kb/2218556 (for DFS-R Replication of Sysvol)
    http://support.microsoft.com/kb/315457 (for NTFRS replication)
    > I'm a bit lost on the central repository aspect but prior to saying it
    > makes no sense I just wanted to check my understanding, especially with
    > an MVP!
    I agree. Talking of a "central repository" fro group policy doesn't make
    sense, because group policy from the very beginning lives in AD and
    sysvol, which both are kind of "central repository". Seems they don't
    really know what they're talking about :)
    Martin
    Mal ein
    GUTES Buch über GPOs lesen?
    NO THEY ARE NOT EVIL, if you know what you are doing:
    Good or bad GPOs?
    And if IT bothers me - coke bottle design refreshment :))

  • All reflection and no type safety makes Jack a dull boy...

    There has got to be a way of refactoring which takes reflection into account, right? As my project grows larger it's getting crazy trying to remember what needs to be changed when I modify a method name, etc. What are people doing about this? I have code that looks like this:
    UpdaterProcessor canUP = new UpdaterProcessor("setCancelSentTime", new Date().getTime() ) ;
    Filter f1 = new EqualsFilter("getStatus", OrderStatus.NEW); // only req cxl on NEWs
    ConditionalProcessor cp1 = new ConditionalProcessor(f1, canUP);
    Order.cache.invoke(o.getID(), cp1);Are people just coding stuff like this by extending abstract classes to avoid reflection or something?
    Thanks,
    Andrew

    There is no type-safe way around this, if you don't want to register every one of the type-safe processor or filter or whatever classes you have to send through the network in the POF configuration (which IS the future).
    The safest way to use these processors is to create constants for every method you want to access and use only those constants as extractor names. Alternatively you can create enums instead of constants, and create your extractors instances with the enums passed instead of the method names, and put in a checkstyle or pmd rule which ensures that you don't directly instantiate filters or extractors or etc. with the method names.
    Best regards,
    Robert

  • Question about java reflection and "int" type

    hi, using reflections I should invoke a Method (meth3) that have as parameter an INT type (not integer). I've tryed with this code:
                        int num = 3;
                        Class[] vettClax = {int.class};
                        Object[] vettParam = {num};
                        Method meth3 = temp.getMethod("meth3", vettClax);
                        meth.invoke(o, vettParam);My problem is that the int value is catched as an Integer value and reflection doesn't found a method that accept an INTEGER as parameter, who can help me?

    Works fine when I try it.
    public class t
        public static void main(String args[])
         throws Exception
         Class temp = t.class;
         t o = new t();
         int num = 3;
         Class[] vettClax = {int.class};
         Object[] vettParam = {num};
         Method meth = temp.getMethod("meth3", vettClax);
         meth.invoke(o, vettParam);
        public void meth3(int n)
         System.out.println("hello " + n);
    }Is your meth3() public?

  • Middleware and Adapter Object help needed

    Hi all,
    We are trying to replicate business agreements from CRM to contract accounts in our R/3 IS-U system. We've followed the various cookbooks and guidelines but have so far been unsuccessful. For object BUAG_MAIN, is an adapter object needed? If so, we are unable to find one in R3AC1.
    If we check the BDoc message, we are getting two Technical errors after creating the business agreement:
    1. "Outbound call for BDoc type BUAG_MAIN to adapter module CRM_UPLOAD_TO_OLTP failed."
    2. "Service that caused the error: SMW3_OUTBOUNDADP_CALLADAPTERS"
    Any ideas? Points will be awarded for helpful responses. Thanks in advance.
    Message was edited by:
            John S

    So in R3AC1 there is a button to show inactive adapter objects. Hitting this showed BUAG_MAIN. After that, we opened BUAG_MAIN and activated the object. This resulted in a couple of changes that we clicked through. We then were able to do an initial load of the business agreements and replications of newly created ones happened thereafter.

  • MAC Mini Performance and display quality help needed!

    I am new to the mac, having used pcs for what feels like hundreds of years.
    I am enjoying the experience, but my MAC mini is so slow. Its a 2014 i5 2.6 Ghz with 8GB of RAM.
    For example starting safari takes 20+ seconds from clicking the icon to being able to type a web address.
    Also the display is not brilliant the text is blurred. I am using a LG HD Monitor running at 1920 x 1080 and 60 Hz.
    I have a Dell PC with very similar specs connected to the same monitor and it does not suffer blurred display.
    Thanks for your help

    EtreCheck version: 2.2 (132)
    Report generated 5/4/15, 11:26 AM
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        Mac mini (Late 2014) (Technical Specifications)
        Mac mini - model: Macmini7,1
        1 2.6 GHz Intel Core i5 CPU: 2-core
        8 GB RAM Not upgradeable
            BANK 0/DIMM0
                4 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                4 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n/ac
    Video Information: ℹ️
        Intel Iris
            IPS237 1920 x 1080
    System Software: ℹ️
        OS X 10.10.3 (14D136) - Time since boot: 0:9:48
    Disk Information: ℹ️
        APPLE HDD HTS541010A9E662 disk0 : (1 TB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 998.98 GB (641.30 GB free)
                Core Storage: disk0s2 999.35 GB Online
    USB Information: ℹ️
        Apple, Inc. IR Receiver
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Microsoft Microsoft® LifeCam Cinema(TM)
        Hercules Rocksmith USB Guitar Adapter
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Anywhere
    Kernel Extensions: ℹ️
            /Library/Application Support/VirtualBox
        [loaded]    org.virtualbox.kext.VBoxDrv (4.3.26) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxNetAdp (4.3.26) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxNetFlt (4.3.26) [Click for support]
        [loaded]    org.virtualbox.kext.VBoxUSB (4.3.26) [Click for support]
            /Library/Extensions
        [loaded]    com.sophos.kext.sav (9.2.50 - SDK 10.8) [Click for support]
        [loaded]    com.sophos.nke.swi (9.2.50 - SDK 10.8) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.motorola-mobility.driver.MotMobileUSB (1.2.2 - SDK 10.5) [Click for support]
            /System/Library/Extensions/MotMobileUSB.kext/Contents/PlugIns
        [not loaded]    com.motorola-mobility.driver.MotMobileMS (1.0.0 - SDK 10.5) [Click for support]
        [not loaded]    com.motorola-mobility.driver.MotMobileMTP (1.2.2 - SDK 10.5) [Click for support]
        [not loaded]    com.motorola-mobility.driver.MotMobileUSBLAN (1.2.2 - SDK 10.5) [Click for support]
        [not loaded]    com.motorola-mobility.driver.MotMobileUSBLANMerge (1.2.2 - SDK 10.5) [Click for support]
        [not loaded]    com.motorola-mobility.driver.MotMobileUSBSwch (1.2.2 - SDK 10.5) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.mokafive.m5tray.plist [Click for support]
        [failed]    com.motorola.MDMUpdater.plist [Click for support] [Click for details]
        [running]    com.motorola.motohelper.plist [Click for support]
        [loaded]    com.motorola.motohelperUpdater.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.sophos.uiserver.plist [Click for support]
        [failed]    net.juniper.pulsetray.plist [Click for support] [Click for details]
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.ea.origin.ESHelper.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
        [running]    com.motorola-mobility.mmcfgd.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.sophos.common.servicemanager.plist [Click for support]
        [loaded]    jp.co.canon.IJNetworkToolHelper.plist [Click for support]
        [failed]    net.juniper.AccessService.plist [Click for support]
        [not loaded]    net.juniper.UninstallPulse.plist [Click for support]
        [not loaded]    org.virtualbox.startup.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [failed]    com.lastpass.LastPassHelper.plist [Click for support] [Click for details]
        [running]    com.spotify.webhelper.plist [Click for support]
        [loaded]    com.valvesoftware.steamclean.plist [Click for support]
        [not loaded]    org.virtualbox.vboxwebsrv.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Application  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
        Dropbox    Application  (/Applications/Dropbox.app)
        Google Chrome    Application  (/Applications/Google Chrome.app)
        Canon IJ Network Scanner Selector2    Application Hidden (/Library/Printers/Canon/IJScanner/Utilities/Canon IJ Network Scanner Selector2.app)
        Skype    Application Hidden (/Applications/Skype.app)
    Internet Plug-ins: ℹ️
        FlashPlayer-10.6: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        EPPEX Plugin: Version: 10.0 [Click for support]
        Flash Player: Version: 17.0.0.169 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        QuickTime Plugin: Version: 7.7.3
        SharePointBrowserPlugin: Version: 14.4.9 - SDK 10.6 [Click for support]
        nplastpass: Version: 3.1.89 - SDK 10.10 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        MeetingJoinPlugin: Version: Unknown - SDK 10.6 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 40 Check version
    Safari Extensions: ℹ️
        Evernote Web Clipper
        PasswordBox
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        FUSE for OS X (OSXFUSE)  [Click for support]
        Java  [Click for support]
        MusicManager  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
             4%    WindowServer
             1%    fontd
             1%    loginwindow
             1%    Google Chrome Helper(13)
             0%    taskgated
    Top Processes by Memory: ℹ️
        909 MB    Google Chrome Helper(13)
        674 MB    kernel_task
        467 MB    mdworker(12)
        401 MB    com.apple.WebKit.WebContent(5)
        180 MB    SophosScanD
    Virtual Memory Information: ℹ️
        1.24 GB    Free RAM
        6.76 GB    Used RAM
        0 B    Swap Used
    Diagnostics Information: ℹ️
        May 4, 2015, 10:08:53 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/Google Chrome_2015-05-04-100853_[redacted].crash
        May 2, 2015, 07:47:11 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/EvernoteHelper_2015-05-02-0747 11_[redacted].crash
        May 4, 2015, 11:13:54 AM    Self test - passed
        May 4, 2015, 10:02:56 AM    /Library/Logs/DiagnosticReports/Microsoft AutoUpdate_2015-05-04-100256_[redacted].cpu_resource.diag [Click for details]
        May 2, 2015, 09:13:07 AM    /Library/Logs/DiagnosticReports/Microsoft AutoUpdate_2015-05-02-091307_[redacted].cpu_resource.diag [Click for details]

  • Posting a Question and iPod mini help needed

    It's so frustrating to use this support site. I can't seem to find the right information.
    I need help. My iPod mini just suddenly conked out on me. Now it flashes the apple then an icon with a battery and an exclamation point inside a triangle. I tried to search for an answer in this site but all I got was a suggestion to reset it. I tried re-setting it and IT DIDN'T WORK!
    What do I do now? I really want to get this fixed as soon as possible. I happen to love my iPod. Please, please, someone help!

    Welcome to Apple Discussions, serangel.
    Here is the support site for using iPod mini.
    There are plenty of users there who will be happy to help.
    Cheers!

  • GROUP BY and ORDER BY help needed

    I have got an sql query where I have the need to pull out the latest copy of duplicate info, but what is happening is that the first instance is being displayed. The query I have is this:
    SELECT *
    FROM tbl_maincontenttext
    WHERE fld_menusection = 3
    GROUP BY fld_webpage
    ORDER BY fld_timedate DESC
    Basically, I have content that is listed under menu section 3, but within that I will have several copies of content that will relate to a specific webpage (eg: about us). What is currently happening is that GROUP BY is obviously grouping the similarly named 'about us', but it is pulling the first record it comes across out of the database rather than the latest updated record.
    As you can see, I am trying to get the query to order by fld_timedate which is a CURRENT_TIMESTAMP, but it's not working!
    I'm hoping that there is some sort of SQL that I am unaware of that will help me group by and display the latest update/content.
    Thanks.
    Mat

    It would help if you could show us the table definition. Your SQL statement is ambigous because you are selecting all table columns, yet only including one column in the group by clause.  A SQL statement must contain all selected columns that are not aggregates. Most DBMS will return an error for this statement. Others that don't return an error will return unexpected results.

  • Validation and Substitutions - Urgent Help needed

    Hello everyone,
    I need your help about this. This is the first time i am going to create a validation for document no. line items.
    The scenario is this:
    1. I need to check if the FI document that is to be posted contains line items where BSEG-LOKKT falls within the range of “0099990000-0099999999”. For each matching line item, I need to check if the credit line items balances with the debit line items. If TRUE then the validation will EXIT succesfully.
    2. If an FI document contains line items where BSEG-LOKKT falls within the range of “0099990000-0099999999”, but the sum of the debit line items and the credit line items is not equal to zero, validation will prevent thre user from posting the document. Error message will be raised.
    3. If FI document document does not contain line items with BSEG-LOKKT ranging from “0099990000-0099999999”, validation will exit successfully because there are no appropriate alternative accts to be verified.
    This validation will only apply to one company code.
    Please provide me with the step-by-step creation of the validation.
    Points will be rewarded for helpful answers.
    Thanks in advance.
    Bay

    look tcode ob28, validation exit and <a href="http://help.sap.com/saphelp_47x200/helpdata/en/5b/d231e143c611d182b30000e829fbfe/frameset.htm">here</a>
    A.

  • Simple PHP and PLSQL Bind help needed

    HI,
    I am learning php and oracle I am trying to bind my plsql code with php but have little idea can anyone plese help?.
    my code is
    plsql prcoedure
    CREATE OR REPLACE PROCEDURE get_width (
    img_id IN arm_photos.id%TYPE
    AS
    image ORDSYS.ORDImage;
    width INTEGER;
    BEGIN
    SELECT p.image INTO image FROM arm_photos p
    WHERE p.id = img_id;
    -- Get the image width:
    width := image.getWidth();
    DBMS_OUTPUT.PUT_LINE('Width is ' || width);
    COMMIT;
    END;
    PHP code
    <?php
    $c =oci_connect('user', 'pass' , '//localhost/orcl');
    $s = oci_parse($c, " begin
    get_width(:id :width)");
    oci_bind_by_name($s, ':id', $id);
    oci_bind_by_name($s, ':width', $width);
    $id= 1235;
    oci_execute($s);
    ?>

    Variable width is a local variable. You can't get its value from outside SP. Either change your procedure to a function returning image width or add a second out parameter:
    CREATE OR REPLACE PROCEDURE get_width (
    img_id IN arm_photos.id%TYPE,width OUT INTEGER
    AS
    image ORDSYS.ORDImage;
    BEGIN
    SELECT p.image INTO image FROM arm_photos p
    WHERE p.id = img_id;
    -- Get the image width:
    width := image.getWidth();
    DBMS_OUTPUT.PUT_LINE('Width is ' || width);
    COMMIT;
    END;SY.

  • Find and Replace text and change font help needed.

    I am completely new to Scripting and I'm sure this is quite simple but I do not know where to start.
    I have a FM template that is populated with "raw" text from a database.
    Within the text are several characters (+, @, *, $, # and %).
    I need to replace these characters with symbols from a different font e.g.:
    Each instance of:
    "+" to be replaced with Wingdings 2 font - Lowercase t
    "@" to be replaced with Wingdings 2 font - Lowercase u
    "*"  to be replaced with Wingdings font - Uppercase E   etc.
    I would like to automate the process and believe a script would enable me to do this.
    I have tried looking on the forum, but can not find anything suitable to help me (or I'm looking in the wrong place).
    Any help would be greatly appreciated.
    Cheers
    Kev

    not really
    important is the Illustrator Text Object-model, which is not very easy to understand.
    And the Core JS String and regExp Objekts.
    Have a look at this:
    http://www.ogebab.de/home/skripte/text/replace
    The dialog is poor (because of compatibility) and it works simply on TextFrames.contents, i don't know if this is good i all cases.
    But i use it not very often so i don't want to rewrite it.
    Maybe it is a starting-point for you.
    But maybe it is more then you need.
    try this:
    //select a text
    var text = app.activeDocument.selection[0];
    var string = text.contents;
    string = string.replace(/ /g,"  ");
    text.contents= string;
    / /g is a regular expression
    .replace() is a method of the String Object
    both explained at
    https://developer.mozilla.org/en/JavaScript/Reference

  • Dynamic link and workflow optimization help needed

    As a vlogger I just tried out a brandnew method to save time and renders. Instead of editing every clip separately in After Effects and then rendering it and then do the final edit in Premiere, I just edit immediately in Premiere, then when it's finished editing I do a global color correction in AE via Dynamic link. I'm just kinda worried the results are bad. Do you think it sucks? Do you like it? Would you subscribe? Do you wanna see other vlogs?
    your opinion helps me more then you think.
    your good friend,
    ck

    Edit in Premier then dynamic link to AE is the usual workflow. I've been doing a bit of color grading lately but I'm still not on par with the terms a colorist would use but I think the vid has a dreary look to it. Dark, not much contrast, needs more tone? Also advice on vlogging sounds like a post for the video lounge.

  • A little assistance and some big help needed

    I seem to be running into a problem migrating an MSAccess 2000 database to XE.
    I open the omwb2000.mde, select the database and define the location for the schema and data export.
    The DAO msi opens and I get error 1706. No Valid Source could be found for product DAO. the windows installer cannot continue.
    If I cancel the DAO and if I add forms and reports from the .mde I get error #5 - XML Exporter. Invalid procedure or call argument (the database location) Database Schema Export did not complete successfully.
    Any help is very appreciated.
    My local environment is:
    Win XP SP2
    Office 03 SP2
    Oracle XE
    OMWB 10.1.0.4.0

    Hi,
    Have you tried re-registering the DAO dao360.dll? If, for some reason, your MDAC install has gotten corrupt, you'll need to re-register. Try executing the following from the Start | Run command:
    regsvr32 "c:\program files\common files\microsoft shared\dao\dao360.dll"
    I would also recommend using the omwb2003.mde, and converting your MS Access 2000 database to 2003, seeing as you have MS Access 2003 installed on your machine. We recommend using the version of the Exporter Tool that corresponds with the version of MS Access installed on your machine.
    I hope this helps.
    Regards,
    Hilary

  • US iBook and UK Keyboard help needed..

    Hey there.
    Some time ago my girlfriend bought an iBook G4 from eBay. We both use the iBook and use a UK Mac keyboard with it, the only problem is is that the pound sign, when used comes out as the $ sign on the iBook and # when using the UK keyboard. Number 3 is supposed to be the pound sign when shift and 3 are pressed, how do assign the key to show the pound sign? It's annoying cause' everytime we need to use the sign we have to resort to using the 'special characters' option. I hope someone can help, thanks!

    Hi Tymon,
    You will need to set your keyboard input menu to UK. Do the following:
    1. Fire up System Preferences
    2. Select the International icon
    3. Within the International preferences window select the Input Menu tab
    4. Ensure Keyboard Viewer is ticked (not needed here but very useful to have available)
    5. Scroll down and tick on the British Keyboard box
    6. If it's not already ticked, select the "Show input menu in menu bar" box (bottom left of the window).
    That's it. You will now notice a flag in the top right of the menubar. It should be the British flag. If not, simply click on the flag and select British. Your keyboard input layout should now be in the familiar British flavour.
    Kryten

  • MAC OS-X Lion and Error 51 - Help Needed ASAP Please

    Greetings,
    I have been using the Cisco VPN Client (4.9.01) for Mac under Snow Leopard (10.6.x) without any issues.
    Since upgrading to Lion earlier today I am now receiving an Error 51 - unable to communicate with the subsystem.
    I found a thread that suggested restarting the system while holding down Opt/3/2 keys to force a 32-Bit restart and the Client will indeed run. However, this is a bandaid patch.
    Has Cisco addressed this issue? Is there a better workaround at this time?
    Thank you,
    Lyman

    Hello Robert,
    In Windows 7 you would need to use the Cisco IPsec client which operates the same way as it does in XP with regards to the pcf.  So I am not sure why you are having trouble with Win7, if you are still having trouble with Win7 using the Cisco IPsec client please start a new thread for that specific issue as it is separate and distinct from Mac OS X and using the Mac OS X built in client.
    Did you follow this guide:
    http://anders.com/guides/native-cisco-vpn-on-mac-os-x/
    Thanks tomas.truchly.
    I have not heard of an issue with the Mac OS X Built-in client when properly configured and when the head-end has the security levels necessary.
    Also, since this thread has been Answered, to help ensure you get the help you need it might be best to open a new thread.
    -Craig

Maybe you are looking for

  • What's the use of the shape.id? and How to use it to refer a shape in a slide?

    Is for each shape is the intented way of using of it? Any simple ways like GetSlideById for shapes?

  • Opening SQL tab of other's user schema reports error

    Hi, I just try to open the SQL table tab to get the SQL script of a table, and it only works when the schema is owned by the user. If you try to open SQL tab on another user table it reports: ORA-31603: object "COM_BANK" of type TABLE not found in sc

  • SSID assignment

    We plan on implementing a WLC4402/1252 APs at one of our locations. Currently we use "fat" 1242 APs in selected areas and also deploy MS-PEAP using a Microsoft RADIUS server. We would like to have the ability to assign SSIDs based on Active Directory

  • Minimum stock Alert

    Hi guys, i need a solution to a query which was raised in a meeting.  The purchaser wants an alert if the quantity of stock went within 5% of the minimum stock level.  What the user wants is a list emailed to her if ever the quantity drops to this le

  • Will not let me log in, or register

    it says I have an account, but it will not take, or let me change password to log in.