Sender java proxy don't work

Hello!
i configured a test xi scenario: JSP->(JAVA Proxy)-> XI -> file adapter.
Jsp is in the same bean of proxy.
I deploy this j2ee application in the same j2ee of XI.
When I open jsp page with browser and send data, nothing appened.
I check also in adapter engine monitor and xml monitor but i can't see any message.
I think the problem is inside java bean because if i fix the output data, after post action i see data in jsp page.
this is the class for call proxy:
public class InvokeProxy {
     public String getRole(String name, String pwd){
          String role="";
          UsersSyncMI_PortTypeLocalHome queryOutLocalHome=null;
          UsersSyncMI_PortTypeLocal queryOutLocal=null;
          try{ Context ctx = null; Object ref = null; Properties p = new Properties();
          p.put(Context.INITIAL_CONTEXT_FACTORY,"com.sap.engine.services.jndi.InitialContextFactoryImpl");
          p.put(Context.PROVIDER_URL, "server:50004");
          p.put(Context.SECURITY_PRINCIPAL, "user");
          p.put(Context.SECURITY_CREDENTIALS, "pwd");
          ctx = new InitialContext();
          queryOutLocalHome = (UsersSyncMI_PortTypeLocalHome)ctx.lookup("java:comp/env/ejb/UsersSyncMI_PortTypeBean");
          queryOutLocal = queryOutLocalHome.create();
          MessageSpecifier msg = queryOutLocal.$messageSpecifier();
          msg.setSenderService("BS_XID_PROXY");
          queryOutLocal.$messageSpecifier(msg);
          UserDT_Type reqtype = new UserDT_Type();
          reqtype.setUsername(name);
          reqtype.setPassword(pwd);
          UsersDBDTResponse_Type response = new UsersDBDTResponse_Type();
          response = queryOutLocal.usersSyncMI(reqtype);
          role = role + response.getStatementResponse().get_as_listRow().getRow(0).getRole();
           } catch(Exception ex){
               System.out.println(ex.getMessage()); } return role; }
any suggestion
thanks Ale

I haven't J2SE in my scenario. I can't try.
anyway, the code that i'm using now for call proxy is:
try{ Context ctx = null; Object ref = null; Properties p = new Properties();
            ctx = new InitialContext();
          ref = ctx.lookup("java:comp/env/ejb/MIZPROTOTIPOOUT_PortTypeBean");
          queryOutLocalHome = (MIZPROTOTIPOOUT_PortTypeLocalHome)ctx.lookup("java:comp/env/ejb/MIZPROTOTIPOOUT_PortTypeBean");
          queryOutLocal = queryOutLocalHome.create();
          MessageSpecifier msg = queryOutLocal.$messageSpecifier();
          msg.setSenderService("BS_XID_PROXY");
          queryOutLocal.$messageSpecifier(msg);
          DTZPROTOTIPOOUT_Type reqtype = new DTZPROTOTIPOOUT_Type();
          reqtype.setData1(name);
          reqtype.setData1(pwd);
          DTZRETURN_Type response = new DTZRETURN_Type();
          queryOutLocal.mIZPROTOTIPOOUT(reqtype);
          String respons = "work!";
          role = respons;
           } catch(Exception ex){
               System.out.println(ex.getMessage());
               String error = ex.getMessage();
               role = error;
      return role; }

Similar Messages

  • After installing "Java for OS X 2013-004" update, Java apps don't work anymore as expected

    After installing "Java for OS X 2013-004" update, Java apps don't work anymore as expected.
    Windows of Swing apps don't display all GUI elements.
    After replacing System/Library/Java from a Time MAchine Backup, everything works normal again.
    Is this update corrupted?

    "avoid using Java in a web browser at all,..."
    Good advice.
    "...old Java apps/applets that aren't written to modern specs ..."
    The stand-alone Java Swing applications, that don't display their GUI elements after installing this update, have been written according to modern standards. With Oracle Java7, and with Java6 from Apple prior to this update, they run absolutely flawlessly.
    This is absolutely Apple's fault.

  • Java Proxy Generation not working - Support for Parallel Processing

