Text Wrap Problems

Hello,
I am new to InDesign, and am doing a trial for work. I am trying to create a flyer which involves wrapping text around a background image. I have followed instructions found online but cannot get any further that 'wrap text around image' as for some reason I cannot click on the 'contour options' drop down to select 'detect edges'.
I am trying to wrap the text around the leaves on the right hand side.
Any help would be great, thank you!

i am wondering if it could be something to do with the fact that I had to draw a rectangle over the part of the image I wanted to wrap the text around and work from this? I tried to following the instructions without the rectangle, selecting the whole leaf image, but when I selected 'wrap text around image' the text just vanished!

Similar Messages

  • Text-wrap problem ID CS3 on Intel Mac

    I've recently been upgraded to an Intel Mac workstation running Leopard and for the most part, the transition has been smooth.  However, I just noticed today that I cannot get "detect edges" to work on a text wrap around an object with a transparent background in a placed Photoshop file.  The detect edges only works if I have a white background.  I've never had this problem before, so I wonder if it's a result of my new computer.  I use this function of text wrap constantly, and I'm hoping someone knows if this is a known bug and if there is a work around.

    You don´t have to use detect edges feature for extracted PSD-image.... just select a proper Contour Options Type, Alpha Channel for instance.

  • How to solve text wrapping problem in grid

    I have create a simple ui with grid  and contains a long paragraph text. However the text will not break line to another paragraph and expand the UI width.
    BView.xaml
    <UserControl x:Class="SimpleUI.Views.BView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:resources="clr-namespace:SimpleUI.Properties"
    xmlns:view="clr-namespace:SimpleUI.Views"
    mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="Auto" />
    <ColumnDefinition Width="5" />
    <ColumnDefinition Width="Auto" />
    </Grid.ColumnDefinitions>
    <GroupBox Grid.Column="0" Grid.Row="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" Header="{x:Static resources:Resources.Course}">
    <Grid>
    <Grid.RowDefinitions>
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto" />
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto" />
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width=".2*"/>
    <ColumnDefinition Width="2" />
    <ColumnDefinition Width=".2*"/>
    <ColumnDefinition Width="2" />
    <ColumnDefinition Width=".2*"/>
    <ColumnDefinition Width="2" />
    </Grid.ColumnDefinitions>
    <UniformGrid Grid.Column="0" Grid.Row="1" Columns="2" Grid.ColumnSpan="6" HorizontalAlignment="Center" VerticalAlignment="Center">
    <RadioButton Margin="0, 0, 10, 0" GroupName="ClassType" Content="{x:Static resources:Resources.ClassA}" />
    <RadioButton Margin="0, 0, 10, 0" GroupName="ClassType" Content="{x:Static resources:Resources.ClassB}" />
    </UniformGrid>
    <Border Grid.Column="0" Grid.Row="3" Grid.ColumnSpan="6" BorderThickness="1" Padding="9" BorderBrush="LightGray">
    <Grid>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto"/>
    <RowDefinition Height="2" />
    </Grid.RowDefinitions>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width=".3*" />
    <ColumnDefinition Width="10"/>
    <ColumnDefinition Width=".25*" />
    <ColumnDefinition Width="10"/>
    <ColumnDefinition Width=".25*" />
    </Grid.ColumnDefinitions>
    <TextBlock Grid.Column="0" Grid.Row="0" Text="{x:Static resources:Resources.MaterialA}" />
    <TextBox Grid.Column="2" Grid.Row="0" Width="120" />
    <ComboBox Grid.Column="4" Grid.Row="0" Width="120"/>
    <TextBlock Grid.Column="0" Grid.Row="2" Text="{x:Static resources:Resources.MaterialB}" />
    <TextBox Grid.Column="2" Grid.Row="2" Width="120" />
    <ComboBox Grid.Column="4" Grid.Row="2" Width="120" />
    <TextBlock Grid.Column="0" Grid.Row="4" Text="{x:Static resources:Resources.MaterialC}" />
    <TextBox Grid.Column="2" Grid.Row="4" Width="120" />
    <ComboBox Grid.Column="4" Grid.Row="4" Width="120" />
    </Grid>
    </Border>
    <view:MessageView Grid.Column="0" Grid.Row="5" />
    </Grid>
    </GroupBox>
    </Grid>
    </UserControl>
    MessageView.xaml
    <UserControl x:Class="SimpleUI.Views.MessageView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:resources="clr-namespace:SimpleUI.Properties"
    mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto" />
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>
    <TextBlock Grid.Row="0" Text="{x:Static resources:Resources.Error}" TextTrimming="None" FontWeight="UltraBold" />
    <TextBlock Grid.Row="2" Text="{x:Static resources:Resources.ErrorDescription}" TextAlignment="Justify" TextWrapping="Wrap" VerticalAlignment="Center" />
    </Grid>
    </UserControl>
    MainWindow.xaml
    <UserControl x:Class="SimpleUI.Views.MessageView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:resources="clr-namespace:SimpleUI.Properties"
    mc:Ignorable="d" d:DesignHeight="300" d:DesignWidth="300">
    <Grid>
    <Grid.RowDefinitions>
    <RowDefinition Height="Auto" />
    <RowDefinition Height="10" />
    <RowDefinition Height="Auto" />
    </Grid.RowDefinitions>
    <TextBlock Grid.Row="0" Text="{x:Static resources:Resources.Error}" TextTrimming="None" FontWeight="UltraBold" />
    <TextBlock Grid.Row="2" Text="{x:Static resources:Resources.ErrorDescription}" TextAlignment="Justify" TextWrapping="Wrap" VerticalAlignment="Center" />
    </Grid>
    </UserControl>
    Target Result
    Download Sample Project

    Here is updated code for BView.xaml. It will fix the problem
    <UserControl x:Class="SimpleUI.Views.BView"
                 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
                 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
                 xmlns:resources="clr-namespace:SimpleUI.Properties"
                 xmlns:view="clr-namespace:SimpleUI.Views">
        <GroupBox Header="{x:Static resources:Resources.Course}">
            <Grid>
                <Grid.RowDefinitions>
                    <RowDefinition Height="10" />
                    <RowDefinition Height="Auto" />
                    <RowDefinition Height="10" />
                    <RowDefinition Height="Auto" />
                    <RowDefinition Height="10" />
                    <RowDefinition Height="Auto" />
                </Grid.RowDefinitions>
                <UniformGrid Grid.Row="1"
                             Columns="2"
                             HorizontalAlignment="Center"
                             VerticalAlignment="Center">
                    <RadioButton Margin="0, 0, 10, 0"
                                 GroupName="ClassType"
                                 Content="{x:Static resources:Resources.ClassA}" />
                    <RadioButton Margin="0, 0, 10, 0"
                                 GroupName="ClassType"
                                 Content="{x:Static resources:Resources.ClassB}" />
                </UniformGrid>
                <Border Grid.Row="3"
                        BorderThickness="1"
                        Padding="9"
                        BorderBrush="LightGray">
                    <Grid>
                        <Grid.RowDefinitions>
                            <RowDefinition Height="Auto" />
                            <RowDefinition Height="10" />
                            <RowDefinition Height="Auto" />
                            <RowDefinition Height="10" />
                            <RowDefinition Height="Auto" />
                            <RowDefinition Height="2" />
                        </Grid.RowDefinitions>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="*" />
                            <ColumnDefinition Width="10" />
                            <ColumnDefinition Width="*" />
                            <ColumnDefinition Width="10" />
                            <ColumnDefinition Width="*" />
                        </Grid.ColumnDefinitions>
                        <TextBlock Grid.Column="0"
                                   Grid.Row="0"
                                   Text="{x:Static resources:Resources.MaterialA}" />
                        <TextBox Grid.Column="2"
                                 Grid.Row="0"
                                 Width="120" />
                        <ComboBox Grid.Column="4"
                                  Grid.Row="0"
                                  Width="120" />
                        <TextBlock Grid.Column="0"
                                   Grid.Row="2"
                                   Text="{x:Static resources:Resources.MaterialB}" />
                        <TextBox Grid.Column="2"
                                 Grid.Row="2"
                                 Width="120" />
                        <ComboBox Grid.Column="4"
                                  Grid.Row="2"
                                  Width="120" />
                        <TextBlock Grid.Column="0"
                                   Grid.Row="4"
                                   Text="{x:Static resources:Resources.MaterialC}" />
                        <TextBox Grid.Column="2"
                                 Grid.Row="4"
                                 Width="120" />
                        <ComboBox Grid.Column="4"
                                  Grid.Row="4"
                                  Width="120" />
                    </Grid>
                </Border>
                <view:MessageView Grid.Row="5" />
            </Grid>
        </GroupBox>
    </UserControl>

  • Text Wraps on Interactive Report

    I created an APEX 4.1.1.00.23 application with some interactive reports. On the interactive reports I had a problem with text wrapping around so a string like this:
    505 EAST 144TH STEEET
    Would display as:
    505 EAST
    144TH
    STREET
    I corrected the problem with the following java script in the Execute When Page Loads page attribute:
    $('td[headers="ADDRESS"]').attr("style","white-space:nowrap");
    The user requested that the report break on two columns. I opened Actions>Format>Control Break, selected the columns, and saved the report. Now the java to format the address column does not seem to take effect. Before I applied the breaks the text would sometimes wrap and I could correct it by pressing the F5 key but this does not work anymore. How do I get the java script to take effect or otherwise correct the text wrapping problem?

    Comet wrote:
    I created an APEX 4.1.1.00.23 application with some interactive reports. On the interactive reports I had a problem with text wrapping around so a string like this:
    505 EAST 144TH STEEET
    Would display as:
    505 EAST
    144TH
    STREET
    I corrected the problem with the following java script in the Execute When Page Loads page attribute:
    $('td[headers="ADDRESS"]').attr("style","white-space:nowrap");
    The user requested that the report break on two columns. I opened Actions>Format>Control Break, selected the columns, and saved the report. Now the java to format the address column does not seem to take effect. Before I applied the breaks the text would sometimes wrap and I could correct it by pressing the F5 key but this does not work anymore. How do I get the java script to take effect or otherwise correct the text wrapping problem?See +{message:id=9208685}+
    With the control break the IR generates different mark-up, so you need to add another selector to the rules so there's a match on the column cells in both the standard and break report views.

  • ID CS5: Problem with Text Wrap being Forgetful :(

    I am having a problem with text wrap. Whenever I open this INDD file I am working on now, some of the images shift from having what I call "actual" text wrap to having "false" text wrap. "Actual" text wrap *actually* wraps the text around the image as it is supposed to; "false" text wrap says that "Wrap Around Bounding Box" is applied to the image yet no text is wrapped. After opening the file, making sure to unset and reset the text wrap on each offending image to show an "actual" text wrap WITHOUT changing layer order, saving the file, closing, and reopening, some images have "false" text wrap again! This is a 77 page document with images on every page.
    Another occurrence is if I largely change the flowed text. If I must remove a paragraph on page 7, for example, then the "actual" text wrapped images on page 10, 12, and 18 change to "false" text wrapped images and I have to reset the text wrap on each image. There are often images in between offending ones that DO NOT change, but it doesn't seem to be the same ones each time. So once image A, C, and D will change to "false" text wrap, while B, E, and F are fine; the next time, A, B, and F are wrong and the others are fine. This is driving me crazy as I have never in 8 years of using InDesign encountered a problem using Text Wrap. Please note:
    Ignore Text Wrap IS NOT selected.
    The text box IS below the images.
    The copy is flowed throughout the document.
    Preferences>Composition>"Text Wrap Only Affects Text Beneath Selected"" DOES NOT FIX IT.
    "Wrap around bounding box" IS showing as selected for the image/images.
    There is NO CLIPPING PATH / PHOTOSHOP PATH / ALPHA PATH on these images.
    The images / text box order is not changed between being correct and being incorrect.
    Anyone else with this trouble? And, if so, how did you fix it? Thanks,
    A. Henson
    InDesign 7.0.3
    iMac i7
    8GB RAM
    OS X 10.6.6

    @henson26,
    I emailed you offline to see if you can provide me with an example file that shows the problem.
    Matthew

  • Problem with text wrap on anchored objects

    Hi, I'm using CS5 on a Macbook Pro OS 10.6.8
    I'm laying out a multiple page biographies section of a conference program and I need to anchor the photo boxes to the beginning of each new bio. I made a photo box and assigned it the proper text wrap attributes. But when I copy and paste the photo box into the text, it sits on the line of type and the text is not wrapping properly at all. I've included a screen shot to illustrate the problem. I want it to wrap as shown in the right column. But what I get is what you see in the left column.
    Any help would be greatly appreciated.
    Diane

    But then I'd have to do that every time I place hundreds of these boxes, right? Instead I've created a style sheet for the paragraphs with with boxes to have a 6 line drop cap and that seems to be working. Probably a wierd work-around. I'm open to another more straightforward method of getting the anchored box to sit within the copy every time I paste it in.

  • Problems with Text Wrap

    Hello,
    I'm new and getting more and more frustrated trying to wrap text around a couple of images in InDesign.
    I saved my picture file as, Save for Web & Devices in Photoshop, and in the text wrap options I clicked "wrap around object shape" and under contour options I chose Detect Edges. I don't know what I'm doing wrong and all of my searches for possible errors are coming up short.
    Does anyone know what I could be doing wrong?
    Thank you so much for your help!

    Err, is this related to scripting somehow? You know you are posting in the scripting forum?

  • WD ABAP: Problem with Header text wrapping in Table Column

    Hi,
    I am unable to achieve Header Text wrapping for the TABLE columns. I have set the property "HeaderTextWrapping" to TRUE for each column and the "Fixed table layout" property has been set to TRUE.
    Is there some property of the table/column I have to set to achieve this? Or does selection of a specific property remove option of HeaderText Wrapping?
    Thanks,
    Adithya

    hi..
    Try increasing the width of column keeping other thing as it is as you have done. And yes check whether cell editor property wrapping is set true.

  • Text Wrap options not showing in InDesign CS3

    Using InDesign CS3 on a Mac 10.4.  I've had this problem for a couple of months now and it's getting past the point of annoying.  When I open my text wrap options pallete it's blank even when I expand options.  I can see the text wrap icons in my header panel, but I no longer have options to change the right/left/top/bottom margins.  Just a general "add wrap" and "remove wrap".  Is there any way I can get my pallete back?  I've tried defaulting my tools, but still it does not show up.  I don't know what to do to get it back.

    Did you try resetting preferences? While pressing Shift+Option+Command+Control, start InDesign. Click Yes when asked if you want to delete preference files. If you don't get the message about deleting preferences, you weren't fast enough.
    http://livedocs.adobe.com/en_US/InDesign/5.0/help.html?content=WSa285fff53dea4f86173837510 01ea8cb3f-6d1e.html
    Ken

  • Text Wrap not working in Muse (CC 2014)

    I'm attempting to wrap text around a slideshow.  I have already inserted the slideshow in the text box, used the wrapping options to justify to the left, with the text running to the right and beneath the slideshow.  In the design layout, it shows up perfectly.  However, in the preview tab as well as previewing on the web, the wrapping does not show.  The slideshow simply appears over the text, with the text running behind the slideshow.  Any ideas on how to fix this problem or is it simply a bug that Adobe needs to eventually correct?  Thanks for your help!
    All my best,
    Rob

    Hard to tell from the screenshots. A couple nuances of text wrap that may be unexpected:
    1) If you select an item with text wrap and move it up or down in Design view, that will move the item but will not change the area that is knocked out for text wrap purposes. Thus text can overlap on object that has text wrap applied if the item has been moved up or down while in the text flow.
    2) Where an object is inserted in a flow is important. Generally it will provide the most predictable behavior if the graphic is inserted at the very start of a paragraph. If a graphic is inserted in the middle of a paragraph and text wrap is applied, exactly where the graphic will appear will be dependent on how the browser line breaks the text of the paragraph before where the graphic was inserted. A change in line breaks can result in the graphic appearing a line higher or lower in one browser versus another, since every browser has it's own text layout engine.
    Assuming neither of the 2 points above fit what you're seeing, it's probably most expedient to send us the .muse file along with a link to this thread for context at [email protected] and a note to let us know where to find the problem situation within the file so we can see the exact situation and settings for what you're encountering. If the file is larger than 20Mb you'll want to send it using a service such as Adobe Send, WeTransfer, Dropbox, etc. Thanks.

  • Formatting options with text wrap

    We are running BPC MS v10 and gave users the ability to enter comments with our input forms this year.  I am pulling the comments into a summary report using a local member which works fine.  The problem is I want to format these cells and use left alignment with word wrap enabled in order to view the full comment in each cell.  When I select any of the cells in the comment column the alignment and text wrap options are both "selected" in the Excel ribbon but it is not wrapping the comments onto the next line.  I have to uncheck the wrap text option in the ribbon and reselect before it will actually wrap to the next line.
    Has anyone else experienced this issue?

    loulou6 wrote:
    Hi Jerry
    It was a word document that wasa emailed over to me, is there any way I can reformat the document to clear any unseen formatting issues. Trying to avoid retyping the whole document,
    Many thanks
    Lou
    Not trivial, but you could Select All, Copy to get the entire imported document onto the Clipboard. Then open a New Pages Word Processing document and then Edit > Paste and Match Style. The new document will match the defaults in the template. If you find that you will be doing this often, make a custom template for this use.
    Jerry

  • Text wrap effects text in different columns differently

    In InDesign CS4, if you have a 2-column text box and a graphic with a text wrap that spans from one column into another, the text wrap will offset the text in the two columns by different amounts if the graphic is aligned with the top of the text box. That shouldn't happen; the very same text wrap on the very same graphic should offset the text in the two columns by the same amount. But it doesn't. The baselines will not line up from column to column.
    Clearly you can get around this if you snap to a baseline grid. But what if you don't want to use baseline grid? Is there a way to get the text wrap to offset the text in both columns equally?
    I have attached a screen capture to demonstrate the problem. In this case, the baselines align, but the text wrap is clearly affecting the text in the left column and not affecting the text in the right column, even though they are aligned on the same baseline! Any suggestions?

    You're right, it shouldn't happen, but it's a long-standing bug (or feature).  One workaround is to use a baseline grid. Another is to adjust the wrap offset so that it matches the baseline in the opposite column. Another way is to not design so a wrapped object blocks the full width of one column but not it's neighbor. It doesn't matter where you have the wrapped object -- if it completely blockst the top of one column and leaves a any space at the top in an adjacent column where text will fit, you'll get the potential for unbalanced baselines.
    The reason it happens is that in a column where text can reach the top, the baseline for the first line is controlled byt he first baseline settings in the text frame options. If the text can't reach the top of the column the positioning is controlled by the depth of the object and any additional offset for the wrap.

  • Text wrap dialogue box is blank in CS3

    I am not able to view the options in the text wrap dialogue box - why? I have restarted InDesign and my computer but there are no options showing in the dialogue box. I use text wrap all the time so this is a major problem for me. Thanks for your help!

    Try resetting preferences. http://livedocs.adobe.com/en_US/InDesign/5.0/help.html?content=WSa285fff53dea4f86173837510 01ea8cb3f-6d1e.html
    Immediately after starting Indesign, hold down Ctrl-Alt-Shift (Shift-Opt-Cmd-Cntrl on Mac). If you don't get a message about deleting preferences, you weren't fast enough.
    Ken

  • ID CS3: Text Wrap stopped working!

    I suddenly have an odd problem: a text box that refuses to honor the text wrap setting on another box. The one that is supposed to force the wrap does have the wrap turned on. The box that is supposed to honor the wrap setting is not set to ignore the text wrap.
    I've tried the common fixes like going into composition preferences and toggling on and off the "Text Wrap Only Affects Text Beneath" box, and trashing ID's preferences. In addition, I have run Onyx to repair permissions and run maintenance scripts, and in desperation also cleaned the font cache.
    I'm really stumped here. The box that the text is supposed to wrap around is an object that I keep stored in a library (a column head for a regular contributor to a magazine), and it has performed flawlessly for months. Nothing is changed in that respect from the previous issue of the magazine. The two boxes are on different layers, but that has been no problem in the past.
    I should add that the problem is not limited to that particular library item; it seems to also happen with other column heads from that same library.
    Does anyone have any hints as to where I should go from here? I'm at a bit of a loss

    Finally discovered the problem. Somehow my text box default had changed from text wrap off to text wrap on (I'm sure I wasn't paying attention at some point) and, with both text boxes set to wrap, they were somehow canceling each other out.
    Once I shut off the text wrap on the article box, everything snapped back to normal.
    (whew)

  • CS4 text wrap over anchored object

    Every time I place an anchored object (doesn't matter if it's graphic or text frame) and apply text wrap, Indesign freezes permanently and only solution is killing it via task manager.
    I opened CS3 file with anchored objects w/ txt wrap and the same freeze happens when trying to move, delete or apply different wrap settings to object.
    It never happened in previous version of ID on my machine.
    Any solution to this problem? Thanks.
    My PC conf.:
    AMD x2 2.7
    2GB RAM
    Vista 32bit

    The first thing to try is replacing your preferences.
    http://livedocs.adobe.com/en_US/InDesign/5.0/help.html?content=WSa285fff53dea4f86173837510 01ea8cb3f-6d1e.html

