Retreiving the soap client ip address

Am using Websphere Application Developer to create a web service. I wanted to authenticate the webservice client based on the ip address of the client. Please help me out in doing this.

Are you setting this up with a single pc connected to it? If so, go to a command prompt and type in:
ipconfig (if using win XP)
winipcfg (if using 98)
what is the IP address ?

Similar Messages

  • Hiding business-logic methods from the SOAP Client

    Hello,
    Is there any way to hide a method from the SOAP Client.
    For Example, Lets say I have two methods in my object Foo. And the client of this web-service can create Foo thru SOAP API. The method are:
    public String getName();
    public Group getGroup();
    I want the SOAP client to see the Foo object only with getName() and not getGroup().
    Can I control this thru Java2Wsdl or something else?
    Thanks,
    Neeta.

    You can use source2wsdd with @wlws:exclude tag for the methods you want to hide.

  • CSS 11500:Client ip-address visible to the real server

    Is it possible to keep the original ip-address of the client when the the css is redirecting the traffic to the real server. customer needs the client ip-address on the real server for reporting.
    regards
    Dietrich Schleyer

    Dietrich,
    by default the CSS will keep the original client ip address.
    To have the CSS changing the client ip, your customer must have configured a group with 'add destination service'.
    Probably because your client is using a one-armed setup which is the easiest to implement but the worst to use.
    So, your customer should go to a 2-sides CSS design and have the traffic flow through the CSS without the need to do client nat.
    Once the design is correct, you can remove the group and the CSS will keep the client ip address.
    Regards,
    Gilles.
    Thanks for rating.

  • How can I get the client IP address correctly?

    Hi,
    I am having a problem with getting the client ip address correctly using jsp. I am currently using the method request.getRemoteAddr() (JSP)to get the remote client IP. This method works fine with intranet addresses.
    However, when I am using a dial-up connection through a ISP (internet service provider), it could not detect the actual IP that is assigned to my client PC, but instead got another IP address.
    Could anyone advise me on that? And could anyone advise me on how to obtain the correct client ip address correctly using any of the java technologies?
    Thanks,
    Damien

    >
    I don't believe so. You can't establish aconnection
    over the internet using a private IP. As far as I
    know most, if not all routers, block them so itwon't
    even move over the backbone.Well with port-mapping it is definately possible to
    allow an external ip to "connect" to an internal ip, i
    have done this very thing myself...Not the same.
    You are addressing the external server with a public IP address. That is then translated into the internal connection.
    That is not the same as using a private IP on the internet.
    As I said, the backbone will not let a private IP through.
    >
    >
    Yes, but my point is that at any given time, in the
    world, many boxes might have one address. Even ifit
    is a private IP is it still that IP for aparticular
    box. So if you use java to get its IP that is theIP
    that it gets. And that IP is useless for anything
    unless that IP is meaningful for the othercomputer.
    But all ips must be unique in a designated "internet"
    be it an "intranet" or whatever, there cannot be a
    situation where two identical ips in the same
    "internet", such that an ip that is achieved from a
    page-hit is valid and meangingful in order to send the
    data it is requesting back to it, or find out more
    about that computer, or log and report it if it is
    doing something illegal; i don't think its that
    meangingless is it?Yes it is. You can't use an IP to uniquely identify a box, and that is the sole criteria, when there might be two boxes with the same IP.
    When you use java on a client box to get the IP of the box, it doesn't necessarily return an IP that it meaningful to the anyone outside the lan on which the box lives.
    Because of this internet systems must do one of the following:
    -Do not use the IP as an identifier.
    -Require that the client has a public IP. This is often static. At least some security systems use this to validate users.

  • Parsing error when running a SOAP client

    New to SOAP. Tring to get get it up an running using some of the Oreilly examples from Java and XML. Anyone with any suggestions to fix the error I am getting. Thanx in advance.
    1>This is my simple SAX client:
    package xml;
    import java.net.URL;
    import java.util.Vector;
    import org.apache.soap.Constants;
    import org.apache.soap.Fault;
    import org.apache.soap.rpc.Call;
    import org.apache.soap.SOAPException;
    import org.apache.soap.rpc.Parameter;
    import org.apache.soap.rpc.Response;
    public class CDAdder {
    public void add(URL url, String title, String artist) throws SOAPException {
    System.out.println("Adding CD titled '" + title + "' by '" + artist + "'");
    //Build the call object
    Call call = new Call();
    call.setEncodingStyleURI("urn:cd-catalog");
    call.setMethodName("addCD");
    call.setEncodingStyleURI(Constants.NS_URI_SOAP_ENC);
    //Setup the parameters
    Vector params = new Vector();
    params.addElement(new Parameter("title",String.class,title,null));
    params.addElement(new Parameter("artist",String.class,artist,null));
    call.setParams(params);
    //Invoke the call
    Response response;
    response = call.invoke(url,"");
    if(!response.generatedFault()) {
    System.out.println("Successful CD Addition");
    } else {
    Fault fault = response.getFault();
    System.out.println("Error encountered: " + fault.getFaultString());
    public static void main(String[] args) {
    try {
    URL url = new URL("http://localhost:8081/soap/servlet/rpcrouter");
    String title = "Riding the Midnight Train";
    String artist = "Doc Watson";
    CDAdder adder = new CDAdder();
    adder.add(url, title, artist);
    } catch(Exception e) {
    e.printStackTrace();
    2>My service:
    package javaxml2;
    import java.util.Hashtable;
    public class CDCatalog {
    private Hashtable catalog;
    public CDCatalog() {
    catalog = new Hashtable();
    catalog.put("Nickel Creek", "Nickel Creek");
    catalog.put("Let it Fall", "Sean Watkins");
    catalog.put("Aerial Boundaries", "Michael Hedges");
    catalog.put("Taproot", "Michael Hedges");
    public void addCD(String title, String artist) {
    if ((title == null) || (artist==null)) {
    throw new IllegalArgumentException("Title or Artist cannot be null.");
    catalog.put(title, artist);
    public String getArtist(String title) {
    if (title == null) {
    throw new IllegalArgumentException("Title cannot be null.");
    return (String)catalog.get(title);
    public Hashtable list() {
    return catalog;
    3>My deployement descriptor:
    <isd:service xmlns:isd="http://xml.apache.org/xml-soap/deployment"
    id="urn:cd-catalog"
    >
    <isd:provider type="java"
    scope="Application"
    methods="addCD getCD list"
    >
    <isd:java class="javaxml2.CDCatalog" static="false" />
    </isd:provider>
    <isd:faultListener>org.apache.soap.server.DOMFaultListener</isd:faultListener>
    </isd:service>
    4>I have deployed the SOAP Service:
    D:\XML-RPC\javaxml2>java org.apache.soap.server.ServiceManagerClient http://loca
    lhost:8081/soap/servlet/rpcrouter deploy xml/CDCatalogDD.xml
    D:\XML-RPC\javaxml2>java org.apache.soap.server.ServiceManagerClient http://loca
    lhost:8081/soap/servlet/rpcrouter list
    Deployed Services:
    urn:cd-catalog
    D:\XML-RPC\javaxml2>
    Error when I try using the service:FYI: I am running the client with JBuilder 2005
    Adding CD titled 'Riding the Midnight Train' by 'Doc Watson'
    Error encountered: parsing error: org.xml.sax.SAXParseException: The value of the attribute "prefix="xmlns",localpart="ns1",rawname="xmlns:ns1"" is invalid. Prefixed namespace bindings may not be empty.

    call.setEncodingStyleURI("urn:cd-catalog");
    in the SOAP client has to be
    call.setTargetObjectURI("urn:cd-catalog");

  • Handling of SOAP Faults in SOAP Clients consuming PI Web services

    Hi there,
    the following is in regards to SOAP fault error handling in a SOAP client that consumes a Web Service published by PI.
    I have been reading a number of threads and blogs in regards to this topic and I am still left with some open questions which I hope to get some final answersclarifications through this thread.
    In particular the blogs
    Handling Web Service SOAP Fault Responses in SAP NetWeaver XI      - Handling Web Service SOAP Fault Responses in SAP NetWeaver XI
    XI: Propagation of meaningful error information to SOAP Client     - XI: Propagation of meaningful error information to SOAP Client
    have caused by attention.
    Both of these threads are realating to the Fault Message type one can use to return errors back to a SOAP Client (.Net, Java, etc.).
    In our scenario we published a number of Web Services through PI that provide functionality to integrate with an R3 back-end system using inbound ABAP Proxies.
    The services are standardised and will be consumed by a number of .NetJava applications and systems. The reason for the use of ABAP proxies is the customer specific application logic that is executed in the backend system. The Web services are synchronous and don't use ccBPM in the middle. Transformations are performed in PI combined with various lookups to set default values before the message is passed into the ABAP Framework of the R3 back-end system. The lookups are done against the R3 back-end system using the PI RFC Lookup feature.
    The inbound proxies currently return application errors as part of the response message back to the SOAP client. For more critical errors we introduced the use of Fault message types as the method to return the information back to the SOAP Client. This is all working satisfactory.
    The questions I have are as follows.
    1. When an error occurs at the IE level (e.g. mapping error), ABAP Proxy framework level (e.g. conversion from XML to ABAP format) or Adapter Framework level (Adapter releated error) a different SOAP fault message structure is returned to the SOAP Client than the one    used for the application errors. The SOAP fault message structure used in this case is the standard SOAP fault used by PI to return system errors back to the caller. For those SOAP fault messages there is no payload generated that could be mapped to the SOAP fault structure used for the application errors. This would be preferrable as there would be only one Fault message structure used for both inbound ABAP proxy generated fault messages and PI generated fault messages.
    Also the error messages generated by PI can be quite cryptic and difficult to interpret at the client end and could be filtered     ranslated during message mapping if the payload of the PI generated SOAP fault message could be accessed in a message mapping.
    Point 3 of the above thread 2759 indicates that this would be possible but doesn't outline how. Could somebody please clarify this for me as I don't believe that this is really possible ???.
    My idea instead was to use the PI SOAP fault message structure to also return application errors. Therefore I would create a Fault message type that matches the PI SOAP fault structure. This would enable the SOAP Client to handle only one SOAP Fault error structure. Would that be something to look into instead ?????.
    2. We have been looking at using the integrated WEB AS SOAP adapter instead of using the AF Sender SOAP adapter. While playing with this we encountered differences in the content returned through the SOAP fault generated by PI. A sample is below. Shouldn't the content of these SOAP faults be the same if the error that caused it is the same. Also the SOAP fault returned by the IE SOAP adapter is much more    useful in this particular case. Both errors below are the same, a conversion error from XML to ABAP took place in the inbound ABAP proxy framework of the back-end system.
    SOAP fault returned when using SOAP Sender adapter of AF
    <!see the documentation>
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
       <SOAP:Body>
          <SOAP:Fault>
             <faultcode>SOAP:Server</faultcode>
             <faultstring>Server Error</faultstring>
             <detail>
                <s:SystemError xmlns:s="http://sap.com/xi/WebService/xi2.0">
                   <context>XIAdapter</context>
                   <code>ADAPTER.JAVA_EXCEPTION</code>
                   <text>com.sap.aii.af.ra.ms.api.DeliveryException: XIProxy:PARSE_APPLICATION_DATA:
         at com.sap.aii.adapter.xi.ms.XIEventHandler.onTransmit(XIEventHandler.java:455)
         at com.sap.aii.af.ra.ms.impl.core.queue.consumer.CallConsumer.onMessage(CallConsumer.java:134)
         at com.sap.aii.af.ra.ms.impl.core.queue.Queue.run(Queue.java:916)
         at com.sap.aii.af.ra.ms.runtime.MSWorkWrapper.run(MSWorkWrapper.java:56)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)</text>
                </s:SystemError>
             </detail>
          </SOAP:Fault>
       </SOAP:Body>
    </SOAP:Envelope>
    SOAP fault using integrated SOAP adapter of PI IE
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
       <SOAP:Body>
          <SOAP:Fault>
             <faultcode>SOAP:Server</faultcode>
             <faultstring>System Error</faultstring>
             <detail>
                <s:SystemError xmlns:s="http://sap.com/xi/WebService/xi2.0">
                   <context/>
                   <code>ABAP.PARSE_APPLICATION_DATA</code>
                   <text>Error during XML => ABAP conversion (Request Message; error ID: CX_ST_DESERIALIZATION_ERROR; (/1SAI/TXSBE20FF604BAFEF8D990A XML Bytepos.: 564  XML Path: ns1:CreatePORequest(1)POHEADER(2)COMP_CODE(1) Error Text: Data loss occurred when converting ############################## Kernel ErrorId: CONVT_DATA_LOSS))</text>
                </s:SystemError>
             </detail>
          </SOAP:Fault>
       </SOAP:Body>
    </SOAP:Envelope>
    I have been reading threads for hours without being able to find one that answers questions 1 or provides a blog that outlines the approach one should take for error handling in SOAP clients that consume PI Web Services (and covers both PISystem generated faults and faults raised in Proxies).
    There may already be a blog or thread and I just missed it.
    Any comments are welcome.
    Thanks. Dieter

    Hi Dieter,
    As Bhavesh already mentioned fault messages are used for application errors. The same is described in SAP XI help:
    http://help.sap.com/saphelp_nw04/helpdata/en/dd/b7623c6369f454e10000000a114084/frameset.htm
    In case of system error (e.g. field length too long in proxy call or error in XI/PI mapping) there seems to be no standard way of handling it and propagating the response to the consumer of webservice.
    Each system error is not recognized by SOAP adapter and SOAP adapter exception is raised.
    The only bizzare solution that I can see is developing an adapter module and transport wrong message to standard fault message before delivering it to adapter engine:
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/f13341771b4c0de10000000a1550b0/frameset.htm
    Kind regards,
    Wojciech
    btw nice thread

  • Using Message ID in the SOAP header (Sender)

    Hi Experts,
    The scenario is SOAP to IDoc.
    We have requirement to insert the Message ID in the SOAP header for avoiding duplicate messages from the SOAP client.
    Please note SOAP client is unable to support URL parameter, so we have to use Message ID in the SOAP header.
    So please suggest how to insert the Message ID in the SOAP header (WSDL) , and do we need to implement any mapping to retrieve the Message ID value from the SOAP header  - to create a PI message.
    Thanks in advance.
    MK

    But I want to know how we update the WSDL with the required Feild(messageID).
    I dont think you can update the wsdl url to include the messageID field...if you notice the other fields in the wsdl you will find all are static...however your messageID will be dynamic.....so just ask the SOAP client application to append the MessageId field and send the message.....at runtime the message id will be extracted by PI......did you test the scenario?...if no then test it once so that if there is an error we will come to know...
    Regards,
    Abhishek.

  • Obtain remote client IP address from webservice with WL 7.0.7

    Hi,
    Please Help!!
    I need to get the remote client IP address from inside a webservice but with WLS 7.0.7. I know it is possible with WL 8:
    WebServiceContext wsContext = WebServiceContext.currentContext();
    WebServiceHttpSessionImpl vHttp = (WebServiceHttpSessionImpl)wsContext.getSession();
    vHttp.request.getRemoteAddr();
    But WL 7 has not available WebServiceContext.currentContext() method.
    Thank you very much

    This was logged as an enhancement which I believe was hoping to make it into one of the later 6i releases of forms. Ref:<Bug:856958> if you can access via metalink or Support.
    Grant Ronald.

  • ABAP SOAP Client with MTOM

    Hi experts,
    I need to create a SOAP client in ABAP for a web service that uses MTOM (xop:include) to transfer binary files.
    I know how to create a client proxy in SE80 from WSDL, but I.have no idea how to send attachments with protocol MTOM.
    Does anybody know how to do this in ABAP?
    Thanks a lot!
    LUIS B.

    Hi there.
    Well, I couldn't get the ABAP Proxy working so I build the SOAP client from scratch using class CL_HTTP_CLIENT. It was harder because I had to take care of every aspect in the HTTP communication but in the end it was more flexible.
    I hope this helps.

  • Wanted SOAP client and server examples

    I am unable to run the SOAP client and server programs.
    Can anybody help me by providing some simple soap examples of both
    client and server and also how to deploy them.

    JAX-WS has a number of samples as does NetBeans. Check out http:/jax-ws.dev.java.net and http://www.netbeans.org/kb/55/websvc-jax-ws.html

  • WHICH SOAP CLIENT STACK FOR  JDEV 10.1.3 WEBPROXY ?

    Hello everybody,
    I just succeeded in calling webservice stubs, created in Jdeveloper 10.1.2., from a oracle10G (R2) DB. This works perfectly...
    Now i'm trying to deploy the same webservice from Jdeveloper 10.1.3 into the same database. I generated a proxy (whereas in Jdeveloper 10.1.2 you create a stub) and deployed a static method from the client class, in the proxy, into the DB (similar to the approach in Jdeveloper 10.1.2). However this doesn't work. I get a big list of error messages containing all reference errors. My guess is that the soap client stack, loaded into Oracle, is different for both versions of Jdeveloper. In that case i'm still working with the stack for jdev 10.1.2 where I should be working with the stack form jdev10.1.3.
    Can anyone please tell me what .JAR's I have to load in the DB to get the proper stack needed for calling 10.1.3 proxys (or stub as you will)?
    Many thx in advance!!!!
    Grtz,
    Kim

    I found out that Jdeveloper 10.1.3 works with JAX-RPC webservices. So instead of installing the SOAP client stack one should install the JAX-RPC stack in the database. this stack is found on the oracle site ( search for call-out utilities).
    Hope this helps people with the same problem!
    Message was edited by:
    Kim Zeevaarders

  • HTTP SOAP Client

    Hi guys,
    I'm very new to web service technology & need your help writing a simple soap client to call a web service.
    the soap request should be : POST /lightboxedit/LBEDataService.asmx HTTP/1.1
    Host: abourne.dyndns.org
    Content-Type: application/soap+xml; charset=utf-8
    Content-Length: length
    <?xml version="1.0" encoding="utf-8"?>
    <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
      <soap12:Body>
        <GetProjects xmlns="http://www.lightboxedit.com/webservices/" />
      </soap12:Body>
    </soap12:Envelope> and the soap response is of the form : HTTP/1.1 200 OK
    Content-Type: application/soap+xml; charset=utf-8
    Content-Length: length
    <?xml version="1.0" encoding="utf-8"?>
    <soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
      <soap12:Body>
        <GetProjectsResponse xmlns="http://www.lightboxedit.com/webservices/">
          <GetProjectsResult>
            <Project>
              <ProjectID>int</ProjectID>
              <ProjectName>string</ProjectName>
            </Project>
            <Project>
              <ProjectID>int</ProjectID>
              <ProjectName>string</ProjectName>
            </Project>
          </GetProjectsResult>
        </GetProjectsResponse>
      </soap12:Body>
    </soap12:Envelope>I would appreciate a lot your help in writing the soap client to call this web service(it should be trivial to any web service expert)
    thank you much.

    >
    In that case, I take back my words. But I must
    comment that it would have been appropriate if you
    would have posted a link to your other post earlier.
    That would have generated some helpful responses by
    this time.May be I didn't succeded to formulate well my question. I apologize..
    I have also written this following code to talk to web service but it's returning : Error can not communicate.
    SoapRequestBuilder s = new SoapRequestBuilder();
                            s.Server = "abourne.dyndns.org";
                            s.MethodName = "GetProjects";
                            s.XmlNamespace = "http://www.lightboxedit.com/webservices/";
                            s.WebServicePath = "http://abourne.dyndns.org/lightboxedit/LBEDataService.asmx";
                            s.SoapAction = s.XmlNamespace+s.MethodName;
                           String response = s.sendRequest();
                         System.out.println(response);
               ------class SoapBuilderRequest.java
    public class SoapRequestBuilder {
         String Server = "";
           String WebServicePath = "";
           String SoapAction = "";
           String MethodName = "";
           String XmlNamespace = "";
           private Vector ParamNames = new Vector();
           private Vector ParamData = new Vector();
           public void AddParameter(String Name, String Data) {
             ParamNames.addElement( (Object) Name);
             ParamData.addElement( (Object) Data);
           public String sendRequest() {
             String retval = "";
             Socket socket = null;
             try {
               socket = new Socket(Server, 80);
             catch (Exception ex1) {
               return ("Error: "+ex1.getMessage());
             try {
               OutputStream os = socket.getOutputStream();
               boolean autoflush = true;
               PrintWriter out = new PrintWriter(socket.getOutputStream(), autoflush);
               BufferedReader in = new BufferedReader(new InputStreamReader(socket.
                   getInputStream()));
               int length = 295 + (MethodName.length() * 2) + XmlNamespace.length();
               for (int t = 0; t < ParamNames.size(); t++) {
                 String name = (String) ParamNames.elementAt(t);
                 String data = (String) ParamData.elementAt(t);
                 length += name.length();
                 length += data.length();
               // send an HTTP request to the web service
               out.println("POST " + WebServicePath + " HTTP/1.1");
               out.println("Host: abourne.dyndns.org");
               out.println("Content-Type: application/soap+xml");
               out.println("Content-Length: " + String.valueOf(length));
               out.println("SOAPAction: \"" + SoapAction + "\"");
               out.println("Connection: Close");
               out.println();
               out.println("<?xml version=\"1.0\" encoding=\"utf-8\"?>");
               out.println("<soap12:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\">");
               out.println("<soap12:Body>");
               out.println("<" + MethodName + " xmlns=\"" + XmlNamespace + "\">");
               //Parameters passed to the method are added here
               for (int t = 0; t < ParamNames.size(); t++) {
                 String name = (String) ParamNames.elementAt(t);
                 String data = (String) ParamData.elementAt(t);
                 out.println("<" + name + ">" + data + "</" + name + ">");
               out.println("</" + MethodName + ">");
               out.println("</soap12:Body>");
               out.println("</soap12:Envelope>");
               out.println();
               // Read the response from the server ... times out if the response takes
               // more than 3 seconds
               String inputLine;
               StringBuffer sb = new StringBuffer(1000);
               int wait_seconds = 3;
               boolean timeout = false;
               long m = System.currentTimeMillis();
               while ( (inputLine = in.readLine()) != null && !timeout) {
                 sb.append(inputLine + "\n");
                 if ( (System.currentTimeMillis() - m) > (1000 * wait_seconds)) timeout = true;
               in.close();
               // The StringBuffer sb now contains the complete result from the
               // webservice in XML format.  You can parse this XML if you want to
               // get more complicated results than a single value.
               if (!timeout) {
                 String returnparam = MethodName + "Result";
                 int start = sb.toString().indexOf("<" + returnparam + ">") +
                     returnparam.length() + 2;
                 int end = sb.toString().indexOf("</" + returnparam + ">");
                 //Extract a singe return parameter
                 retval = sb.toString().substring(start, end);
               else {
                 retval="Error: response timed out.";
               socket.close();
             catch (Exception ex) {
               return ("Error: cannot communicate.");
             return retval;
         }

  • Finding real Client IP Address under PROXY Server

    Hi friends,
    I have a requirement to find out the Client IP Address that is under a Proxy Server.( Actually I used the getRemoteAddr but this always returns me the Prox-Server IP Address and not the real Client IP Address)
    Can some one guide me how I can do this with JAVA JSPs / Servlets..
    Thanks a lot!!

    Most proxies can be configured to forward the client's ip address in a request
    header to the origin server - check the headers sent to the server and you should
    be able to identify it.

  • Wls7.0 soap client jar under wl6 problems

    Hi.
    I downloaded the soap client jar file from a wl7 service. I am trying to package the client jar file and webserviceclient jar file for my ejb under wl6. But when I deploy my application, it says noMethod found exception. It seems that there are some class conflicts of the weblogic client service jar file and wl6 libraries. I badly need help on this.

    True, normal WLS 7.0 web service client will not work
    in WLS 6.1 due to class conflict. So you need to use
    portable client.
    Here is an 8.1 example (It may work on 7.0):
    http://manojc.com/?sample29
    Here is the doc for portable stubs in 7.0:
    http://edocs.bea.com/wls/docs70/webserv/client.html#1061489
    Also, please use the latest 7.0 SP.
    HTHs,
    -manoj
    http://manojc.com
    "Naveed Ahmad" <[email protected]> wrote in message
    news:3ebdb882$[email protected]..
    Hi.
    I downloaded the soap client jar file from a wl7 service. I am trying topackage the client jar file and webserviceclient jar file for my ejb under
    wl6. But when I deploy my application, it says noMethod found exception. It
    seems that there are some class conflicts of the weblogic client service jar
    file and wl6 libraries. I badly need help on this.
    >

  • Is there any way to know that SOAP Client has closed and broken connection

    Hi,
    I am exposing a stateless session EJB using Oracle SOAP Webservices...and it is working smoothly.
    But when the SOAP client crashes or is closed, is
    there anyway that can know this happened on the server side i.e., the SOAP connection is lost.
    Thanks,
    Prashant

    Oops..Got posted before I could finish the query
    Hi
    For the given code snippet
    var c=Circle{
      centerX:10  
      centerY:10
      fill:Color.YELLOW
      onMouseClicked:function(event){
          c.fill=Color.RED;
          printNodeAsImage(c, filename) //to a file
    }Let us assume that printNodeAsImage(c,filename) saves the circle node with the current color to a file. See http://rakeshmenonp.wordpress.com/2010/04/26/javafx-1-3-save-as-image/ for a implementation of this function
    What we notice instead is that printNodeAsImage(c, filename) actually saves the node with the color YELLOW instead of RED. Is there any way to know deterministically when the UI has been updated due to a variable value change (or because of binding). (In this case the transition from Yellow to Red) So that we can perform other operations on the UI state - like saving it to a file
    Regards,
    Dhruva Ray

Maybe you are looking for

  • J2SE Installing on XP Home Freezing UP

    J2SE v1.4.2 and Netbeans IDE 3.5.1 Installer Freezes up at: Preparing J2SDK 1.4.2 components for installation 8% This occurs either when installing over net "Open" and when installing from hard drive "save" Have disk space and administrrator privledg

  • Save as image

    Hi, I would like to modify the File Dialog so the user can select one format between 3 possible formats to save an image. For example the user has the choice to save its image as bmp OR jpg OR png. So far I could define the pattern file with FileDial

  • Problem with ATP check in release of process order

    Hi gurus, I have next problem in automatic release of process order: No checking group is maintained for product 000000000791104015, plant VFMX in matl master. Situation: I've some materials without MRP views in material master data but apparently th

  • Invisible "file" in trash?

    Hey there, So for the last couple of weeks I have had a "file" in my trash that won't delete. Its not a huge deal, I just want to try an figure out what it is/how it got there/how to get rid of it. The trash info says that there is one item that is t

  • Edit Forum

    I have a question please,and I appreciate very much If you can help me. Inside Edit forum profile---privacy settings, I have my name and e-mail set at:  Yourself...  Is  that means, my e-mail is going to be private... am I correct ? But when I am Log