    Hi Everyone,
    As per SAP Note 1230721 - Java Proxy Generation - Support for Parallel Processing, when we generate a java proxy from an interface we are supposed to get 2 archives (one for serial processing and another suffixed with "PARALLEL" for parallel processing of jaav proxies in JPR).
    https://websmp230.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1230721
    We are on the correct patch level as per the Note, however when we generate java proxy from the IR for an outbound interface, it genrates only 1 zip archive (whose name we ourselves provide in the craete new archive section). This does not enable the parallel processsing of the messages in JPR.
    Could you please help me in this issue, and guide as to how archives can be generated for parallel processing.
    Thanks & Regards,
    Rosie Sasidharan.

    Hi,
    Thanks a lot for your reply, Prateek.
    I have already checked SAP Note 1142580 - "Java Proxy is not processing messages in parallel" where they ask to modify the ejb-jar.xml. However, on performing the change in ejb-jar.xml and while building the EAR, I get the following error:
    Error! The state of the source cache is INCONSISTENT for at least one of the request DCs. The build might produce incorrect results.
    Then, on going through the SAP Note 1142580 again, I realised that the SAP Note 1230721 also should be looked onto which will be needed for generating the Java proxy from Message Interfaces in IR for parallel processing.
    Kindly help me if any of you have worked on such a scenario.
    Thanks in advance,
    Regards,
    Rosie Sasidharan.

  • Outlook 2011 send/receive schedules don't work

    I have to manually send/receive email since I upgraded to OS LION. Schedules don't work anymore, whatever I tried. Anyone with the same problem?

    I use the following settings in Outlook and they work without problem. It may be that you will need to delete the account and set it up again. If you do delete it make sure that you back up any emails that are on your computer.
    Your Name
    Email address: Full btinternet email address
    Account type: IMAP or (POP)
    Incoming server: mail.btinternet.com    
    Outgoing server: mail.btinternet.com
    Logon information:
    User name: prefix only of email address
    Password: Email password
    Tick remember password
    Do not tick Require password auth (SPA)
    Click Button More settings
    Tick box my out going server requires authentication
    Tick box use same as incoming
    Do not tick log onto incoming server
    Advanced Button
    Incoming server 993 or (POP 995) Tick requires SSL
    Outgoing server 465 Use following type encryption SSL

  • Communication between SOAP and java proxy does not work

    Hi Group,
    i want to proceed following scenario:
    SOAP->XI->JavaProxy
    For that i have created of the message interface of a remote function module my java proxy.
    Calling the java proxy with following scenario works successfully:
    RFC->XI->JavaProxy
    Further, i have created in the integration engine(configuration) my wsdl file. In the SAP
    Netwaever Developer Studio, i have made a standalone proxy project, that is consuming the
    web service out of the wsdl file.
    Testing the web service client with following example works fine:
    SOAP->XI->RFC
    But when i try the scenario SOAP->XI->JavaProxy, i get following rmi exception on client side:
    java.rmi.RemoteException: Service call exception; nested exception is:
    java.lang.Exception:  Element 'Z_GPS_PING.Response' not found in response message.
    at com.demo.sap.MI_WEBSRV_GPS_PING_OUTBBindingStub.MI_WEBSRV_GPS_PING_OUTB(MI_WEBSRV_GPS_PING_OUTBBindingStub.java:86)
    at com.demo.test.TT_Pinger.main(TT_Pinger.java:36)
    Caused by: java.lang.Exception:  Element 'Z_GPS_PING.Response' not found in response message.
    at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.getResponseDocument(MimeHttpBinding.java:942)
    at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.call(MimeHttpBinding.java:1231)
    at com.demo.sap.MI_WEBSRV_GPS_PING_OUTBBindingStub.MI_WEBSRV_GPS_PING_OUTB(MI_WEBSRV_GPS_PING_OUTBBindingStub.java:79)
    ... 1 more
    In the monitoring, the execution of both directions is ok. In the response message, i can see the result of the java proxy.
    Here is the result:
    <ns:Z_GPS_PING.Response xmlns:ns="urn:sap-com:document:sap:rfc:functions">
         <E_RETURNCODE>PINGOK  </E_RETURNCODE>
    </ns:Z_GPS_PING.Response>
    My first thought, was, that i have a problem with the prefix, so i have changed it via xslt transformation into "rfc",
    but it got the same error message.
    Does anyone know, which problem we have here?
    For any hint or suggestion, i would be much obliged.
    Greetings,
    Sigi
    P.S. WAS and Sap Netweave Dev Studio is on patch level 12

    Hi Group,
    the SAP has solved the Problem now.
    The coresponding OSS note is: 862926
    (release date 18.07.05)
    The reason was, that the response payload name wasn't
    "maindocument". For that, the adapter didn't found the payload and returned an emty one.
    Greetings,
    Sigi