Maybe you are looking for

  • Podcast freezes when i open and has to be closed with task manager.

    When I click into podcasts, it freezes almost instantly and has to be closed with task manager. I believe the culprit may be a login window that pops up asking me to enter a password for a premium service i once used from a certain podcast that i no

  • JSP & MySQL

    Hi! I am Pranay. I want to connect my JSP with MySQL. Will you please help me? I want the detail-code and pre-coding instructions..... General Informations: 1. JDK 1.5.0 2. Apache Tomcat 4.1 3. MySQL Server 5.0 4. MySQL Connector/J 5.0.4 5. JAVA_CLAS

  • Customer expected delivery  report

    Hi, I would like to be able to run a report that will give me time to ship for an order (time order entered into system to time actually shipped) and compare that to customer expected delivery and whether items have safety stock or no safety stock. T

  • Trouble Printing PDF's scanned with Image Capture

    OK this is a strange problem.  I have Macbook Pro and a Lexmark E230 laser printer which prints everything out just fine in safari, word, pages, numbers - anything except PDF's that are specifially scanned with the Image Capture application. I printe

  • Looking up Identical EJB both locally and remotely

    prior to posting this request, i have read and attempted multiple solutions to this problem suggested in the forums to no avail. if i have the same EAR, which contains both an EJB Component and a WAR, deployed to multiple servers, is it possible to l