CSS Implementation

Currently CSS 11500 is setup on inside network behind firewall and is set with a default route of our core switch. If possible though would like to load balance servers on both the inside and DMZ networks. Is this going to be possible and if so how do I do it?
Thanks

with 1 css it is not possible without loosing on security.
The reason is that the CSS needs to see the response from the servers.
So you would have to make sure that traffic from the servers in the DMZ goes back to CSS located on the inside and then out through the firewall.
This is like connecting a router between dmz and inside which is not good.
Solution A - a 2nd CSS for the dmz.
Solution B - move the CSS on the outside [assuming you do not need to loadbalance connection from internal users]
Solution C - you leave the CSS on the inside but you configure client nat to guarantee that dmz servers will send traffic back to CSS through the firewall
[disadvantage - your servers won't know the real client ip address]
Regards,
Gilles.

Similar Messages

  • Is there going to be any CSS implementation

    I was wondering if there is going to be any css
    implementation to the TLF project, so that I can create a regulat
    html using css and then 'give' that html to a flash so that it will
    deploy it in my flash application

    We will be making an HTML import feature available in new TLF
    builds very soon, and we have recently introduced a styling
    mechanism that could be extended to support CSS syntax (but doesn't
    out of the box). That said, TLF is not an HTML/CSS rendering engine
    and you should not expect to get the same result that you would out
    of a web browser. If this is what you are looking for, check out
    HTML
    in AIR via Webkit.

  • Using CSS in crystal reports

    Hi All,
    We have used external CSS files to apply styles to the report content. But after the CSS implementation we have come across issues with Zoom and export.Following are the issues for which we need a solution.
    1. When the content is zoomed in /out, the size of the text does not change along with the lines and borders and hence the data is seen to be overlapping (incase the zoom is 25% )
    2. The alignment given through the CSS files do not reflect after exporting the content to pdf/excel etc. (eg: The decimal fields and given alignment as "right" but in the exported documents it appears as "left")
    Is this a known behavior in Crystal report or are we missing something?
    Thanks in advance..
    Thara

    Hi Todd Linscott,
    We have using this type of query in SAP in Query Generator
    SELECT  T0.[DocNum] as 'Invoice No.', T0.[DOCDATE] as 'Invoice Date', T0.[CardName] as 'Customer Name' ,
    FROM OINV WHERE  T0.[DOCDATE] >=[%0] AND T0.[DOCDATE]<=[%1]
    For Crystal Report
    SELECT  T0.[DocNum] as 'Invoice No.', T0.[DOCDATE] as 'Invoice Date', T0.[CardName] as 'Customer Name' ,
    FROM OINV WHERE  T0.[DOCDATE >= {?FromDate}  AND T0.[DOCDATE ]< = {?ToDate}
    Pass Parameter in Crystal Report in thats type of syntax
    When you have to add command Right side Parameter button will appear
    For Layout pass
    {?@Dockey}
    This is must.
    Thanks,
    Srujal Patel

  • Would the CSS style set to a parent node be inherited to underlying nodes?

    Hi,
    Would the CSS style set to a parent node be inherited to underlying nodes?
    With below code, style setting to parent(VBox) is not getting inherited to children(Text).
    Style.java
    package style;
    import javafx.application.Application;
    import javafx.scene.Group;
    import javafx.scene.Scene;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.scene.text.Text;
    import javafx.stage.Stage;
    public class Style extends Application {
        public static void main(String[] args) {
            Application.launch(Style.class, args);
        @Override
        public void start(Stage primaryStage) {
            primaryStage.setTitle("Hello World");
            Group root = new Group();
            Scene scene = new Scene(root, 300, 250, Color.LIGHTGREEN);
            scene.getStylesheets().add("/style/style1.css");
            // Create children
            Text text1 = new Text("Text1");
            Text text2 = new Text("Text2");
            // Create parent and set style
            VBox vBox = new VBox();
            vBox.getChildren().addAll(text1, text2);
            vBox.getStyleClass().add("font-normal");
            root.getChildren().add(vBox);       
            primaryStage.setScene(scene);
            primaryStage.setVisible(true);
    }Style1.css
    .font-normal {
        -fx-font-size: 9pt;
        -fx-font-family: "Arial";
        -fx-fill: #FF0000;
    }Edited by: Simosh on Jun 10, 2011 4:24 PM

    Hello Simosh,
    I know you are thinking of VBox as container so their children must have inherited the css of parent like as of HTML <div> pattern. But in JavaFx this is different every node has it's CSS implemented from the Parent of their extended class . Even if you add children inside VBox CSS has nothing to do with children. So to make children to use the css of VBox then you must call getStyleClass().add() explicitly for every children.
    Either you call getStyleClass() for every node
    or you can make a custom Container as on below
    A sample getChildren() overriding of VBox which make VBox children to use their parent css.
    Algorithm to make your custom VBox
    class MyBox extends VBox{
         @Override public ObservableList<Node> getChildren(){     
              //iterate children of super
                   //now bind your children.styleclass with super.styleclass
              //end of iterate
              //return children
    }Thanks.
    Narayan

  • GSS/CSS Misc Issues

    Folks,
    Please help me out here as I am about to bang my head against the door :-)
    1. Do you guys know that CSS with content rule having application ssl or content rule with url "*/" (layer 5 content rule) replies to port ping. GSS is configured to send tcp 443 to a VIP and it always respond though backend services are dead!!
    2. From 1, if this behaviour is true,how do I'll able to detect VIP failure using GSS?
    3. KAL-AP keepalives on GSS! how they work or able to detect failures for VIPs with same ip address but different ports! Say I have VIP 1.1.1.1 configured for port 80 and port 443. I am using KAL-AP on GSS, how GSS will know whether port 443 is down or 80.
    Thanks in advance,
    Shahid

    First of all, I am by no means an expert in GSS, but, hopefully I'll be able to help a bit...
    Your questions seem to hinge on 1 particular problem: VIP is still up although the back-end service(s) is/are down, caused by keepalive reporting active server(s).
    Now, based on my understanding of the CSS and GSS, CSS is really the one responsible to make sure if a VIP is up or down, not the GSS. GSS only polls the VIP(s) to see if it's up/down/loaded. So, the solution to your problem should lie in your CSS implementation.
    In our CSS implementation, we have also found that sometimes when the backend services are down, the CSS still reports the VIP being up. The primary cause of this problem has been the keepalive using a basic TCP polling. Consider this, an web application running on a web server may be down, but the web service itself is still up. In this situation, when you configure a keepalive to poll on TCP 80, it will be successful. This is normal, because the web service itself (which listens on TCP 80) is still up.
    One possible solution to the problem is for the app developer to come up with a keepalive within the app itself, that generates a specific web page (say alive.html). Now, you can then configure a CSS keepalive to check the existence of this file. If the file does not exist, then the keepalive will fail, hence the VIP will be down.
    Just my 2cents.
    Cheers

  • Transparent failover of CSS services

    I need help understanding service failure and the action taken by the CSS to rebalance the traffic.
    I am working on a project to replace a non-Cisco load balancer that works by receiving each packet and forwarding it to all of the web servers. The web servers are stateful at the application layer. This is an on-line brokerage application.
    Currently, any server can be taken down hard and the user does not experience an outage since another server takes over and is already receiving the traffic (at least this is my understanding). I would like to try to replicate this functionality as closely as possible. Suspending a service is not desirable since a user can stay active for extended periods and the application team needs to fix the server/application and get it back in production quickly.
    What is the recommended CSS implementation for this application?
    Currently, SSL termination is performed by the server. We are also investigating the SSL module in the CSS.
    Option 1: SSL on the server
    - When one service fails, can the CSS initiate a TCP connection to another service and update the flow table without the client being affected?
    Option 2: SSL Module in CSS
    - Is there anything in the CSS that makes this easier or more difficult to implement?
    Any help would be appreciated.
    Thanks,
    Rob

    HI Rob,
    first of all I do not know any possible implementation to do statefull SSL-Failover on any hardware box. I heard rumors that some servers should be able to do this but from my understanding this is quite hard to implement as the servers have to replicated all key pairs used in any SSL-Connection.
    For taking servers out of service there is an easy way. Define a testing URL. As soon as this URL is no longer responding (i.e. by renaming the testing file) the server is taken out of the loadbalancing and the session are load balanced.
    IN terms of the SSl-Module it will help you reducing the CPU-Usage of your servers (only true if they do not have a seperate HW in their servers for SSL) but be aware that you might have to configure backend-ssl as this is a banking environment. Another thing I'm quite sure is that the the two SSL-Modules are not able to do statefull failover but maybe this knowledge is out-dated and someone could shade some light on this.
    Hope that helped.
    Kind Regards,
    Joerg

  • Have a simple External .css link, but it is overridden by basic & agl-styles css?

    Hello
    Have just ?up-graded? to GoLive 9. Yes I have CS3 DW. I'm to old to change at this point.
    Long time user with many websites, designed with GoLive 7. Most of these sites I have created, using one external "textMaster.css". All is fine.
    I've created a simple new Golive 9 site with one "index" page. Imported one of my External.css, and placed this file in the CSS folder that GL9 creates.
    On this index page I link to my external css, as in GoLive 7. Now I add a Grid layout, add a text box, and type some text. Once I'm finished, I select all the text and at the top menu bar assign [H1] to my text. In Golive 7, this would then use the [H1] text font,size,colour,etc. When I do this with GoLive 9, a two new external css are generated.
    agl-styles.css
    basic.css
    The font size now seems to follow the agl-styles css, which for some reason has a font size of 66px assigned to [H1]???
    If I delete the above two css files, the font DOES assign MY textMaster.css correctly. However as soon as I create another text box and then assign [H1] to it. All the text boxes on the page once again go to 66px. Also in the external css window, these two unwanted css files are back. In the "code" view, they are also now there.
    What am I doing wrong?
    I have also tried this with a small existing GoLive7 website, that I opened and updated in GoLive 9. Same story.
    I have looked in the GoLive9 pdf manual to find out what a "agl-styles.css" file is, and how to stop it from being generated. No luck.
    Thanks in advance for any direction.

    Thanks Nate for your answer.
    It's a VERY SAD SAD DAY, when one of the only reasons I was going to update from 7 to 9 was for a more up to date .css implementation.
    SO VERY SAD to see, the most very basic one external text css, not work on a page.
    I'm back to V7, got a refund from 9. Soon this forum which I have used for 7 years, will look like the hallways of the Vancouver airport at 11:47pm.
    Thanks Nini, Nate, etc. I'll still be visiting this forum until it dies.
    SAD SAD SAD! I'm sorry sir, there is now only one brand of car, it comes in one model and you have no options.

  • Report viewer issue

    I have an SSRS report that is being displayed in a custom asp .net report application through the ReportViewer control (VS2010). The SSRS report renders fine on the Report Server and through Report Manager, but in the Report Application, the column widths
    and heights are stretched and expanded, throwing the formatting of the tablix completely off. I believe it's an issue with the tags in the ReportViewer control. Does anyone have any idea at the top of their head as to why this may be occurring? Thank you kindly
    in advance for any suggestions.

    Hi prathapReddy17,
    Based on my research, there are a number of reasons that can cause this issue:
    The browser that run the report. We can try to use another browser to run the report check again.
    We have set the width and height of ReportViewer Control to 100%. For more details, please see:
    http://stackoverflow.com/questions/15578035/ssrs-report-formatting-problems-in-asp-report-application
    ASP.NET is probably using a form of CSS implemented through 'master pages' if we are doing the standard ASP.NET creation through VS. Can you turn it off temporarily to troubleshoot or create a page that does not implement the master page and then host the
    SSRS through that?
    Is this all reports from SSRS or just some of them? The SSRS language is just XML and we may be able to nest a report object in say a rectangle and see if that can trick the front end's markup.
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Customizing Chart Legend

    As per the API, a chart's legend has public-read protected access. However, when I extended the BarChart3D and tried to init the textFill and font, it failed to reflect in the chart. I also attempted overriding the legend which also did not result in the intended result. Does anyone have any insight that might help in this situation.
    Here is my custom BarChart3D class (using init):
    public class CustomBarChart3D extends BarChart3D{
         init{
              legend.textFill = Color.rgb(130, 175, 115);
              legend.font = Font.font("Times New Roman", FontWeight.BOLD, 12);
    }Here is my custom BarChart3D class (as an override of the Legend):
    public class CustomBarChart3D extends BarChart3D{
        override var legend:Legend = Legend{    textFill: Color.rgb(130, 175, 115)
                                                font: Font.font("Times New Roman", FontWeight.BOLD, 12)
                                                items: [LegendItem{text: "test"}, LegendItem{text:"test2"}]
    }

    This may be a case of CSS fighting with user initialized variables. Basically, the CSS pass happens after postinit so the values you initialize might be getting overwritten by CSS. The recommended way of dealing with this is to use CSS to style your legend. I didn't try this, but I think this will work.
         init{
              legend.style = "-fx-text-fill: rgb(130, 175, 115); -fx-font: bold 12pt 'Times New Roman';"
         }Or maybe in .css (I haven't tried this either)
    BarChart3D *.Legend {
        -fx-text-fill: rgb(130, 175, 115);
        -fx-font: bold 12pt 'Times New Roman';
    }FWIW, the "css overwrites user initialized variables" is a [known issue|http://javafx-jira.kenai.com/browse/RT-8851]. From the [css reference|http://download.oracle.com/docs/cd/E17802_01/javafx/javafx/1.3/docs/api/javafx.scene/doc-files/cssref.html] for JavaFX:
    >
    The application of CSS styles affects the values of JavaFX objects' variables. In many cases, JavaFX Script programs can write to these variables if they are public. This raises the possibility that CSS might overwrite values that had been initialized or assigned by a JavaFX Script program. Since CSS styles are applied asynchronously, it's possible that values might be assigned by a program and used for some time before being overwritten by CSS at an arbitrary time later. To avoid problems like this, the CSS implementation applies the following policy to some of the more common variables that are set by CSS style properties. The policy is: if at any point a JavaFX Script program ever writes to a variable of an object, that variable is henceforth never written by CSS, even if it had been set by CSS in the past. This allows JavaFX Script programmers to initialize variables in object literals, and to assign to objects' variables, without fear of those values being overwritten by CSS. However, it's probably best to avoid setting variables both programatically code and from CSS. With controls and charts, setting values from CSS is preferable.
    This policy applies to the following JavaFX variables:
    Label.textFill
    Labeled.font
    Labeled.graphicVPos
    Labeled.vpos
    Node.cursor
    Node.effect
    Node.opacity
    PasswordBox.echoChar
    Text.font
    TextInputControl.font

  • Text validation widget bug?

    I have used text validation in a table body like this:
    <table style="width:20%">
    <tbody id="login_val">
    <tr><td>E-Mail</td><td><input
    name="login" id="login" type="text"></td></tr>
    <tr class="textfieldRequiredMsg"><td
    colspan="2">Enter your login E-Mail.</td></tr>
    <tr class="textfieldInvalidFormatMsg"><td
    colspan="2">Enter a valid E-Mail address.</td></tr>
    </tbody>
    <tbody>
    <tr><td></td><td><input
    name="submint" id="submit" type="submit" value="Log
    In"></td></tr>
    </tbody>
    </table>
    Initialised with: var login_val = new
    Spry.Widget.ValidationTextField("login_val", "email",
    {validateOn:["blur"]});
    If there is an input error - the error table-row shows up as
    expected but the first td of the first row (the one showing the
    word 'E-Mail') suddenly has a colspan"2" on it too. (tested only in
    Firefox)
    Do I miss something here? Or is this a bug? Feature???
    Cheers from down under.

    Hello,
    I think the problem in this situation appears because of the
    CSS definition. The default definition right now to display an
    error message is:
    .textfieldRequiredState .textfieldRequiredMsg,
    display: inline;
    color: #CC3333;
    border: 1px solid #CC3333;
    When this class is used with table rows the results are
    unexpected because the table rows have a special status and cannot
    normally be displayed as an inline element. Unfortunately your
    scenario hit a browser limitation in the CSS implementation. The IE
    because it doesn't have yet support for display:table as the CSS2
    specify will render "correctly (?!)" the display:inline or
    display:block on table row elements. FF because it has correct
    support for display:table-row will work incorrectly with the inline
    as the specification mention.
    The only solution I see is to manipulate the CSS height
    property, margin and padding instead of manipulating the display if
    you want to continue to use the table structure above.
    Regards,
    Cristian

  • Weblogic.security.service.NotAuthorizedRuntimeException

    We see the following exception occur at random. We are trying to access a CMP ejb
    that connects to an Oracle db. It works fine at times.
    Any help would be appreciated.
    Thanks.
    weblogic.security.service.NotAuthorizedRuntimeException: [Security:090419]Subjec
    t "<null>" is not the kernel identity
    at weblogic.security.service.SubjectManagerImpl.checkKernelIdentity(Subj
    ectManagerImpl.java:215)
    at weblogic.security.subject.DelegatingSubjectStack.getCurrentSubject(De
    legatingSubjectStack.java:31)
    at weblogic.security.service.SubjectManagerImpl.getCurrentSubject(Subjec
    tManagerImpl.java:61)
    at weblogic.security.service.SecurityManager.getCurrentSubject(SecurityM
    anager.java:43)
    at weblogic.rjvm.JVMID.getClusterURL(JVMID.java:1204)
    at weblogic.rjvm.JVMID.getClusterURL(JVMID.java:1192)
    at weblogic.rjvm.RJVMImpl.getClusterURL(RJVMImpl.java:596)
    at weblogic.rmi.cluster.ClusterActivatableRemoteRef.readExternal(Cluster
    ActivatableRemoteRef.java:124)
    at java.io.ObjectInputStream.readExternalData(ObjectInputStream.java:168
    6)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1
    644)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
    at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:18
    45)
    at java.io.ObjectInputStream.defaultReadObject(ObjectInputStream.java:45
    2)
    at weblogic.rmi.internal.StubInfo.readObject(StubInfo.java:116)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:324)
    at java.io.ObjectStreamClass.invokeReadObject(ObjectStreamClass.java:838
    at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1746)
    at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1
    646)
    at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
    at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
    at weblogic.common.internal.ChunkedObjectInputStream.readObject(ChunkedO
    bjectInputStream.java:119)
    at weblogic.rjvm.MsgAbbrevInputStream.readObject(MsgAbbrevInputStream.ja
    va:112)
    at weblogic.rmi.internal.ObjectIO.readObject(ObjectIO.java:56)
    at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:159)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteR
    ef.java:285)
    at weblogic.rmi.cluster.ReplicaAwareRemoteRef.invoke(ReplicaAwareRemoteR
    ef.java:244)
    at com.sun.j2ee.blueprints.customer.ejb.CustomerEJB_tzvy3k_HomeImpl_811_
    WLStub.findByPrimaryKey(Unknown Source)
    at com.kinzan.library.ecm.login.LoginAction.handleEvent(Unknown Source)

    Balaji Rajasekaran <> writes:
    i couln't find that in weblogic.jar ( WLS 10 )In 10 it will probably be in the css implementation. I'm not sure what
    the name of the jar is.
    andy

  • Weblogic/security/service/SubjectManagerImpl

    In which library/jar this class can be found weblogic/security/service/SubjectManagerImpl ????

    Balaji Rajasekaran <> writes:
    i couln't find that in weblogic.jar ( WLS 10 )In 10 it will probably be in the css implementation. I'm not sure what
    the name of the jar is.
    andy

  • Muse recently updated with Yosemite Update web fonts not working

    I recently updated my OS to Yosemite at work, but not at home. a site that was using font awesome that was working/previewing/exporting/uploaded and functioning fine is now not showing font awesome icons. I didn't upload to the server because even though it previews in Muse fine, they are not shown on export. Even the template files that are the original HTML files (included with the muse template) are not showing the web fonts. I thought it was the operating system but when drop boxed to my computer at home and checked there (Mountain lion OS) It still doesn't show.
    I'm not understanding where the issue is. Any thoughts?
    Work version is 2014.2, unclear about home version- could possibly not be that update, I think I installed in November. I didn't have any problems with this file since updating to Yosemite at work. Although never went through a final HTML export so I suppose it could have been doing it for the last few weeks I have been working on this site.
    Thanks!

    From the screen shot, I expect you're on Windows and have ClearType turned on (on is the default OS setting). The top text is drawn using Adobe's technology. The bottom would be drawn with ClearType. Microsoft's ClearType technology is one of several font anti-aliasing techniques. ClearType's approach is strongly biased toward making vertical stems appear smooth and of consistent width at the expensive of having horizontal portions of text appear less smooth. If you turn off ClearType on your computer the text will be rendered differently.
    Each operating system has it's own approach to drawing text, and in fact both Windows and Mac have multiple approaches. Windows adds numerous end user controls on top of that. And each browser has the freedom to implement different rendering as well. There's nothing under the control of a website authoring tool that can cause live text to have an identical rendering when rendered by different browsers or operating systems.
    This is one of the limitations of the web medium.
    Cross browser compatibility generally refers to the large category of issues where a browser, or browser version, entirely lacks support for various features of HTML/CSS, implements those features differently from other browsers, or has bugs such that various features either don't function correctly or don't function consistently. Muse contains hundreds of pieces of code to compensate for these idiosyncracies between browsers.

  • Place in the center the column texts

    Hi BW knowledge broadcasters,
    I am looking for the method to place in the center the column texts. It seems it could be in the css implemented in the WAD web template. But I don't know neither for the queries built directly with the Query Designer.
    Thanks in advance.
    Geo

    One problem you will encounter is that the column headers and the rows have the same class associated to them and if you set this to center, your rows will also be centered.  You will need to either use the Table API to change the class of just the column headers or possibly with javascript.  To find the class, run the query in the web, right-click and select view source, search for the text in the columns and find the associated class referenced in the HTML. 
    Here is a link to all of the styles in the standard BWReports.css:
    <a href="http://help.sap.com/saphelp_bw33/helpdata/en/3f/ca453afbf37b54e10000000a11402f/content.htm">http://help.sap.com/saphelp_bw33/helpdata/en/3f/ca453afbf37b54e10000000a11402f/content.htm</a>
    This is specific to BW 3.x.  In 2004s, the styles are now driven from the Portal theme. 
    Thanks,
    Jeff

  • Javafx 1.3.1 multiple display environment

    Hi all,
    I'm currently using javafx 1.3.1.
    I need to know when the user drag the window from one display to another in order to adjust the stage resolution.
    any help will be appreciated
    Moti

    You can still follow Control, Skin, Behavior model for implementing custom controls. Its just that you cannot extend any of the internal classes, actual implementation of control is now in CSS file. There are no official documentation for customizing JavaFX 1.3 CSS implementation though.
    You can refer to below articles..
    JavaFX Control Styling: http://pleasingsoftware.blogspot.com/2010/04/advanced-javafx-control-styling.html
    Building Custom Controls: http://jonathangiles.net/blog/?p=478

Maybe you are looking for

  • Can I have a Face Time conversation between two Apple devices using the same Apple ID?

    Can I have a Face Time conversation between two Apple devices using the same Apple ID?

  • Itunes to apple tv 2 not connecting

    When I am in iTunes and I want to play music and listen to it on my stereo, I connect to my Apple TV 2. My ATV2 is connected to my TV which is connected to my stereo - it's all digitial and it's great when it works. But lately I can't get my iTunes t

  • Forms compatibility between Acrobat Pro 8 and Reader 9

    Hi everyone. I have a problem to resolve as quick as I can. I haven't find any answers yet, maybe someone will know what's going on with my forms. I'm working on a document made by another graphic designer, I can't reach this person. When I use his f

  • Documentation links broken?

    The Documentation link on the Database Home Page takes me to a page with links to the Oracle XE documentation. All of those links seem to be broken.

  • Please help, color printing problems.

    I have snow leopard and just bought a new HP officejet 7500 wide format wireless all-in-one. The problem is when I Print from my boyfriend's PC, the pictures are fine but when I print from my imac, the image I see on the monitor isn't what is printed