  • After upgrading from 4.01 to 5.0 the Flashplayer and Java environment don't work.

    Made an update yesterday morning 21/6 from 4.01 to 5.0. It worked except that LastPass gives an error message at login, but it still works. Later 21/6 I downloaded an update from Mozilla. After that no Flashplayer plugins like in YouTube work. Neither does Java like in http://hem.ektv.nu/~ekt000851/mane.html, that I use as a test site.
    However my most precious plug in Nexus Personal works in both versions. I cant figure out what is the difference.
    I run Firefox on Linux Mint LMDE 64 bit in the /home/directory/

    Made an update yesterday morning 21/6 from 4.01 to 5.0. It worked except that LastPass gives an error message at login, but it still works. Later 21/6 I downloaded an update from Mozilla. After that no Flashplayer plugins like in YouTube work. Neither does Java like in http://hem.ektv.nu/~ekt000851/mane.html, that I use as a test site.
    However my most precious plug in Nexus Personal works in both versions. I cant figure out what is the difference.
    I run Firefox on Linux Mint LMDE 64 bit in the /home/directory/

  • Send Verification email  don't work

    Help me. Unable to Use Icloud

    today i fixed it. it was the firewall configuration from the wlan router. i found it out on my mobile phone. with 3g it worked and with the wlan it doesn't. so, i hope this information can help someone. greets

  • Inbound Java Proxy doesnu00B4t work

    Hi
    I have configured the following steps for an Inbound Java Proxy:
    1.- Create a Business System (Web AS Java) where is located the Proxy.
    2.- Create a XI receiver comm. channel with the respective configuration
    3.- Create a Java Proxy and implemented in NWDS
    4.- Generate a .jar archive
    5.- Generate a .ear archive and deploy to the Integration Server.
    6.- Register the Proxy.
    The scenario is JDBC --> XI --> Java Proxy. In the SXMB_MONI TC show no errors but the java proxy doesn´t work, that is, it doesn't do anything. Somebody knows why?

    thanks Krishna, I've look into the RWB and see an error in the Adapter Engine, I attach the Log in the Audit Log Tab of the message:
    Success Message successfully received by messaging system. Profile: XI URL: http://myAppServer:50000/MessagingSystem/receive/JPR/XI Credential (User): XIAPPLUSER
    Success Using connection JPR. Trying to put the message into the receive queue.
    Success Message successfully put into the queue.
    Success The message was successfully retrieved from the receive queue.
    Success The message status set to DLNG.
    Success Java proxy runtime (JPR) accepted the message
    Error Delivery of the message to the application using connection JPR failed, due to: Exception in method $messageSpecifier..
    Success The asynchronous message was successfully scheduled to be delivered at Mon Sep 04 10:43:06 GMT-04:00 2006.
    Success The message status set to WAIT.
    Success Retrying to deliver message to the application. Retry: 1
    I cannot see all the text in the error message, but it tell me that the error is in the JPR?

  • TCP/IP Server Socket using Java Proxy (Sender) ?

    Hi,
    I have requirement to listen certain port for third party POS system using TCP/IP Socket. Since there is no standard SAP TCP/IP Socket Adapter. I am planning to develop using Sender Java Proxy.
    Please advise whether this approach is workable ? or is there any related blog / forum discuss about Socket Server.
    This blog is only for socket client /people/saravanakumar.kuppusamy2/blog/2005/12/15/socket-integration-with-xi
    Thank You and Best Regards
    Fernand

    When you want to have minimal effort, you can create a standalone Java program which listens on a port and transforms the incoming tcp/ip stream to an HTTP message, which you can send to SAP PI.
    With more effort you can create an TCP/IP adapter by your own, according to JCA architecture.
    A sender Java proxy does not have any runnable code itself, so the problem to create a listened is not solved.

  • XI 2.0 Java Proxy error

    Hi All,
      I am receiving the following error:
    RFC_ADAPTER.JCO_RUNTIME_EXCEPTION:System error when calling the outbound RFC adapter (cannot deserialize JCo request from XML)
    The message I'm sending is synchronous coming from a Java Webapp and requesting infomation from R/3.
    There are two pieces to the interface I have created.  The first is calling a function which validates a few fields then returns 'return codes'.  The second will create a sales order and return a few numbers.  They are built into the same interface and use message splitting based on an input field.  The verification piece is working which tells me that this is not a problem with the actual RFC adapter but when I run the 'create sales order' function I receive the aforementioned error.
    n e thoughts?

