Urgent help requested : How to cluster SOAP (via EJB) in WLS 7.0 SP 01?

Hi all,
I am able to deploy simple EJBs across clustered WLS instances.
I am unsuccessful in doing the same for a web service (SOAP) using EJBs. The application
gets deployed but successive requests do not round robin among available services.
I think somehow I need to do some cluster tweaks to the receiving WLS servlet
that peeks into the SOAP message and forwards it to the right service.
Could someone please help me out?
I would be most grateful.
Thanks a lot.
Guha

          A couple of entries in webservices.xml file and making the proxy from the web server
          reach out to the cluster instead of trying to make the https client do so.
          

Similar Messages

  • Urgent help requested- MSS

    Hello people,
    consider the following scenario
    work flow is getting triggered to the Line manager (chief) and so on to next agents
    How can we make use of substitution in following scenarios
    scenario1- planned leave by Line manager (I think this can be done using substitution in MSS)
    Scenario 2- Unplanned leave by Line manager
    scenario 3- position of Line manager is vacant
    The workflow i am using is not a standard woprkflow.
    The above scenarios are applicable in case of leave approval and trip request approval.
    Urgent help appreciated.
    Thx

    Forgive if the terms are not excact - my system is not in English.
    For scenario 1: Use substitution rule "receives my tasks" when setting up substitutions in the uWL
    For scenario 2: All managers should have a substitution rule "is my substitute".  Then the substitute can go into the substitution rule and take over the tasks.  This can then be discontinued when manager is back
    For scenario 3: Switch WFLOW VAPOS = X  determines the behaviour when manager position is empty. .  For some reason the switch is not there in standard - but we set it just for this scenario. The Workflow then checks up the hierachy and finds the next manager.
    /Kirsten

  • Urgent help need:How inventory system and fulfillment system work

    Hi Every one ,
    I have an requirement to work on inventory and fulfillment system,below are my questions,
    1)I have stock level quantity for an sku is 2 ,if one user done with his order with quantity of 2 then how we can show quantity to the second customer (if stock not available we gone loss the business )
    how we can handle this ?
    2)There are few orders are completed(if some are orders are having quantity available in stock some or backorders)
    here how the fulfillment system understand those orders and how it will update the inventory.
    Could you please any one help me how to work on above requirements or else give me some other solutions to full fill above .
    Regards,
    Jyothi Chidurala
    Edited by: Jyothi.mj on May 22, 2013 5:08 AM
    Edited by: Jyothi.mj on May 23, 2013 4:28 AM

    >
    1)I have stock level quantity for an sku is 2 ,if one user done with his order with quantity of 2 then how we can show quantity to the second customer (if stock not available we gone loss the business )
    how we can handle this ?
    you can always call InventoryManager.AVAILABILITY_STATUS_IN_STOCK to check whether the item is available in inventory , It is the business call if item not available how they want to handle this .
    hope this helps

  • Urgent HELP! how to resize a layout and change the color from black to white

    Hey!!!
    im in urgent help of someone to answer my questions. I have a huge Indesign exam monday and two of the questions are   
    -resizing a layout
    -changing a color layout to black and white
    I have done many porjects in Indesign but to be honest i don't know what they are refering but resizing a layout or changing the layout color to black and white. If any body can explain me this a little be I be so thankful!
    Thanks,
    Fiama Piccardo

    I've decided to relent a little and give you a hint, so you can do some looking and figure this out for yourself. Everything you need for either of those tasks is accessed from the File menu...
    And a further hint. Indesign does not have a black and white or grayscale working colorspace, so you never truly have a black and white layout, though all of the objects in the file may use only black ink. You can, however, output a PDF, in a couple of ways, that will convert your color file to one that uses only black.

  • Urgent help request

    need urgent help with Lightroom
    can a person from support department help me please?

    This is user-to-user forum.
    We can try to help you here, or you can contact Adobe Customer Care here:
    Contact Customer Care

  • Urgent Help. How to send the email in HTML format in Version 4.6c

    Hi,
      Please help me how to send a mail in HTML format with logo and specified format. Is it possible to send the SAPscript or Smartform in HTML format to external mail address.  The logo and the format is very important in this e-mail.
      quick response will help me better.
    Regards,
    Naidu

    Here is a sample program which emails HTML in the body.  Of course you can put an HTML tag in there that would point to the logo on some server(internet).  Notice we are just putting the HTML code in the MAILTXT table,  This is how we do it at my company.
    report zrich_0002.
    data: maildata   like sodocchgi1.
    data: mailtxt    like solisti1 occurs 10 with header line.
    data: mailrec    like somlrec90 occurs 0  with header line.
    start-of-selection.
      clear:    maildata, mailtxt,  mailrec.
      refresh:  mailtxt, mailrec.
      perform build_text_message.
      perform build_receivers.
      perform send_mail_nodialog..
    *      Form  BUILD_TEXT_MESSAGE
    form build_text_message.
      maildata-obj_name = 'TEST'.
      maildata-obj_descr = 'Test Subject'.
      mailtxt  = '<html>'.
      append mailtxt.
      mailtxt  = '<head>'.
      append mailtxt.
      mailtxt  = '<title>Untitled Document</title>'.
      append mailtxt.
      mailtxt  = '<meta http-equiv="Content-Type" content="text/html;'.
      append mailtxt.
      mailtxt  = 'charset=iso-8859-1">'.
      append mailtxt.
      mailtxt  = '</head>'.
      append mailtxt.
      mailtxt  = '<body>'.
      append mailtxt.
      mailtxt  = '<div align="center"><em><font' .
      append mailtxt.
      mailtxt  = 'color="#0000FF" size="+7" face="Arial,'.
      append mailtxt.
      mailtxt  = 'Helvetica, sans-serif">THIS'.
      append mailtxt.
      mailtxt  = '  IS A TEST </font></em><font' .
      append mailtxt.
      mailtxt  = 'color="#0000FF" size="+7" face="Arial,'.
      append mailtxt.
      mailtxt  = 'Helvetica, sans-serif"></font>'.
      append mailtxt.
      mailtxt  = '</div>'.
      append mailtxt.
      mailtxt  = '</body>'.
      append mailtxt.
      mailtxt  = '</html>'.
      append mailtxt.
    endform.
    *      Form  BUILD_RECEIVERS
    form build_receivers.
    *  mailrec-receiver = '[email protected]'.
      mailrec-rec_type  = 'U'.
      append mailrec.
    endform.
    *      Form  SEND_MAIL_NODIALOG
    form send_mail_nodialog.
      call function 'SO_NEW_DOCUMENT_SEND_API1'
           exporting
                document_data              = maildata
                document_type              = 'HTM'
                put_in_outbox              = 'X'
           tables
                object_header              = mailtxt
                object_content             = mailtxt
                receivers                  = mailrec
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                others                     = 8.
      if sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      endif.
    endform.
    Regards,
    Rich Heilman

  • Popular request: How to Share articles via Facebook/twitter/eMail

    I wrote a comprehensive post on how to share your article via facebook, twitter or eMail or collect community comments right inside your folio. This is how I established an overlaying layer of comments and discussion in my DONE magazine.
    This is a bit complicated, has some problems, but is a popular request and might help you to enable more discussion about your content:
    Share Articles via Facebook, twitter or eMail
    http://tumblr.com/Z3N6zxDAlQsX
    I hope this covers all and is repeatable.
    —Johannes

    Hi Johannes,
    Thanks a lot, it is very helpful!
    I actually wouldn't be posting here if I wouldn't have a problem with it though.
    The thing is, I can't get it to work!
    So to clear things up here is my HTML code I'm trying to get working on an InDesign document (based on your HTML 5 template - Facebook like button code within the "body" tag):
    <!DOCTYPE html>
    <!--
              HTML5-1file-framework for use in Digital Publishing Suite from Adobe
              v0.2-110224 (Tested with drop9)
              http://digitalpublishing.tumblr.com
    -->
    <html laneg="en">
    <head>
    <!-- title not visible in the viewer unless viewed with a browser / popup -->
    <title>HTML5 Framework for DPS</title>
              <meta charset="utf-8" />
              <!--
                        meta viewport tag
                        this tag controls the rendering of the html on the devices. it might be handled differntly
                        between iOS/Android, so be carefull. this is a complete example tag. change for your needs or omit completly.
                        -Pagination of HTML stacks: omit completly or do not use user-scalable and target-densitydpi
                        -PinchZoom: use "Scale Content to Fit" in InDesign and use maximum-scale greater than 1.0, do not use user-scalable=no
              -->
              <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, target-densitydpi=device-dpi"/>
              <!-- your document css -->
              <style type="text/css">
              /* basic css reset */
              body {
                        margin: 0;
                        padding: 0;
                        /* make WebOverlay transparent in InDesign: "Use Transparent Background" */
                        /* use following line for semi-transparent-background (fourth value is alpha value) */
                        /* background: rgba(50,150,250,0.5); */
              /* your css styles here */
              </style>
    </head>
    <body>
    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/nl_NL/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    <div class="fb-like" data-href="http://www.website.com/" data-send="true" data-width="450" data-show-faces="true" data-font="tahoma"></div>
    </body>
    </html>
    What I do:
    I create an empty frame in my InDesign document.
    In  the overlay creator I tell it to be a Web Content.
    I select the HTML file containing above code.
    I update the article in the Folio Builder and test it on the iPad.
    The result is actually... nothing. The area in which the frame is, displays a small loading wheel and after that it's totally empty.
    What am I doing wrong??
    Thanks.

  • Urgent help needed: how to display a list of records on the screen

    Hello,
    This is very urgent. Can anyone help me. I have posted this query of mine before also but still no reply came. My whole application is dependent on this problem. Actually I am developing an application for mobile phone using MIDP. I have a record store which contains personal details for users. I am able to add records to the record store. Now I want that these records can be edited. For this I want to display a list of firstname field on the screen (and not console) so that i can select a user to edit its details. I have written the code to read the records and individual fields and display it on the console but i want to display that list on screen. I tried list and array but it s giving some error.
    I am giving the code to read the records below. Please tell me how can I display it in a list on the screen.
    public void readStream(){
    try
    byte[] recData=new byte[50];
    String varname;
    ByteArrayInputStream strmBytes = new ByteArrayInputStream(recData);
    DataInputStream strmData=new DataInputStream(strmBytes);
    if (rsperdt.getNumRecords() > 0){
    ComparatorString comp=new ComparatorString();
    int i=1;
    RecordEnumeration re=rsperdt.enumerateRecords(null, comp, false);
    while(re.hasNextElement()){
    rsperdt.getRecord(re.nextRecordId(), recData,0);
    System.out.println("Record #" + i );
    varname = strmData.readUTF();
    System.out.println("Name #"+varname);
    System.out.println("---------------------------");
    i=i+1;
    strmBytes.reset();
    comp.compareStringClose();
    re.destroy();
    strmBytes.close();
    catch(Exception e){
    System.err.println("read Records class:read");
    }

    I could not understand ur point "post the code in tags". I am pasting the code below. Please help as my whole application is stuck due to this problem and I have a deadline of 7th oct.
    This midlet is getting called from some other midlet.
    import javax.microedition.lcdui.*;
    import javax.microedition.midlet.*;
    import javax.microedition.rms.*;
    import java.io.*;
    import java.util.*;
    public class frmread extends Form implements CommandListener
    static final String rec_store="db_per";
    private RecordStore rsperdt=null;
    private Vector vecname;
    private ChoiceGroup chname;
    private boolean flagSortByPriority = false, flagShowPriority = true;
    private Form fmmain;
    private Command cmdBack;
    private teledoc midlet;
    public frmread(String title, teledoc midlet)
    super(title);
    this.midlet = midlet;
    openRecStore();
    this.setCommandListener(this);
         chname = new ChoiceGroup("new", Choice.EXCLUSIVE);
         vecname = new Vector();
         cmdBack = new Command("Back", Command.BACK, 1);
    fmmain = new Form("Record Search");
         addCommand(cmdBack);
    setCommandListener(this);
    readStream();
         rebuildTodoList();
         closeRecStore();
    * Process events for this form only
    protected void rebuildTodoList()
    for(int j=chname.size(); j>0; j--)
         chname.delete(j-1);
         int priority;
         todoitem item;
         String text;
         StringBuffer sb;
         for (int j=0; j<vecname.size(); j++)
              item=(todoitem) vecname.elementAt(j);
              priority = item.getPriority();
              text = item.getText();
              sb = new StringBuffer((flagShowPriority ? (Integer.toString(priority) + "-"): ""));
              sb.append(text);
              chname.append(sb.toString(), null);
    public void commandAction(Command c, Displayable s)
    if (c == cmdBack){
    midlet.displayteledoc();
    public void readStream(){
    try
    byte[] recData=new byte[100];
    String varname;
    int varname1=0;
         ByteArrayInputStream strmBytes = new ByteArrayInputStream(recData);
         DataInputStream strmData=new DataInputStream(strmBytes);
         if (rsperdt.getNumRecords() > 0){
    ComparatorString comp=new ComparatorString();
    int i=1;
              int id = 1;
              vecname.removeAllElements();
              RecordEnumeration re=rsperdt.enumerateRecords(null, comp, false);
    while(re.hasNextElement()){
         rsperdt.getRecord(re.nextRecordId(), recData,0);
    System.out.println("Record #" + i );
    varname = strmData.readUTF();
                   varname1 = strmData.readInt();
                   id = re.nextRecordId();
                   System.out.println("Name #"+varname);
                   todoitem item = new todoitem(varname1, varname, id);
                   vecname.addElement(item);
                   System.out.println("---------------------------");
                   i=i+1;
    strmBytes.reset();
              comp.compareStringClose();
              re.destroy();
    strmBytes.close();
    catch(Exception e){
    System.err.println("read Records class:read");
    public void openRecStore(){
    try{
    rsperdt=RecordStore.openRecordStore("db_per",true);
    catch(RecordStoreException e){
    db(e.toString());
    public void closeRecStore(){
    try{
    rsperdt.closeRecordStore();
    catch(Exception e){
    db(e.toString());
    public void db(String str){
    System.err.println("Msg:" + str);
    class ComparatorString implements RecordComparator{
    private byte[] recData = new byte[20];
    private ByteArrayInputStream strmBytes = null;
    private DataInputStream strmDataType = null;
    public void compareStringClose(){
    try{
    if(strmBytes != null)
         strmBytes.close();
    if(strmDataType != null)
         strmDataType.close();
         catch (Exception e)
    public int compare(byte[] rec1, byte[] rec2)
         String str1, str2;
         try {
              int maxsize = Math.max(rec1.length, rec2.length);
              if (maxsize > recData.length)
              recData = new byte[maxsize];
                   strmBytes = new ByteArrayInputStream(rec1);
                   strmDataType = new DataInputStream(strmBytes);
                   str1=strmDataType.readUTF();
                   strmBytes = new ByteArrayInputStream(rec2);
                   strmDataType = new DataInputStream(strmBytes);
                   str2=strmDataType.readUTF();
                   int result=str1.compareTo(str2);
                   if (result == 0)
                   return RecordComparator.EQUIVALENT;
                   else if (result < 0)
                   return RecordComparator.PRECEDES;
                   else
                   return RecordComparator.FOLLOWS;
                   catch (Exception e)
                   return RecordComparator.EQUIVALENT;

  • Urgent Help! How can i execute in the same block diagram two separate labview codes each one with diferent execution timings?

    Dear All.
    I have 2 application progrlams in the same block diagram. the intention is to use  the 2 programs at different excuting time for different application, and each have stop and start button ofcourse i will have master stop. But when i run the program, it only works one program at time , that is the 1st block which i make it active only , when i tried to make active the second block it will not work, only works when i stoped the1st one. So, this it to request ur hlep how can i solve my problem. here i have attached some of  my program.
    Regards!
    Solved!
    Go to Solution.
    Attachments:
    2_block application.vi ‏14 KB

    Usually you set up a task that has all the channels from all the modules configured. When a loop starts it reserves that task and the cDAQ can't be used by other loops unless you start and stop tasks.
    You can have one loop acquire all the data and if you want certain channels to go to other loops you can use the producer/consumer design pattern. If you wanted a third loop you would add another queue and the third loop would dequeue that data. See attached.
    Eric
    Attachments:
    prod-cons.vi ‏69 KB

  • Help requested: How to pass the (check box) selected rows data to other scr

    Hi friends, Here is a situation where I have to pick only those records data which i select by checking the check boxes and carry on to next screen where I have to display them and do some processing on such selected rows of data. Can any one suggest me how to code this. Thanks in advance.

    Hi Subbarao,
    One way is to check if the field is selected by checking if the field value = 'X'.
    If it is a table control we will have to loop and find out which all records are selected..it is notable that the check box field will mostly be of single character and contain 'X' if it is checked and space if not checked
    Based on the structure where the check box is held we may have to implement various logic to retrieve whether the field is checked or not....for instance we can move data to another internal table for which the checkbox is checked and can retrieve it from the next screen
    Pls check,revert and reward if helpful
    Regards
    Byju

  • URGENT HELP REQUESTED: Menu Function has dissapeared.

    Everyone,
    Please help if you can, our AP Menu has lost the function AP_APXINVWKB
    and we are not sure what else. I cannot get from any of my Development team and changes nor have we applied any patches. Just last night the AP team reported not able to do invoices anylonger. In researching we see that the menu attached to the responsibility is missing it's submenus. In further troubleshooting we noticed that we cannot even add the submenus back because the function is missing.
    Any thoughts? We have rebooted, cleared cache, bounced services etc...
    This is happening in 2 of our 3 instances, which seems to point to either user error or a time based issue.
    Also, if you could please tell me if there are logs I can check to find out if we may have unintentionally deleted etc.. it would be much appreciated.
    Thanks,

    Though no one responded we did get a fix from Oracle Support that may help others:
    Run the FNDLOAD program.
    As a single string:
    FNDLOAD APPS/password 0 Y UPLOAD $FND_TOP/patch/115/import/afsload.lct $AP_TOP/patch/115/import/US/ap115fn.ldt
    This fixed the issue, however I am very keen on figuring out how this function could have just been deleted. Any ideas how to track this down?

  • Urgent Help requested-Wrong Price-Wrong quantity delivered-Critical in Proj

    Hi
    I have couple of scenarios
    1.  Wrong price is invoiced to customer
    2.  Wrong quantity is being supplied to the customer
    3.  Wrong product being delivered to the customer
    How to create the Credit / Memo in standard sales and Intercompany Sales scenarios.
    Requesting your inputs as I am stuck
    Thanks and points will be rewarded
    Suddu

    start cancelling the documents right from the invoice-delivery
    invoice reversal/cancelling-VF26
    delivery -VASK
    instead of doing all these  go for creation of credit memo/ debit memo using the transaction va01
    document type-CR/DR
    KIRAN

  • Need urgent help! How to check if the generated number is a whole number

    Hi,
    I have a simple issue but I need some assistance. I am
    calculating a number and the result number sometimes a whole number
    but in some cases decimals are present. Decimals do not need change
    but whole numbers need to change. So for example if the end result
    is "6" I need it to show it as "6.0" in a field beacuse that is the
    way the calculator should display it according to request.
    How can I check that the result number is a whole number and
    then add ".0" to it?
    I just included a simple script below.
    if (outputnumber == ?) {
    resultNum = Number(String(outputnumber+".0"));
    } else {
    resultNum = outputnumber;
    Thanks,
    Attila

    Hi reinhat,
    That means that "outputnumber" wasn't something that can be
    converted to
    a number. When you trace this value, what do you see?
    Regards,
    Patrick Bay
    BAY NEW MEDIA
    "reinhat" <[email protected]> wrote in
    message
    news:fndgeh$484$[email protected]..
    > The above mentioned example returns "NaN".
    > How can it return numeric value?

  • Help requested - How to open bios Bluetooth page

    During the normal boot process I see the Bluetooth symbol light up but only for  a few seconds then it switches off.
    Only once was I able to open the bios setup of my x201T Type 3113 to select Bluetooth. I cannot recall how I did this but now neither the ThinkVantage button,  F1, F8 or F12 will open up bios setup that has a Bluetooth selection page.  Any bios setup that does open has no page that mentions Bluetooth.
    What must I do do get this page again so that I can enable Bluetooth?   
    Solved!
    Go to Solution.

    Hi Beemer,
    In the bios, click on the Security tab, then click on I/O Port access.
    The bluetooth is listed there.
    Regards,
    Dave
    T430u, x301, x200T, x61T, x61, x32, x41T, x40, U160, ThinkPad Tablet 1838-22R, Z500 touch, Yoga Tab 2 Windows 8.1, Yoga Tablet 3 Pro
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"!
    If someone helped you today, pay it forward. Help Someone Else!
    English Community   Deutsche Community   Comunidad en Español   Русскоязычное Сообщество

  • URGENT Help request! After Onyx, iMac stuck in midst of logout/restart

    Our iMac has been stuck for *more than an hour* in the middle of the logout/restart process. I had just ran Onyx on our iMac in preparation for upgrading it from Leopard to Snow Leopard. I'd just clicked the "restart" button which Onyx displays after completing its work. The screen is displaying the desktop image but nothing of the finder or desktop icons. The screen is also displaying the tiny rotating progress symbol that you normally see during startup. I worry that if I force an interruption it will hose the system.
    Any advice?

    No advice for getting out of it, perhaps someone else will have that.
    I will mention that I don't use "maintenance" programs. I tried out a couple, I think around 10.2 or so, and dropped them, particularly as I read more support articles about how they don't really do much or that they could cause slowdowns or problems. I trust my Mac to take care of it self, and the OS is continuously improving in self-maintenance, which has been contrary to MS Windows. Though I haven't kept up with Vista or number 7 to know if they finally have relieved their users of defragging and such.
    So, in the future, on your Macs at least, I'd say ditch the those so-called maintenance programs. Trusting third-party apps to mess with your systems internals is really dicey anyways. I've been doing great without them. Also, to convince yourself, read up on the support documents on Apple's website to learn more about caches or defragging or anything else those maintenance apps claim to help out with. Also note on those articles what OS it is about, just to be sure it's up to date.
    Of course, if you've already done that and weren't convinced, perhaps this incident helps?
    If you have backups of you personal content, everything will be fine again. Hope someone can help out with what you got going on in the mean time.

Maybe you are looking for

  • Time Capsule Can't delete a sparsebundle

    i have a time capsule which i used to backup 3 macs. but having 3 macs eventually filled it up completely and now i am backing up the macs on other separate time capsules. but on my original time capsule, i find i still have the old sparsebundles for

  • Problem with filling nodes of a context with data

    hi, i've got the following problem with filling a controller context: the context of the controller looks like: Context |-Node1             0..n singleton   |-Subnode1        0..n singleton   | |-SubVal1.1   | |-SubVal1.2   |-Subnode2        0..n sin

  • Is there a way to set up DuckDuckGo as my default search engine?

    Instead of Google to protect my privacy how do I set up DuckDuck as my start page?

  • Slow wireless under windows XP bootcamp! help!

    Hello everyone, I bought my first Mac (MacBook Pro) less than a month ago. I have a problem with my wireless connection under Windows XP (Bootcamp 2.1). It works, but is painfully slow (500 kbps in download, 100 kbps in upload according to speakeasy

  • HT3702 can't update my app in my iphone

    Dear, About Purchase history, order : MHT8K5TW6K, amount you owe $39.98. in that day i sick stay at home, my kid playing games wrong push a purchase buttom, and buy something at appstore, because my kid know my password. Now i ready know the problem,