How to pre-configure custom JNDI objects

Hi
Suppose I need to lookup in message bean an admin email
in order not to hardcode it
say ctx.lookup("ADMIN_TO_NOTIFY");
so in JNDI it is bound to say [email protected]
Of course I want to configure it somehow so it is dynamic enough
in some config file
One way to do it is some tech support servlet that will rebind it
and init binding thru startup class reading it from customconfig.xml.
1. Is there a better way to do it???
config.xml it seems does not allow FULL access to JNDI tree and so is console
2. Is there a JNDI console for WL?
3. Is there an example of startup class?
Thanks

Hi.
2 things -
1. use T3StartupDef interface for startup classes
(http://edocs.bea.com/wls/docs61/javadocs/weblogic/common/T3StartupDef.html).
2. check out the example code in
examples\i18n\logging\startup\UserSMessagesStartupImpl.java. This is a
startup class that uses T3StartupDef and binds to the JNDI tree.
Hope this helps,
Michael
GSL wrote:
Michael
1. But the question is integrating JNDI with some START UP mechanism
2. I also need a sample of a startup class/tutorial
Michael Young <[email protected]> wrote:
Hi.
Not sure - you might try posting this to the JNDI newsgroup -
weblogic.developer.interest.jndi.
Regards,
Michael
GSL wrote:
Hi
Suppose I need to lookup in message bean an admin email
in order not to hardcode it
say ctx.lookup("ADMIN_TO_NOTIFY");
so in JNDI it is bound to say [email protected]
Of course I want to configure it somehow so it is dynamic enough
in some config file
One way to do it is some tech support servlet that will rebind it
and init binding thru startup class reading it from customconfig.xml.
1. Is there a better way to do it???
config.xml it seems does not allow FULL access to JNDI tree and sois console
2. Is there a JNDI console for WL?
3. Is there an example of startup class?
Thanks--
Michael Young
Developer Relations Engineer
BEA Support
Michael Young
Developer Relations Engineer
BEA Support

Similar Messages

  • How to add a custom jndi object into weblogic jndi context.

    Hi,
    I noticed that there is a standard way of adding jndi entry in the weblogic jndi context. One is through the console by specifying the jndi name (e.g DataSource) and this is added in config.xml and in its appropriate "jdbc/xxx-jdbc.xml". The question now is, I have an object which I would like to be included in the global weblogic jndi context.
    <entry key="java:comp/env/jms/wsnotificationCF">
    <bean class="org.apache.activemq.ActiveMQConnectionFactory">
    <property name="brokerURL" value="tcp://localhost:61616"/>
    </bean>
    </entry>
    or
    <entry key="java:comp/env/obj/UUID_CLASS_KEY" value="org.apache.servicemix.bpe.uuid.ActiveMQUUIDService"/>
    This is just a sample of a possible entry. Is there then a way I could add this object in weblogic jndi context ?
    Regards,
    Fritz

    Hi,
    I noticed that there is a standard way of adding jndi entry in the weblogic jndi context. One is through the console by specifying the jndi name (e.g DataSource) and this is added in config.xml and in its appropriate "jdbc/xxx-jdbc.xml". The question now is, I have an object which I would like to be included in the global weblogic jndi context.
    <entry key="java:comp/env/jms/wsnotificationCF">
    <bean class="org.apache.activemq.ActiveMQConnectionFactory">
    <property name="brokerURL" value="tcp://localhost:61616"/>
    </bean>
    </entry>
    or
    <entry key="java:comp/env/obj/UUID_CLASS_KEY" value="org.apache.servicemix.bpe.uuid.ActiveMQUUIDService"/>
    This is just a sample of a possible entry. Is there then a way I could add this object in weblogic jndi context ?
    Regards,
    Fritz

  • How to pre-configure wireless locations

    Does anyone know how to pre-configure wireless locations that can them be pushed to several computers via ARD?
    We are taking admin rights away from most users, which means they cannot create a wireless location. I need to find a way to have a file or files that are preconfigured with the locations we need (on lab and off site) so they can connect to our private wireless network on lab, and then just plain old dhcp off site. I've tried modifying the preferences.plist and networkinterfaces.plist, but it puts MY computer information throughout, and that is not acceptable.
    I UNIX command or script would be better.
    Any help is appreciated.
    Thanks,
    Lisa

    Hi.
    2 things -
    1. use T3StartupDef interface for startup classes
    (http://edocs.bea.com/wls/docs61/javadocs/weblogic/common/T3StartupDef.html).
    2. check out the example code in
    examples\i18n\logging\startup\UserSMessagesStartupImpl.java. This is a
    startup class that uses T3StartupDef and binds to the JNDI tree.
    Hope this helps,
    Michael
    GSL wrote:
    Michael
    1. But the question is integrating JNDI with some START UP mechanism
    2. I also need a sample of a startup class/tutorial
    Michael Young <[email protected]> wrote:
    Hi.
    Not sure - you might try posting this to the JNDI newsgroup -
    weblogic.developer.interest.jndi.
    Regards,
    Michael
    GSL wrote:
    Hi
    Suppose I need to lookup in message bean an admin email
    in order not to hardcode it
    say ctx.lookup("ADMIN_TO_NOTIFY");
    so in JNDI it is bound to say [email protected]
    Of course I want to configure it somehow so it is dynamic enough
    in some config file
    One way to do it is some tech support servlet that will rebind it
    and init binding thru startup class reading it from customconfig.xml.
    1. Is there a better way to do it???
    config.xml it seems does not allow FULL access to JNDI tree and sois console
    2. Is there a JNDI console for WL?
    3. Is there an example of startup class?
    Thanks--
    Michael Young
    Developer Relations Engineer
    BEA Support
    Michael Young
    Developer Relations Engineer
    BEA Support

  • How will i configure customer mass maintanance

    how will i configure customer mass maintainance for a given no of customers.....

    hello, friend.
    by mass maintenance, do you mean using t-codes MASS and XD99?
    i believe there is no configuration required for this.  you just have to set up your enterprise structure (sales org, distribution channel, division, sales office, sales group, etc.) to enable you to filter your master data so that only the relevant ones will be maintained en masse.
    regards.

  • How to pre-allocate a ByteBuffer object to read data from a Socket

    Hi,
    So far every example on ByteBuffer allocation has shown something like this
    ByteBuffer buffer=ByteBuffer.allocate(1024);
    Im stuck because i dont know how much data will arrive on the socket. Is there anyway I can find out how much data is present on a socket before allocating the ByteBuffer? And if not, what can i do to ensure that I dont lose any of the data that is present on the socket and cant be read because the buffers limit may be too small.
    Thanks,
    Parth

    Hi,
    Bytebuffer is just buffer so make it big enough to handle traffic.. How big it must be depends on your applicaiotn and trasfered data amount..
    Following code shows an example which uses byte array as buffer... Following code is 1.2.x and above compatible using byte array instead ByteBuffer..
    Vector mainbuffer = new Vector(10,1);
    byte [] tempbuffer=new byte[5000]; // 5Kb buffer
    // STKInBufStr is bufferedinputstream to read data till end of stream ..
    // readcount show amount of data readed.. which means data amount in buffer. Data is written to buffer from start point -0,- 5000 is max read aomunt.
    // once read 5000 byte then it will return to while loop and create a temporary string and add it to manibuffer and menawhile coming data is not lost.. this loop will catch all incoming dta and buffer in mainfbuffer vector Roughly speaking bigger the buffer better te performance. Remeber code will wait to read 5000 byte of data to return to while loop. 5000 only means max amount of data it can handle in every read attempt.. if just read 2 byte it will return this 2 byte to loop
    while ( (readcount=STKInBufStr.read(tempbuffer,0,5000)) !=-1)
    String tmp = new String(readbuffer).substring(0,readcount);
    manibuffer.add(tmp);
    This loop will catch all incoming data and add to mainbuffer vector..

  • How to create custom BOL object for dynamic query in CRM 7.0

    Hi,
    Could anyone please explain me with steps that how to create the custom BOL object for dynamic query in CRM 7.0, I did it in previous version but its throwing exception when i try to create the object of my dynamic query class. I just defined the entry of my in crmv_obj_btil to create the dynamic query BOL object. do i need to do any other thing also to make it work?
    Regards,
    Kamesh Bathla
    Edited by: Kamesh Bathla on Jul 6, 2009 5:12 PM

    Hi Justin,
    First of thanks for your reply, and coming to my requirement, I need to report the list of items which are there in the dynamic select statement what am getting from the DB. The select statement number of columns may vary in my example for different countries the select item columns count is different. For US its '15', for UK it may be 10 ...like so, and some of the column value might be a combination or calculation part of other table columns (The select query contains more than one table in the from clause).
    In order to execute the dynamic select statement and return the result i choose to write a function which will parse the cursor for dynamic query and then iterate the values and construct a Type Object and append it to the pipe row.
    Am relatively very new for these sort of things, welcome in case of any suggestions to make it simple (Instead of the function what i thought to work with) also a sample narrating the new procedure will be appreciated.
    Thanks in Advance,
    mallikj2.

  • Unable to edit the MobileXI3BB.jad file for pre-configuration settings

    According the Note:1542478 - How to pre-configure connection settings for BusinessObjects XI 3.1 Mobile clients?
    We are trying to edit the MobileXI3BB.jad file to avoid the Config seeting from client side.But wonder we are not able to see the below details in our MobileXI3BB.jad:
    BOBJ_MOBILE_AUTH_SERVER: <mobile server>
    BOBJ_MOBILE_AUTH_PORT: <Port of VAS Service, for example, 11011>
    BOBJ_MOBILE_CMS: <cms address>
    BOBJ_MOBILE_AUTH_METHOD: <authentication type>
    Can any one help us how to solve this?
    Edited by: Srikencha on Jun 3, 2011 8:58 AM

    Hi,
    you won't see this code,you need to add this code to the MobileXI3BB.jad file
    BOBJ_MOBILE_AUTH_SERVER:<mobile server>
    BOBJ_MOBILE_AUTH_PORT:<Port of VAS Service, for example, 11011>
    BOBJ_MOBILE_CMS:<cms address, for example CMSCOLPAL:6400>
    BOBJ_MOBILE_AUTH_METHOD:<authentication type> where <authentication type> could be any one of these values based on your requirements: secEnterprise, secWinAD, secLDAP, secSAPR3.

  • Sending Custom Java Objects over XML!!

    Hello all !
    Can anybody please tell me how can I send custom Java Objects through XML? For example we can set attributes for a node using the setAttribute method, it accepts only strings, also the setTextContent method requires text and sets the node's value.Can I some way set my own Java object as the value of a particular node or attach it to the node?
    Thanks in advance.

    Kami_Pakistan wrote:
    So I should rather go for Marshalling or Serialization or is there any other work-around possible?I don't know. You didn't say what you had against text formats. Since all Java objects are composed of primitives when you get right down to the bottom, everything in Java can be serialized as text versions of those primitives. So you're going to have to explain why you think a work-around is necessary at all.

  • Configure custom query group in navigation menu

    How do we configure custom query groups? Say for example: I have created a custom query group and added my custom query definitions to it. How do I configure this so that when I click on Contract Management Tab on the workbench, my custom query group is invoked?
    I need to configure custom query group in navigation menu. Any help would be appreciated.
    Regards,
    Bindu Sharma

    Hi Bindu,
    As per my understanding, it is standard and query group cannot be added in the navigation but you can add your quries under Agreement and Claus Library.
    Kindly refer the blog for the same: http://scn.sap.com/docs/DOC-55733
    Let me know if you need any other information.
    Thanks,
    Kushagra A

  • How to configure a JNDI resource

    I'll try to make my question as simple as possible since I've never got an answer on these forums :(
    I want to configure a JNDI resource in the Sun Java(TM) System Application Server Enterprise Edition 8.1 Admin Console so that webapplications can do basic ldap searches using JNDI.
    The following code works for me:
    Hashtable env = new Hashtable();
    env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, "ldap://the.ldap.server:389");
    env.put(Context.SECURITY_AUTHENTICATION,"simple");
    env.put(Context.SECURITY_PRINCIPAL,"thebinddn");
    env.put(Context.SECURITY_CREDENTIALS,"thepassword");
    try {
      LdapContext ctx = new InitialLdapContext(env, null);
      SearchControls cons = new SearchControls();
      cons.setSearchScope(SearchControls.SUBTREE_SCOPE); 
      NamingEnumeration results = ctx.search("ou=People,o=Temmellys,o=org", "uid=juhani2", cons);
      while (results != null && results.hasMore()) {
        /* doing something with the results */
      ctx.close();           
    catch (Exception e) {
      e.printStackTrace(out);
    }So my question is; How do I configure this resource with the same environment properties in the admin console? I want to name the resource ldap/test and access it in the following way (is this correct?):
    InitialContext ctx0 = new InitialContext();
    LdapContext ctx = (LdapContext)ctx0.lookup("ldap/test"); Do I configure a "Custom resource" or an "External resource" and how do I specify the properties?
    See my original post for more information:
    http://swforum.sun.com/jive/thread.jspa?threadID=62965&tstart=0
    Even if this is basic rtfm stuff it would be nice if someone could help me out here. I am developing a portal for an organization running JES and my hands are tied on trying to get other things to work.

    Problem solved in the original thread. If you are trying to do the same be sure to check it out (the SUN documentation is faulty):
    http://swforum.sun.com/jive/thread.jspa?threadID=62965&tstart=0
    I apologize for starting two threads on this.

  • How will i configure partner determination for customer master

    how will i configure partner determination for customer master data.

    hi
    Check this
    BUSINESS PARTNERS AND PARTNER DETERMINATION
    In the partner determination procedure you can determine whether partner functions can or should occur in a partner object (Customer Master, Sales Document, Item Category etc.) For each object, in which partner function can be created, you can define partner procedures. This also means that
    For Customer Master
    For Sales Documents
    For Sales Documents and Billing Documents: for items
    We can define our partner determination procedure for each of these levels as shown below. In Blue are given the ones wherein the Partner Procedures are assigned to the Partner Objects
    Customer Master Account Group
    Sales Document Header Sales Document Type
    Sales document Item Item Category in sales
    Delivery Delivery Type
    Billing Header Billing Type
    Billing Item Billing Type
    Sales Activity Sales Activity type
    By assigning a procedure you determine for which account groups (for the customer master), which sales document types (for sales documents) and for which item categories this procedure would be valid.
    In the partner determination procedure you can determine for each partner function
    whether the partner function is an obligatory partner function
    whether the partner function can be changed in the document
    BUSINESS PARTNER FUNCTION
    By assigning a business partner function to a partner you can determine which functions the partner fulfils in the business process. Partner Functions are classified using partner type. The partner type represents the roles played by the business partner within the business transaction.
    Following partner functions exist in the standard process of Sales and Distribution
    Partner Type Customer
    Sold-to Party, Ship-to Party, Bill-to Party, Payer and Sold-to Party authorized to release against a contract. You can define the sold-to party authorized to release against a contract in the partner screen of a contract. This partner may only schedule orders with reference to this contract, even when he is not the sold-to party authorized against a contract.
    Partner Type Contact Person
    Contact persons are natural persons whom you must contact at the customers for business processing (e.g. purchasers) Contact person can be created directly in customer master record.
    Partner Type Vendor
    A forwarding agent is an example of a business partner on the credit side, who is included in a sales process. If you commission a particular forwarding agent for deliveries to a specific customer, you can define the forwarding agent in the customer master record as the partner.
    The other possible partner functions on the credit side in the sale process are interpreters, auditors etc. The forwarding agent is an agent who performs transportation services. This includes organizing the shipment, delivery and receipt of the goods, arranging the carrier services and handling the customs issues.
    Partner Type Personnel
    Employee Responsible
    Sales Personnel
    You can enter an employee from your firm as the person responsible:
    In the Customer Master – If the employee is normally responsible for processing transactions with this customer.
    In the Sales Document – If the employee is responsible for processing the Business Transaction.
    STEP WISE PROCESS FOR PARTNER DETERMINATION PROCEDURE
    Sales and Distribution->Basic Functions->Partner Determination->set Up Partner Determination->Set up Partner Determination for Customer Master.
    First go to OVT0 – create customer account groups. Here you make new entries, click whether it is a one time customer, description. Also you can do the field selection here for general data, co. code data and sales area data.
    Now go to IMG – logistics general – business partner – customers – control – define & assign customer number ranges define the number. Here you range that you want and assign it to your customer account group.
    Now go to VOPA – here the selection will be on customer master, click on partner procedures, create the partner determination procedure. The following steps need to be done in partner determination area
    Assign partner function to account group i.e SP,SH, BP, PY to account group (debit side ). Sales and Distribution->Basic Functions->Partner Determination->Assign Partner Functions on the debit side to account Groups.
    Then create Partner Determination Procedure.
    Assign the Partner Determination Procedure to Partner Function.
    Then finally assign the Partner Determination Procedure to acc group.
    Important Points in Business Partners and Partner Determination Procedure
    Partner relationship maintained/defined in the customer master is proposed automatically in the document header when you create a sales document.
    In customizing we can decide whether several partners can be assigned to one partner function in the customer master.
    In sales documents, the system is configured so that only one partner can be assigned to each partner function.
    We can define partners at item level in the sales documents.
    Business Partners that are defined at the header level however cannot be changed at the item level.
    You can prohibit anyone from changing a partner that has already been entered in a sales document.
    It is also possible to manually change or enter the address of a partner, such as the Ship-to Party. This change does not affect the master record.

  • How can I install a Designer 6.0 pre-configured repository ?

    Hi:
    I am trying to install Oracle Designer 6.0 to my client machine (Windows 2000) and server machine (Windows NT 4.0), what I did was:
    [1]install Designer 6.0 client side on my client machine.
    [2]install Oracle 8i Enterprise Edition (version 8.1.7) on the server machine.
    [3]configured SQL*Net Client and NET8 on both client and server, and it works fine.
    [4]install pre-configured repository using Oracle Designer 6.0 CD #2 (pre-configured repository),but it always gives me such info:
    " You have not installed a local copy of Oracle8 Enterprise Edition, therefore, Oracle Designer and ODD D7O4 Preconfigured Repository can not be installed. Please re-install this product after the local
    database has been installed."
    It seems strange, I did install 8i Enterprise Edition (I even installed Oracle8 Enterprise Edition) before repository, I should have
    a local database.
    How should I do next ?

    Hi Zhu:
    Now that you are trying to install Designer, your problem is easy to solve.
    I think you should download Oracle Designer 6i Release 4 for Windows from http://otn.oracle.com/software/products/designer/software_index.htm and then do your install again.
    The install and the server side setup maybe time consuming, but I am sure you can do it.
    You may install Designer 6i Release 4 in the following steps:
    (Before do these, uninstall your Designer 6.0 both from your client machine and Windows 2000 server using Oracle Installer)
    Step 0: download Oracle Designer 6i Release 4 from OTN to your local directory, say c:\temp and unzip it to c:\temp\Designer6iR4. I will refer this directory as installation media. Make sure that you have equipped your server machine with at least 256MB memory. In my experience, 386MB is better and 512MB is recommended.
    Step 1: make sure that one database was created in your installed Oracle 8i. If not, create a database at this step. The parameters of this database should be adjusted according the needs of Designer 6i. You will be told how to do this later.
    Step 2: install Designer 6i R4 from the installation media to server machine. Pay attention at this step that you should "select to install both Designer and Repository." It is recommended that Designer should be installed to another new ORACLE_HOME. Don't install it to your Oracle database home. Say, to the ORACLE_HOME "DESDEV".
    Some more words need to be said here, I think, about the ORACLE_HOME for Designer. Later if you install Oracle Developer into the same machine as Designer is installed to, both the Oracle Developer and Oracle Designer should be installed into the same ORACLE_HOME. So the name DESDEV stands for "DESigner and DEVeloper are both installed into the same Oracle home named DESDEV". This will be prompted to you just after the installation of Designer was finished.
    Step 3: print out "Oracle Repository/Designer Installation Guideh from "Stat->Programs->Oracle Repository 6i Doc - DESDEV". I will refer this material as gManualh from here till the end of our talk.
    Step 4: shutdown your database if it is running and then set the parameters to the correct values (required values) according to gCheck the settings in the Oracle initialization parameter fileh in the Manual, Chapter 2 Server-side installation, migration and upgrade.
    Step 5: startup the database and then check the parameters. To do this, you need to login to database as user sys and then issue the command gshow parametersh. If all the parameters are correct you may go step 6. You may leave the database running.
    Step 6: make sure that the database is running. If not, startup database here. Before proceed to install Designer 6i Server-side, the database should in running status.
    Step 7: do the server-sidefs install of Designer 6i (that is, Repository) according to gChapter 2 Server-side installation, migration and upgradeh in Manual. In that part of manual, 17 steps of installation and setup Designer 6i server-side were mentioned. I am sure you can manage that with ease.
    Step 8: install Designer 6i client-side into your client machine according to hChapter 1 Client-side installationh in Manual from the installation media.
    By the way, I should tell you how much time it takes to accomplish all of these steps IF things were went smoothly: it took about 6 hours for me to have all these steps done. And my machinefs specifications is:
    CPU 633MHz
    RAM 512MB
    Wish you good luck
    null

  • How can i add custom attributes to a new Class Object using the API ?

    Hello everyone,
    Here is my problem. I just created a subclass of Document using the API (not XML), by creating a ClassObjectDefinition and a ClassObject. Here is the code :
    // doc is an instance of Document
    ClassObject co = doc.getClassObject();
    ClassObjectDefinition cod = new ClassObjectDefinition(ifsSession);
    cod.setSuperclass(co);
    cod.setSuperclassName(co.getName());
    cod.setName("MYDocument");
    ClassObject c = (ClassObject)ifsSession.createSchemaObject(cod);
    Everything seems to be OK since i can see the new class when i use ifsmgr. But my question is : how can i add custom attributes to this new class ? Here is what i tried :
    AttributeDefinition value = new AttributeDefinition(ifsSession);
    value.setAttribute("FOO", AttributeValue.newAttributeValue("bar"));
    c.addAttribute(value);
    But i got the following error message :
    oracle.ifs.common.IfsException: IFS-30002: Unable to create new LibraryObject
    java.sql.SQLException: ORA-01400: impossible d'insirer NULL dans ("IFSSYS"."ODM_ATTRIBUTE"."DATATYPE")
    oracle.ifs.server.S_LibraryObjectData oracle.ifs.beans.LibrarySession.DMNewSchemaObject(oracle.ifs.server.S_LibraryObjectDefinition)
    oracle.ifs.beans.SchemaObject oracle.ifs.beans.LibrarySession.NewSchemaObject(oracle.ifs.beans.SchemaObjectDefinition)
    oracle.ifs.beans.SchemaObject oracle.ifs.beans.LibrarySession.createSchemaObject(oracle.ifs.beans.SchemaObjectDefinition)
    void fr.sword.ifs.GestionDocument.IFSDocument.createDocument(java.lang.String)
    void fr.sword.ifs.GestionDocument.IFSDocument.main(java.lang.String[])
    So, what am i doing wrong ?
    More generally, are we restricted in the types of the attributes ? (for example, would it be possible to add an attribute that would be an inputStream ? Or an object that i have already created ?).
    Any help would be appreciated. Thanks in advance.
    Guillaume
    PS : i'm using Oracle iFS 1.1.9 on NT4 SP6 and Oracle 8.1.7
    null

    Hi Guillaume,
    you're welcome. Don't know exactly, but assume that ATTRIBUTEDATATYPE_UNKNOWN
    is used to check for erronous cases only
    and it shouldn't be used otherwise.
    Creating your own objects could be simply done via
    ClassObject ifsClassObject;
    DocumentDefinition ifsDocDef = new DocumentDefinition(ifsSession);
    // get class object for my very own document
    ifsClassObject = ClassObject.getClassObjectFromLabel(ifsSession, "MYDOCUMENT");
    // set the class for the document i'd like to create
    ifsDocDef.setClassObject(ifsClassObject);
    // set attributes and content for the document...
    ifsDocDef.setAttribute("MYFOO_ATTRIBUTE",....);
    ifsDocDef.setContent("This is the content of my document");
    // create the document...
    PublicObject doc = ifsSession.createPublicObject(ifsDocDef);
    null

  • How to Download the Custom Package Created with all the objects

    Hi All,
    Could any body let me know how to download a custom package created in sap with all the objects including webdynpros and modulepool programs.
    Thanks.

    Hi,
    U can use open source programs available in net like Mass Download, ZAPLINK, SAPLINK.
    Mass Download --> Download the objects
    SAPLINK, ZAPLINK --> Used for downloading and also for importing the downloaded objects to other system.
    Regards,
    Arun

  • Dynamic Configuration of custom Context Objects: is it possible?

    Guys,
    is it possible to use Dynamic Configuration for custom Context Objects as we normally do to technical context objects?
    Also, is it possible to use a context object in receiver determination, even if it is not assigned to a message interface?
    My case: I need to use condition at receiver determination but I dont want to read a field from payload. Instead, I want to write that context object with dynamic configuration and use it at receiver determination runtime.
    I want to do this in order to avoid having to extend the payload's message type because of this extra field for condition (actually, its not that I dont want to, its that I cant. The message type is defined by 3rd party and cant be changed). If it is possible to keep that information at header instead of payload, it'd be great.
    Kind regards and thanks in advance,
    Henrique.

    Hi,
    >>>>>Just a last comment: do you need to deploy any code for the adapter on SDM or just the "fake adapter metadata file" is enough?
    no SDM
    just the metadata file as per my blog
    glad this is what you wanted
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Maybe you are looking for

  • Mail preferences question

    question... my ex wife has somehow accessed my email acct. on my daughters macbook. I did some spec work for playboy mag and she is claiming that i did it on my daughters mac.She claims that when the mail application is launched my emails all appear.

  • How do I cancel a purchase that I didn't approve

    How do I cancel a purchase that I didn't approve

  • No ranges

    HI SAP GURUS, Iam having one problem at the time of save the billing document ihave like this problem For object RV_BELEG, number range interval  KZ does not exist this problem is releated to any fi document no ranges please conforme plz let me kno i

  • Workflow configuration for inbound IDOC

    Hi, i have designed a workflow for handling the errored idoc's. workflow is triggering fine when i reprocess the idocs through the WE19. but it is not triggering online...means  the event inputerroroccured is not triggering whenever an idoc comes to

  • I have just installed Mavericks and Photoshop won't launch-Program error.

    I just installed Mavericks to a new Macbook Pro, then installed a fresh copy of CS5.1. Everything works except Photoshop CS5.1, which fails with a "Program error". I've stripped out everything Adobe, Re-installed , re-entering serial number, tried Ad