Urgent Parallels Question

Hello,
Hoping to find help here as the Parallels board requires such a delay of response.
I have been using parallels to print from GoToMyPC, which is a remote desktop viewing program which can only print from PC due to some java setup. Everything had been working fine (with some adjustments) until I upgraded from Parallels version 3 to 4. Now, suddenly, I can't print. I tried working with GoTo's help desk, but once they saw Parallels, they wouldn't support me. They said that if I could boot up totally into Windows they would - but not through Parallels.
Any guidance here? I need to print this way early this week.
Questions.
1. Any ideas?
2. If I do need to boot up straight into Windows (without using Parallels), do I need to reinstall a second copy of this Windows on my computer? This will waste space, no? How can I do this? Do I need to create a whole partition, etc?
3. Any ideas of how to fix this without having to log into the PC without parallels?
4. Any idea of what would have changed in this upgrade?
I called Parallels support and after speaking to a guy for an hour, he finally figured out he couldn't help me and upgraded me to a higher level person - which will contact me via email in 3 days or so!?
I appreciate your help! Thanks so much.

Fixed my parallels issue. Thank God!
Here is what fixed it (in case anyone else suffering from this finds this post):
I downloaded Bonjour for Windows.
Here is the info:
Set up your printer via Apple Bonjour like it is described here:
http://kb.parallels.com/en/4990
Danielle Marie Crume
http://www.AhamPrema.com
http://ahamprema.blogspot.com
"We are continually faced with a series of great opportunities brilliantly disguised as insoluble problems." ~John W. Gardner