    Hi Stefan, thx for the reply.
      I am running the latest version of the function.  I do have one date field in the RFC structure, the rest are strings.  The data going into that date field is being mapped from a string field in the sent message.  This shouldn't be a problem (I don't believe) I have done this in many other interfaces.
      I noticed that in my xi monitor (SXMB_MONI) under the column labeled 'Outbound' the acronym 'RFC' shows up for my failing message.  When I send a message through the other java proxy interface that works I get nothing in the column.  I'm not sure if this means n e thing but I thought I would through that in.
      I've also set up my scenario changing from synchronous to asynchronous and using the file adapter and it seems to make it through, minus the error on the return message.
    .. I forgot to mention that there have not been any changes to the RFC adapter configuration.  ... and I have restarted it to see if that would make a difference.  It did not.
    n e other ideas?
    Message was edited by: Larry Chaput

  • Java Proxy Runtime:  failure to locate proxy bean on inbound call

    Hello gurus of the SDN,
    I have been trying to get an inbound Java Proxy scenario to work in XI 3.0 but have not been able to get the JPR to recognize my generated and deployed java code.  My scenario is set up to call the java proxies generated from a message interface based on the MATMAS Idoc.  I successfully deployed the generated java proxies on the same host box as is running the XI instance.  The objects are named as follows
    Message interface on XI = Inbound_MATMAS04
    Generated proxy bean = Inbound_MATMAS04_PortTypeBean
    Implementing class = InboundMATMAS04_PortTypeImpl
    Implementing method = inboundMATMAS04
    I used the JPR transport servlet to register the interface and implementing class but am not sure if I did this correctly.  I used the following entry in my web browser:
    http://nadcp786:50000/ProxyServer/register?
    ns=urn:xiTrainingLabs:groupXX:SAP&
    interface=InboundMATMAS04&
    bean=InboundMATMAS04_PortTypeImpl&
    method=inboundMATMAS04
    I also tried using the localejb/ prefix for the bean name in the above step since the code is co-located.  When I trigger the scenario, the Idoc info is passed into XI and the Java Proxy Runtime is called, but I get the following error response back in the SOAP header:
    - <SAP:Error xmlns:SAP="http://sap.com/xi/XI/Message/30" xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" SOAP:mustUnderstand="1">
      <SAP:Category>XIAdapterFramework</SAP:Category>
      <SAP:Code area="PARSING">GENERAL</SAP:Code>
      <SAP:P1 />
      <SAP:P2 />
      <SAP:P3 />
      <SAP:P4 />
      <SAP:AdditionalText>com.sap.aii.af.ra.ms.api.DeliveryException: Cannot locate proxy bean InboundMATMAS04_PortTypeImpl: com.sap.aii.proxy.xiruntime.core.XmlInboundException: Cannot locate proxy bean InboundMATMAS04_PortTypeImpl</SAP:AdditionalText>
      <SAP:ApplicationFaultMessage namespace="" />
      <SAP:Stack />
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    Finally, appended at the end of this post is the audit log of the messaging system showing that the JPR is called but without being able to locate the bean.  I think I am missing a configuration step somewhere, but can’t figure out what it is!!  Can anyone help me? 
    Many thanks in advance.
    Regards,
    Nick Simon
    Time Stamp     Status     Description
    2004-10-25 19:47:32     Success     The message was successfully received by the messaging system. Profile: XI URL: http://nadcp786.bcsdc.lexington.ibm.com:50000/MessagingSystem/receive/JPR/XI
    2004-10-25 19:47:32     Success     Using connection JPR. Trying to put the message into the receive queue.
    2004-10-25 19:47:32     Success     The message was successfully retrieved from the receive queue.
    2004-10-25 19:47:32     Success     The message status set to DLNG.
    2004-10-25 19:47:32     Success     Java proxy runtime (JPR) accepted the message
    2004-10-25 19:47:34     Error     JPR could not process the message. Reason: Cannot locate proxy bean localejbs/InboundMATMAS04_PortTypeImpl
    2004-10-25 19:47:34     Error     Delivery of the message to the application using connection JPR failed, due to: Cannot locate proxy bean localejbs/InboundMATMAS04_PortTypeImpl.
    2004-10-25 19:47:34     Error     The message status set to FAIL.
    2004-10-25 19:47:34     Error     Asynchronous error detected: Cannot locate proxy bean localejbs/InboundMATMAS04_PortTypeImpl. Trying to report it.
    2004-10-25 19:47:34     Error     Asynchronous error reported.
    Message was edited by: Nicholas Simon

    Hi
    How do you determine the JNDI naming of the a EJB?
    I have following entry in JNDI directory in the root
    Object Name FlightQueryIn
    Class Name javax.naming.Reference
    Context Name 
    Object Value Reference Class Name:
    Type: clientAppName
    Content: sap.com/JavaProxyEAR
    Type: interfaceType
    Content: remote
    Type: home
    Content: com.sap.aii.proxy.xiruntime.core.AbstractProxyInboundHome4
    Type: ejb-link
    Content: FlightSeatAvailabilityQueryIn_PortTypeBean
    Type: jndi-name
    Content: FlightQueryIn
    Type: remote
    Content: com.sap.aii.proxy.xiruntime.core.AbstractProxyInboundRemote4
    I tried to register the bean with JPR using:
    http://ctsapxid01:50100/ProxyServer/register?ns=http://sap.com/xi/XI/Demo/Airline&interface=FlightSeatAvailabilityQuery_In&bean=FlightQueryIn&method=flightSeatAvailabilityQueryIn
    I followed the following blog
    http://wiki.sdn.sap.com/wiki/display/Java/JavaProxyChangesinPI7.1fromPI7.0
    Thanks,
    Chris

  • Sender Abap Proxy no get in PI

    Hi expert,
    I have an sender abap proxy scenario which working fine in development server and even staging server but when transported to production server, the data seem can't go into PI server. I have check all the setting and sure the setting was set correctly. When i check on the system log in sm21 abap ERP, it show an error.
    Operating system call gethostbyname failed (error no. 0 )
    Any idea on how to solve this? Thanks.

    Hi,
    plz check transactions sldcheck and sldapicust. Everything ok?
    What about SXMB_ADM? System maintained as Application System? Destination given to PI Runtime?
    Can you ckeck that destination at SM59?
    Plz have a look to destinations SLD_NUC and SLD_UC. Do they work?
    Regards,
    Udo

  • Java proxy client with HTTP sender

    I have SP15. I have sender agreement with HTTP adapter for system A and Java Proxy Cleint that send message as system A.
    When I send message through Java proxy I see error:
    <i>SOAPFault received from Integration Server. ErrorCode/Category: XIServer/IN_BIND_WRONG_ADPT; Params: HTTP; AdditionalText:  ; ApplicationFaultMessage:  ; ErrorStack: Server agreement found belongs to adapter HTTP; current adapter is 'XI' </i>
    When I deleted sender agreement it worked.
    Could you explain this strange behavior? Is it a bug. Sender agrement for HTTP is necessary since SP16

    I have the same problem with SOAP and file adapter. I've posted this here already.
    XIServer/IN_BIND_WRONG_ADPT
    I have deleted the sender agreement for my soap adapter scenarios, because a sender agreement is not necessary (created by the wizard). After that the soap adapter scenarios work fine. But at scenarios with a sender file adapter you need a sender agreement.
    We had the following situation:
    XI Test, XI SP17, Basis SP16 --> IN_BIND_WRONG_ADPT problem
    XI QA, XI SP17, Basis SP14 --> okay
    XI Prod, XI SP15, Basis SP 16 --> okay
    We patched our XI QA to
    XI QA, XI SP17, Basis SP16
    After that we have the IN_BIND_WRONG_ADPT problem at our XI  QA system too.
    I started a SAPP OSS call two weeks ago but got no solution till now. They checked our systems some times but with no result.
    Our central SLD is on the XI Prod System. Perhaps there is a connection. But I don't want to patch my XI Prod system to SP 17, because it's the only system that works without errors.
    Message was edited by: Gil Ritter

  • Help - how to create java proxy (sender) in NWDS 7.1

    Hi,
    I am trying to develop a java proxy as sender to send message from WAS to PI.
    I am using NWDS 7.1. Let me explain what I have done so far,
    1. Received proxy classes from PI
    2. Created a EJB Project, imported the proxy classes into EJB project
    3. created a EJB bean, local interface in the EJB project and exposed as webservice
    4. added the ejb to an ear
    5. added reference to the following jar files (external library)
    tcaiiproxy_rt_api.jar
    com.sap.aii.af.sdk.jar
    com.sap.aii.utilxi.server.jar
    com.sap.aii.utilxi.core.jar
    com.sap.aii.proxy.svc_api.jar
    6. able to build and deploy the application
    7. able to open the webservice in wsnavigator
    Error encountered:
    "Server Exception: javax.ejb.EJBException: nested exception is: java.lang.RuntimeException: java.lang.NoClassDefFoundError: com/sap/aii/proxy/xiruntime/core/AbstractType "
    Questions:
    1. Which method I should execute / call among all the proxy classes from local bean class to send message to PI?
    2. Is it mandatory to add refernces to the application.xml, ejb-jar.xml and other xmls ?
    3. How can I test / monitor the message being sent to PI interface?
    Thanks and best regards,
    Arun prabhu S

    plz cross chk the references under application-j2eeengine.xml and ejb-jar.xml
    http://wiki.sdn.sap.com/wiki/display/Java/JavaProxyChangesinPI7.1fromPI7.0
    u can chk tis article also:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/508bb504-87cf-2c10-2aaf-f3a5df75e651?quicklink=index&overridelayout=true

  • Java Proxy as Sender in PI 7.1

    Hello everybody,
    I would like to build a Java Proxy as a sender in PI 7.1. To be more precise, I would like to implement an asynchronous distribution scenario from MDM to PI. I understand the process of deploying and calling a receiver Java Proxy, but currently I don't know how to do the sender proxy. I can import the PI WSDLs, but I only get methods with return parameter void, taking the PI message type as input.
         public  void modifyRecordOutA(mdm.masterdatareplication.ModifyRecordRequest modifyRecordRequest) { }
    So far so good, but somehow I have to send the data to PI, right? Could anybody tell me how to do this? Is there any documentation available that does not refer to older versions of the NWDS?
    Thanks in advance,
    Jörg
    P.D.: Hints referring to attach pictures to the request would also be welcome, if there is something special to be considered.

    Hi,
    You can have 2 types of Java proxies viz. client(putting data into xi pipeline) & server (xi pipeline sends request to these proxies.)
    From system point of view, the requirements vary in case of these two. for server proxies you can have a webas java business system and associated technical system in sld.in case of client proxies, refer SAP note #809420.
    But for a Java proxy, I would need a separate Java server(?) to run the application on, is this correct?
    You do not need a separate Java server. The basic difference between ABAP proxies and Java proxies is ABAP proxies reside on the perticular application system(CRM or R/3) but java proxies reside on SAP Web AS J2EE stack of your XI server.
    Just search SDN pointers on Java proxy developement and you will get good pointers. There is one How-to guide on service marketplace by the name "HowToWorkWithJavaProxies.pdf".
    Regarding your dev environment, you can always make use of NWDS, you need to be very much familier with EJB concepts and deployment. Check help.sap.com for more details.
    few links for java proxies
    /people/rashmi.ramalingam2/blog/2005/06/25/an-illustration-of-java-server-proxy
    /people/prasad.ulagappan2/blog/2005/06/27/asynchronous-inbound-java-proxy
    Learning Java proxies - landscape question
    Check these links also,
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/a068cf2f-0401-0010-2aa9-f5ae4b2096f9
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/f272165e-0401-0010-b4a1-e7eb8903501d
    Rgds
    joel
    Edited by: joel trinidade on Feb 18, 2009 3:06 PM

Maybe you are looking for

  • Z3 randomly stopped working!

    When I went to sleep last night, my phone was working fine. It was on my bed and charging. When I woke up this morning, it was still plugged in but completely dead.It won't turn on, it doesn't have the red light when charging, nothing. I tried a diff

  • Can i trust the registry cleaner Error Doctor?

    can i trust the registry cleaner Error Doctor?

  • Error sending method invocation request(oc4j 10g(10.1.3.1))

    Dear, I have two applications a.ear and b.ear. They both are deployed on same oc4j container (10g(10.1.3.1)) Both applications use each others session beans. In order to make communications between these two applications possible I set global-jndi-lo

  • Fix for cannot connect to iTunes store

    I have been working on this problem (iTunes for Windows) since April 2012 and finally got it working. I have gone through all the suggested "advanced" trouble shooting procedures with no luck. I even tried opening a work order with them which was a w

  • DESCARGA DE TEMAS Y TONOS

    COMO PUEDO DESCARGAR EN MI IPHONE 3GS TEMAS Y TONOS NUEVOS? DESDE DONDE SE HACE?