Similar Messages

  • Urgent SQL question : how to flip vertical row values to horizontal ?

    Hello, Oracle people !
    I have an urgent SQL question : (simple for you)
    using SELECT statement, how to convert vertical row values to horizontal ?
    For example :
    (Given result-set)
    MANAGER COLUMN1 COLUMN2 COLUMN3
    K. Smith ......1
    K. Smith ...............1
    K. Smith ........................1
    (Needed result-set)
    MANAGER COLUMN1 COLUMN2 COLUMN3
    K. Smith ......1 .......1 .......1
    I know you can, just don't remeber how and can't find exactly answer I'm looking for. Probably using some analytic SQL function (CAST OVER, PARTITION BY, etc.)
    Please Help !!!
    Thanx !
    Steve.

    scott@ORA92> column vice_president format a30
    scott@ORA92> SELECT f.VICE_PRESIDENT, A.DAYS_5, B.DAYS_10, C.DAYS_20, D.DAYS_30, E.DAYS_40
      2  FROM   (select t2.*,
      3                row_number () over
      4                  (partition by vice_president
      5                   order by days_5, days_10, days_20, days_30, days_40) rn
      6            from   t2) f,
      7           (SELECT T2.*,
      8                row_number () over (partition by vice_president order by days_5) RN
      9            FROM   T2 WHERE DAYS_5 IS NOT NULL) A,
    10           (SELECT T2.*,
    11                row_number () over (partition by vice_president order by days_10) RN
    12            FROM   T2 WHERE DAYS_10 IS NOT NULL) B,
    13           (SELECT T2.*,
    14                row_number () over (partition by vice_president order by days_20) RN
    15            FROM   T2 WHERE DAYS_20 IS NOT NULL) C,
    16           (SELECT T2.*,
    17                row_number () over (partition by vice_president order by days_30) RN
    18            FROM   T2 WHERE DAYS_30 IS NOT NULL) D,
    19           (SELECT T2.*,
    20                row_number () over (partition by vice_president order by days_40) RN
    21            FROM   T2 WHERE DAYS_40 IS NOT NULL) E
    22  WHERE  f.VICE_PRESIDENT = A.VICE_PRESIDENT (+)
    23  AND    f.VICE_PRESIDENT = B.VICE_PRESIDENT (+)
    24  AND    f.VICE_PRESIDENT = C.VICE_PRESIDENT (+)
    25  AND    f.VICE_PRESIDENT = D.VICE_PRESIDENT (+)
    26  AND    f.VICE_PRESIDENT = E.VICE_PRESIDENT (+)
    27  AND    f.RN = A.RN (+)
    28  AND    f.RN = B.RN (+)
    29  AND    f.RN = C.RN (+)
    30  AND    f.RN = D.RN (+)
    31  AND    f.RN = E.RN (+)
    32  and    (a.days_5 is not null
    33            or b.days_10 is not null
    34            or c.days_20 is not null
    35            or d.days_30 is not null
    36            or e.days_40 is not null)
    37  /
    VICE_PRESIDENT                     DAYS_5    DAYS_10    DAYS_20    DAYS_30    DAYS_40
    Fedele Mark                                                          35473      35209
    Fedele Mark                                                          35479      35258
    Schultz Christine                              35700
    South John                                                                      35253
    Stack Kevin                                    35701      35604      35402      35115
    Stack Kevin                                    35705      35635      35415      35156
    Stack Kevin                                    35706      35642      35472      35295
    Stack Kevin                                    35707      35666      35477
    Stack Kevin                                               35667      35480
    Stack Kevin                                               35686
    Unknown                             35817      35698      35596      35363      35006
    Unknown                                        35702      35597      35365      35149
    Unknown                                        35724      35599      35370      35155
    Unknown                                                   35600      35413      35344
    Unknown                                                   35601      35451      35345
    Unknown                                                   35602      35467
    Unknown                                                   35603      35468
    Unknown                                                   35607      35475
    Unknown                                                   35643      35508
    Unknown                                                   35644
    Unknown                                                   35669
    Unknown                                                   35684
    Walmsley Brian                                 35725      35598
    23 rows selected.

  • Parallel Currency Urgent simple question

    How can I figure out if my client is using Parallel Currency Valuation. Please let me know. I have used  T.code OB22 however I dont see our company code in the overview screen.

    Hi
    Post any document in F-02 when you simulate the transaction there wii be a tab called display currency click on that tab there if you could see the other currencies then your company code is working with parallel currency
    Regards
    Sandy

  • Urgent 508 Question!

    The only thing i need to do is add a title or label attribute to some of the controls.
    One of the ones to begin with that i am fixing is the ADF tag af:selectBooleanRadio. When i add some text to the shortDesc field of the control, the html is produces doesn't have the title attribute.
    So i tried to use the corresponding trinidad control tr:selectBooleanRadio, and add some text to the same shortDesc field for the control, and in this case it does add a title attribute in the html that it produces.
    Everything else in the code works fine as well when i add the trinidad control, except for one thing. I have a ValueChangeListener that gets called when you click on another tr:selectBooleanRadio. Within that valueChangeListener event handler function, i have a bunch of code which in the end displays a af:popup. The problem i am having when using the trinidad control is that it somehow is not allowing the display of the popup even though it is going through the code that executes display of the popup. When i click on another link or button that is supposed to display a different popup as well, then the popup associated with the tr:selectBooleanRadio also displays at that time, but not originally when the value changed by selecting a different tr:selectBooleanRadio.
    So, my question is, are there any other successful ways of adding a title attribute to the these controls. If its the af:selectBooleanRadio how do we make it so that the html it generates has the title attribute, or if its the tr:selectBooleanRadio, what might be happening during the event handling that it is not allowing the af:popup to display?
    A quick response to this appreciated since this is very urgent! Thanks very much for your help!

    JDev version is 11.1.1.5
    ok, i will go one step at a time so that it is easy to understand. So i will only mention the first thing right now and then we can try other things later.
    i have a af:selectBooleanRadio. After running the page/application, when the user does View Source in the browser for the page that has the radio button, it is in the form of an HTML tag <input> of type for radio button. What i want to do is to have a "title" attribute for the <input> tag for this radio button. I can use the tr:selectRadioButton trinidad control to do that, but then i have other issues with that, and we can talk about those later.
    Let me know if it is still not clear.
    Thanks very much for your help!

  • URGENT : Challenge questions query: Oracle Access Manager 10g

    Hi all,
    This is a query regarding password challenge questions in Oracle Access Manager 10g. We have created password policies for a specific container in OID (say cn=xxx,cn=users,dc=oracle,dc=com) and it is working fine.
    In order to exclude certain set of users (say user ABC ) for password policies, we have set the obpasswordchangeflag to false for those users which are in same container for which password policy is created.
    When we try to login to the application with the user say ABC, I am not seeing any reset password page - I am happy till this point. However it is showing Configure Challenge questions page. Is there any way to bypass this page? Or is this the expected behavior?
    This is very urgent and prompt reply is very much appreciated.
    -Mahendra

    Hi Mahendra,
    This is expected behaviour. In order to exclude the password policy management for some certains user for particular domain/container. please add the below configuration parameter to your OAM10g password policy.
    Password Policy Filter Field     (!(|(cn=xxx)(cn=abc)))
    ----Ajay

  • Urgent constructor question..

    I'm trying to call this Flower class in another class called Garden, in which I created a new Flower by using a statement
    private Flower lastflower;
    and it's saying it cannot find the symbol - constructor Flower.
    Can anyone tell me why and help correct this problem?
    Below is the code for my Flower class.
    Any help is really appreciated, it's for my Java class!
    import objectdraw.*;
    import java.awt.*;
    * Write a description of class Flower here.
    * @author (your name)
    * @version (a version number or a date)
    public class Flower
        protected FilledOval dot;
        protected FilledRect stem;
        protected FilledOval petal1;
        protected FilledOval petal2;
        protected static final int boundary = 100;
        protected RandomIntGenerator colorGen =
                new RandomIntGenerator(0,255);
        protected Color petalColor;
        protected Boolean flowerContains=false;
        private DrawingCanvas canvas;
        public void changeColor(){
        dot = new FilledOval(150,150,15,15, canvas);
        dot.setColor(Color.YELLOW);
        petalColor = new Color(colorGen.nextValue(),
                                    colorGen.nextValue(),
                                    colorGen.nextValue());
        petal1.setColor(petalColor);
        petal2.setColor(petalColor);
        public void grow(Location point){
        stem = new FilledRect (dot.getX()+3, dot.getY()+10, 10, 10, canvas);
        stem.setColor(Color.GREEN);
        if (dot.getY()>boundary){
            dot.move(0,-4);
        else{
         petal1 = new FilledOval(dot.getX()-12, dot.getY()-25, 40,70,canvas);
         petal2 = new FilledOval(dot.getX()-25, dot.getY()-10, 70,40,canvas);
         dot.sendToFront();
         stem.sendToBack();
         petal1.setColor(petalColor);
         petal2.setColor(petalColor);
        public Boolean flowerContains(Location point){
            if (petal1.contains(point)){
                return true;
            else if (petal2.contains(point)){
                return true;
            else if (dot.contains(point)){
                return true;
            else{
                return false;
    }

    I don't care how fucking urgent you think it is, it isn't to us. We will answer your question when and how we feel llike it. Have some manners and if you must, then bump your original post. Don't create another time wasting piece of cr&#97;p!

  • Parallels question. Does it share running software with Mac X.

    I never used parallel before, my question is does it share software running in windows xp/parallel with mac os.
    For example, When if I disable Mac Airport, and run & turn on internet in parallel windows. When I switch to back mac, will it be connect to internet, even airport is off?

    Airport is not software, and if you turned this off in one application, it would affect everything else.
    The following link will allow you to post questions directly to the manufacturer http://www.parallels.com/en/support/

  • Parallels Question/Virtual Box

    Hello-
    Not to sure where to place this question in the forums, but I was wondering if anyone has used Parallels as well as virtual box so they could say which one is better. I have a PC program I want to run on my Macbook Pro, witch is Proshow Producer a honken slideshow program for PC and far superior to Imovie.
    I found out that virtual box is free, but wasn't sure if it will be up for the task. In fact, I don't know if Parallels will be up for the task either.
    Any help would be appreciated.
    Thanks,

    It depends mostly on how much RAM you have and what you will run in those virtual machines. And also how much you can tolerate strain/lag. 4GB of RAM is the minimum you should have, I think. I have a 2008 Mac Pro with 6GB of RAM, and it can run simultaneously VMWare Fusion (which is slower than Parallels) with Windows 7 and VirtualBox with Debian or Windows XP without noticeable strain.
    I don't know about Parallels 9, but Mavericks would most likely make it slower.

  • Parallels Questions

    Hi all,
    Parallels gurus would you be kind enough to respond to these questions for me please:
    1) Is 1 Gig of ram enough to run Parallels smoothly if i'm not running ram crunching apps all the time?
    2) If the MBP is connected to the Intenet will both OS's simultaneously be online? For instance, a movie is downloading on a P2P file sharing software on the Windows side can i switch to OS X and surf the web with Safari at the same time?
    3) If the installment of Parallels has been done will my currrent data on Windows in the MBP hard drive be migrated to Windows Parallels automatically or do have to do it myself?
    Sorry if my questions sound a bit foolish - but i'm a total virgin to Paraellels. I really fancy installing it cuz i do a lot of downloading on the Windows side and work on some apps on the Mac. Just can't be bothered switching back and forth all the time.
    Thanx in advance

    Most of the questions seem pretty well answered, but I'll go ahead and throw my two cents in.
    1) Is 1 Gig of ram enough to run Parallels smoothly
    if i'm not running ram crunching apps all the time?
    Yes, but it's still a little slow depending on what you're doing. I have a bout a dozen machines deployed here at work that run Parallels to run exactly one app that hasn't been ported to the Intel Macs yet. They have one GB of RAM in them with 256 MB allocated to Windows and they do ok for that one app.
    I have one user who actually does office in that kind of configuration and it's a tad sluggish. Useable, but sluggish.
    2) If the MBP is connected to the Intenet will both
    OS's simultaneously be online? For instance, a movie
    is downloading on a P2P file sharing software on the
    Windows side can i switch to OS X and surf the web
    with Safari at the same time?
    I'd like to give you an unqualified yes, but I can't. In the vast majority of home and corporate networks, you should be just fine, but in networks where there is either no DHCP or if DHCP addresses are reserved by MAC address, then you'll have to either configure the Windows instance to use a manual IP, set the DHCP server to hand out an address to the virtual machine's MAC address (which can be found in the preference pane for that instance), or set your Mac up for internet sharing and use "host-only" networking on the Windows instance.
    So, long story short, yes but you may have to jump through a hoop or two to get it to work.
    3) If the installment of Parallels has been done will
    my currrent data on Windows in the MBP hard drive be
    migrated to Windows Parallels automatically or do
    have to do it myself?
    I believe you'll have to install Windows into Parallels and then manually move all your stuff. Parallels doesn't have any tool that I'm aware of to let you directly migrate data from a Boot Camp partition into a virtual hard-disk file.

  • Bootcamp/Parallels question

    Ok, I've got Boot Camp on my blackbook successfully booting and running XP. My question is, can I run parallels using that same installation of XP or will I need to install XP AGAIN on another separate partition? I wanted to hear some input about this before I installed parallels. I love BC but sometimes it's nice to run a windows program virtually without shutdown and restart. I have a working copy of the latest version of VirtualPC, does VPC suck on the intel macs? Thanks!

    Presently you cannot use another Windows installation with Parallels. They have such ideas under development for a future version, but it's not available on the current version.
    Virtual PC does not run on Intel Macs.

  • Help please - urgent exam question

    I'm having difficulty with the following question for an OU exam:
    You will now create a method to enable students to make a list of the books they have read, whether they are on the course�s reading list or not.
    Add an instance method to the class, with the header: public Set<String> collectBooksRead()
    The method should first declare a local variable of type Set called readBooks capable of holding a set of strings.
    The method should then assign to that variable an appropriate set object.
    The method should then use a dialogue box to collect the book titles one at a time from the user.
    The dialogue box should have the prompt "Please input a book title or * to finish", and should have an empty string as its default reply.
    Each entered book title should be added to the set referenced by the local variable readBooks. Finally the method should return readBooks as the message answer.
    Here's my code so far but it endlessly loops and I'm unsure how to make it stop.
    public Set<String> collectBooksRead()
    Set<String> readBooks = new HashSet<String>();
    String title;
    do
    title = OUDialog.request("Please input a book title or * to finish",""); //OUDialog.request displays an input dialogue box as specified by a superclass
    readBooks.add(title);
    while
    (title != "*");
    }  

    I'm having difficulty with the following question for
    an OU exam:
    You will now create a method to enable students to
    make a list of the books they have read, whether they
    are on the course�s reading list or not.
    Add an instance method to the class, with the header:
    public Set<String> collectBooksRead()
    The method should first declare a local variable of
    type Set called readBooks capable of holding a set of
    strings.
    The method should then assign to that variable an
    appropriate set object.
    The method should then use a dialogue box to collect
    the book titles one at a time from the user.
    The dialogue box should have the prompt "Please input
    a book title or * to finish", and should have an
    empty string as its default reply.
    Each entered book title should be added to the set
    referenced by the local variable readBooks. Finally
    the method should return readBooks as the message
    answer.
    Here's my code so far but it endlessly loops and I'm
    unsure how to make it stop.
    unplug the computer. works every time

  • Very urgent BPS questions

    hey pals,
    I have couple of doubts which are very urgent to be clarified.
    1.how to debug the code in fox editor?
    2.can we use transactional infocubes in bps?
    3.can we use multiprovider for planning?
    4.how to fine tune the standard planning functions provided by sap?
    5.when exit variables are used?
    I need these answers asap.Anyone with suitable answer will be rewarded immediately.Thank you.
    Regards,
    Rags

    1.how to debug the code in fox editor?
         use break-point in FOX code
    2.can we use transactional infocubes in bps?
         yes. Transactional cubes are meant for only BPS.
    3.can we use multiprovider for planning?
       Yes. multiproviders can be used both in basic planning area as well as multi planning area.
    4.how to fine tune the standard planning functions provided by sap?
       these are not recommended. But, create exit & FOX functions to meet your requirements.
    5.when exit variables are used?
       If variable1 needs to be derived from variable2. (in which, end user fills only variable2).

  • Need urgent general questions...

    1, why should we go for erp ? when having many technologies to implement projects ??
    2,what r the implement strategies and intricaces ?
    3, give comparision of erp products?
    4, Feature and  advantages of sap ?
    disadvamtages of sap -abap ?

    Hi,
    Enterprise Resource Planning systems (ERPs) integrate (or attempt to integrate) all data and processes of an organization into a single unified system. A typical ERP system will use multiple components of computer software and hardware to achieve the integration. A key ingredient of most ERP systems is the use of a single, unified database to store data for the various system modules.
    The term ERP originally implied systems designed to plan the utilization of enterprise-wide resources. Although the acronym ERP originated in the manufacturing environment, today's use of the term ERP systems has much broader scope. ERP systems typically attempt to cover all basic functions of an organization, regardless of the organization's business or charter. Business, not-for-profit organizations, governments, and other large entities utilize ERP systems.
    Additionally, it may be noted that to be considered an ERP system, a software package generally would only need to provide functionality in a single package that would normally be covered by two or more systems. Technically, a sofware package that provides both Payroll and Accounting functions (such as QuickBooks) would be considered an ERP software package.
    However; the term is typically reserved for larger, more broadbased applications. The introduction of an ERP system to replace two or more independent applications eliminates the need for interfaces previously required between systems, and provides additional benefits that range from standardization and lower maintenance (one system instead of two or more) to easier and/or greater reporting capabilities (as all data is typically kept in one database).
    Examples of packages commonly referred to as ERP systems include: SAP, Oracle, PeopleSoft (which has been taken over by Oracle), J.D. Edwards, Sage Software, BAAN, MAS, and the Microsoft Dynamics suite of ERP products.
    Examples of modules in an ERP which formerly would have been stand-alone applications include: Manufacturing, Supply Chain, Financials, Human Resources, CRM, and Warehouse Management.
    there are so many erp packages like SAP, PEOPLESOFT, BAAN, JD EDWARDS, ORACLE APPLICATIONS etc
    SAP is the ERP package which suits best for the COMPANY's to plan their resources efficiently and perfectly such that a 100 percent integration is achieved between the different departments (modules) of an organization. Beacuse of its best integration among the functional modules it became famous.
    steps for smooth SAP Implimentation:
    ) Phased vs. "big bang" approach to migration - cutting over your systems all at once generally increases your risk, particularly on large projects across multiple geographies/countries.
    2) Training - the better training you provide users, the less problems you will see.
    3) Legacy system planning - what are you going to do with your systems after go-live? Will you run them in parallel for a short-period until you know the new ERP system is functional? If so, have you budgeted these costs in your ROI?
    4) Testing - Unit and integration testing is very important; you significantly reduce your implementation risk if you have thoroughly tested the solution with real data and real user profiles before go-live.
    5) IT support - expect more support center call volume and staff accordingly during go-live. You will also want to make sure you have clearly defined escalation procedures in place for ERP issues that your support staff isn't able to handle.
    6) Contingency planning - what will you do if your system does go down? Do you have manual processes you can revert to if needed?
    It all boils down to ERP risk mitigation. You want to make your project plan, budget, and staffing all address the above variables.
    SAP Versions:
    SAP ERP 6.0 running on NetWeaver 7.0
    SAP ERP 2005 running on NetWeaver 2004
    SAP R/3 4.7(Enterprise) running on WebAS 6.20
    SAP R/3 4.6(mysap.com) running on Basis 4.6
    Older releases.
    SAP R/3 4.5
    SAP R/3 4.0
    SAP R/3 3.1
    These are just the ERP or R/3 components here, there are of course a lot of other SAP software products as well.
    ERP system takes a lead role because of some of the following reasons:
    Many large corporations use several different and separate information systems, often because they have merged with and/or acquired other companies with varied systems. An ERP system integrates these separate information systems and results in improved data reliability and processing efficiency. ERP systems are not only used by large corporations but becoming popular with small to mid-sized companies also.
    Simplify business transaction processing and thus work load is reduced.
    Some of the main advantages of using SAP R/3 are listed below:
    SAP's R/3, introduced in 1992, is the most used ERP system in the world.
    The R/3 software package is designed to allow businesses to effectively and efficiently operate a variety of business processes within a single integrated information system.
    The software is customizable using SAP's proprietary programming language, ABAP/4. R/3 is scalable and highly suited for many types and sizes of organizations and runs on six different platforms.
    SAP’s R/3 has been designed to be the best ERP system in the four areas of human resources, financial, supply chain management, and marketing. R/3 is also an international product, and meets the local fiscal, language, and tax requirements of most countries.
    SAP Manufacturing:
    Drive Manufacturing at the Speed of Business
    Manufacturing isn't getting easier. You're under constant pressure to deliver innovative products, respond to customer demand quickly, and eliminate costs.
    Enter SAP Manufacturing. This powerful solution integrates manufacturing with your other operations, so you can identify changes in demand and supply and rapidly respond to new customer requirements.
    SAP Manufacturing is the only comprehensive solution for managing manufacturing operations with embedded Lean and Six Sigma – empowering you to deliver superior responsiveness and performance. And since it's built on the SAP NetWeaver platform, SAP Manufacturing connects seamlessly with your entire enterprise, including your current plant floor infrastructure. So you can accelerate time-to-value and lower total cost of ownership.
    SAP Manufacturing gives discrete and process manufacturers functionality to:
    Coordinate operations with partners and suppliers
    Detect and resolve exceptions and performance deviation in real time and at low cost
    Institutionalize Lean and Six Sigma processes and monitor production to drive continuous improvement
    Comply with environmental, health, and safety standards
    Improve employee productivity and create a high-quality work environment
    With SAP Manufacturing, your management and production departments gain real-time visibility into key data – enabling them to act quickly. Managers can document, track, and interpret quality and performance using rich analytics capabilities. Production teams can leverage role-based applications for plant managers, production supervisors, maintenance supervisors, and quality inspectors to detect and respond rapidly to exceptions and variances – and deliver superior performance.
    SAP Manufacturing helps you to plan, schedule, sequence, execute, and monitor all your manufacturing processes optimally. So you can achieve higher profits and marketplace wins
    <REMOVED BY MODERATOR>
    Cheers,
    Chandra Sekhar.
    Edited by: Alvaro Tejada Galindo on Feb 14, 2008 4:08 PM

  • Urgent SSL questions

     

    Why in the name of God don't you post this sample code here in the newsgroup so everyone can see it instead of just emailing it to a single individual? Can you please post it?
    Bryan O'Sullivan <[email protected]> wrote:
    b> All docs on the BEA website talk about 2-way authentication with
    b> browsers and servlets. Can I use the T3Client (t3s://host:port) in
    b> setting up my InitialContext to talk to beans on the server to
    b> create the secure connection?
    Yes, you can. You need to set up some extra environment parameters to
    do this, which unfortunately aren't well-documented in 4.5. I'll send
    you a code example that should clarify things.
    b> Do I need a specific service pack to enable this functionality?
    You need at least 4.5.1sp5. This functionality was documented as
    working in earlier 4.5 releases, but embarrassingly enough for us, it
    didn't.
    b> "Important: Certificates from Microsoft Internet Information Server
    b> and Netscape Enterprise Server cannot be used with Weblogic Server,
    b> because they are stored in a proprietary format."
    b> Does this pertain to Netscape Certificate Server as well?
    I don't know; I've never used NCS. However, if NCS can spit out
    certificates in X.509 format, using either DER or PEM encoding, then
    you should have no problems.
    b> Where can I find code samples for doing what I want to do?
    If you're using a Java client, we actually don't ship any useful
    examples of two-way SSL authentication with WLS 4.5.x. However, I'll
    mail you a copy of an example program from Denali beta 2 which should
    work with a 4.5.x server.
    b> The "Using Weblogic SSL" page is not too useful for implementation
    b> details.
    I know. We've worked to beef the documentation up for Denali. As you
    can imagine, since we documented two-way SSL authentication as working
    in 4.5 but never really got any complaints from customers about the
    fact that it was broken (I just happened to notice it myself), it's
    not a feature that has seen much use yet. I apologise for the
    roughness around the edges so far; I hope this information helps you
    to find out what you need.
    When Denali beta 2 comes out, you might want to download it and look
    at its expanded support for two-way SSL authentication. It's really
    quite a bit more useful than 4.5 in this regard.
    If you have any further questions, please feel free to ask.
         <b
    Let us pray:
    What a Great System.
    Please Do Not Crash.
    ^G^IP@P6

  • URGENT: Unicode questions

    Hi experts out there
    We need to have a unicode system soon.
    At the moment we have a non unicode R/3 Rel. 4.7 Enterprise.
    My questions are:
    1. Are there patches that upgrade the non unicode R/3 Rel. 4.7 Enterprise to the unicode R/3 Rel. 4.7 Enterprise?
    2. Should we better upgrade it to ECC 6.0? What is the effort here?
    Any suggestions/responses would be very appreciated.
    Thanks
    HW

    There cant be patches because the data must be converted from a certain code page to unicode.

Maybe you are looking for

  • Zen Vision:M 60GB firmware: NEEDS 'Disc Number' tag supp

    The Creative Zen Vision:M 60GB firmware (.20.02e) does not recognise the 'Disc Number' part of ID3 tags. This is VERY annoying as albums made up of more than one CD do not play in the correct order (they play in order of 'Track Number', e.g. ",,,,2,2

  • Posting in local currency on foreign currency account/correctionOfValuation

    Hi everybody! I have a problem, and I hope someone will help me. Is there any way to make posting in local currency on account with foreign currency as the account currency? The reason why I'm asking this, is that I have to make corrections to curren

  • How can I get (using API) the current sort column for some report

    hello, How can I get (using API) the current sort column for some report ? For example something like "fsp_sort_1_desc" - if the user sorts by the first column ? I cannot use the :REQUEST for this, sometimes the current sort column is not in the :REQ

  • Deleting Users on computer

    I was told a safety precaution was to delete my original account through users & groups. So I created a new  administrator user and erased my old one. There are currently two users aside from guest user because I accidently created two new ones. I no

  • About Apple Remote Desktop 3.5: version detail

    Please What's the number or reference - in parentheses - that follows 3.5?