Consume a Web Service Proxy


Hi all

How to consume an integrated Oracle SOA Gateway Web Service exposed using Oracle JDeveloper?

Thank you

@P

Well, jdev 10g is very old, so one wonders if the SOAP ws libraries delivered with him can support new web services.

But, here's documentation: http://sqltech.cl/doc/oas10gR31/core.1013/b28764/web_services003.htm

Dario

Tags: Java

Similar Questions

  • Creation of SCOM Web Service Proxy OMCF

    I am referring to the Sub SCOM documentation to create an OMCF web service proxy.

    https://msdn.Microsoft.com/en-us/library/hh328977(d=printer).aspx

    When I execute a command:

    Svcutil /language:c# /config:app.config http://localhost:6272/ConnectorFramework?svc
    
       --> Replaced localhost with the actual IP address where my SCOM is installedI get below WS- MetaDataexchange error message. I made sure the data access service is up and running in windows services.Can anybody suggest what could be the issue here? Firewall or the port I am accessing is wrong or do I need to configure any service for this to work? Error: Cannot obtain Metadata from http://10.50.1.153:6272/ConnectorFramework?svc
    
    If this is a Windows (R) Communication Foundation service to which you have access, please check that you have enabled metadata publishing at the specified address.  For help enabling metadata publishing, please refer to the MSDN documentation at http://go.microsoft.com/fwlink/?LinkId=65455.
    
    WS-Metadata Exchange Error    URI: http://10.50.1.153:6272/ConnectorFramework?svc
    
        Metadata contains a reference that cannot be resolved: 'http://10.50.1.153:6272/ConnectorFramework?svc'.
    
        Could not connect to http://10.50.1.153:6272/ConnectorFramework?svc. TCP error code 10061: No connection could be made because the target machine actively refused it 10.50.1.153:6272.
    
        Unable to connect to the remote server
    
        No connection could be made because the target machine actively refused it 10.50.1.153:6272
    
    HTTP GET Error    URI: http://10.50.1.153:6272/ConnectorFramework?svc
    
        There was an error downloading 'http://10.50.1.153:6272/ConnectorFramework?svc'.
    
        Unable to connect to the remote server
    
        No connection could be made because the target machine actively refused it 10.50.1.153:6272
    
    If you would like more help, type "svcutil /?"
    
    C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin>
    
    This issue is beyond the scope of this site (for consumers) and to be sure, you get the best (and fastest) reply, we have to ask either on Technet (for IT Pro) or MSDN (for developers)

    If you give us a link to the new thread we can point to some resources it
  • Consume a Web service using javax.microedition.xml.rpc.Operation

    Requirement. Consume a Web Service using native libraries of Blackberry.

    Target WebService: http://ws.cdyne.com/WeatherWS/Weather.asmx

    WebService of the operation: http://ws.cdyne.com/WeatherWS/Weather.asmx?op=GetCityWeatherByZIP

    Environment: Eclipse JDE 1.3.0 with BB SDK Enterprise Server BB 5.0.0

    First Guide of: http://blog.bayestech.com/?tag=blackberry

    1 Java Stub

    public interface IWeatherServiceZip
    {
        public String getWeatherServiceByZip(String zipCode) throws java.rmi.RemoteException;
    
    }
    

    2. Service Java class

    import java.rmi.RemoteException;
    import javax.microedition.xml.rpc.ComplexType;
    import javax.microedition.xml.rpc.Element;
    import javax.microedition.xml.rpc.Operation;
    import javax.microedition.xml.rpc.Type;
    import javax.xml.namespace.QName;
    import javax.xml.rpc.JAXRPCException;
    
    import com.lm.bb.ws.interfaces.IWeatherServiceZip;
    
    /**
     * @author lmo0
     *
     */
    public class WeatherServiceZip implements IWeatherServiceZip, javax.xml.rpc.Stub
    {
        protected static final QName _qname_operation_GetCityWeatherByZIP = new QName("http://ws.cdyne.com/WeatherWS", "GetCityWeatherByZIP");
        protected static final QName _qname_GetCityWeatherByZIPResponse = new QName("http://ws.cdyne.com/WeatherWS", "GetCityWeatherByZIPResponse");
        protected static final QName _qname_GetCityWeatherByZIP = new QName("http://ws.cdyne.com/WeatherWS", "GetCityWeatherByZIP");
        protected static final Element _type_GetCityWeatherByZIP;
        protected static final Element _type_GetCityWeatherByZIPResponse;
    
        private String[] _propertyNames;
        private Object[] _propertyValues;
    
        public WeatherServiceZip()
        {
            _propertyNames = new String[]
            { ENDPOINT_ADDRESS_PROPERTY };
            _propertyValues = new Object[]
            { "http://ws.cdyne.com/WeatherWS/Weather.asmx" };
        }
    
        public void _setProperty(String name, Object value)
        {
            int size = _propertyNames.length;
            for (int i = 0; i < size; ++i)
            {
                if (_propertyNames[i].equals(name))
                {
                    _propertyValues[i] = value;
                    return;
                }
            }
            String[] newPropNames = new String[size + 1];
            System.arraycopy(_propertyNames, 0, newPropNames, 0, size);
            _propertyNames = newPropNames;
            Object[] newPropValues = new Object[size + 1];
            System.arraycopy(_propertyValues, 0, newPropValues, 0, size);
            _propertyValues = newPropValues;
    
            _propertyNames[size] = name;
            _propertyValues[size] = value;
        }
    
        public Object _getProperty(String name)
        {
            for (int i = 0; i < _propertyNames.length; ++i)
            {
                if (_propertyNames[i].equals(name))
                {
                    return _propertyValues[i];
                }
            }
            if (ENDPOINT_ADDRESS_PROPERTY.equals(name)
                    || USERNAME_PROPERTY.equals(name)
                    || PASSWORD_PROPERTY.equals(name))
            {
                return null;
            }
            if (SESSION_MAINTAIN_PROPERTY.equals(name))
            {
                return new Boolean(false);
            }
            throw new JAXRPCException("Stub does not recognize property: " + name);
        }
    
        protected void _prepOperation(Operation op)
        {
            for (int i = 0; i < _propertyNames.length; ++i)
            {
                op.setProperty(_propertyNames[i], _propertyValues[i].toString());
            }
        }
    
        public String getWeatherServiceByZip(String zipCode) throws RemoteException
        {
            Object inputObject[] = new Object[]
            { zipCode };
    
            Operation op = Operation.newInstance(_qname_operation_GetCityWeatherByZIP,    _type_GetCityWeatherByZIP, _type_GetCityWeatherByZIPResponse);
            _prepOperation(op);
            op.setProperty(Operation.SOAPACTION_URI_PROPERTY,"http://ws.cdyne.com/WeatherWS/GetCityWeatherByZIP");//SOAP Action
            Object resultObj;
            try
            {
            resultObj = op.invoke(inputObject);
            System.out.print(resultObj.toString());
            } catch (JAXRPCException e)
            {
            e.printStackTrace();
            Throwable cause = e.getLinkedCause();
            if (cause instanceof java.rmi.RemoteException)
            {
            throw (java.rmi.RemoteException) cause;
            }
            throw e;
            }
            return (String) ((Object[]) resultObj)[0];
        }
    
        static
        {
            _type_GetCityWeatherByZIPResponse = new Element(_qname_GetCityWeatherByZIPResponse,_complexType(new Element[]
                    { new Element(new QName("http://ws.cdyne.com/WeatherWS","GetCityWeatherByZIPResult"), Type.STRING, 0, 1, false) }), 1, 1,false);
            _type_GetCityWeatherByZIP = new Element(_qname_GetCityWeatherByZIP,_complexType(new Element[]
                    { new Element(new QName("http://ws.cdyne.com/WeatherWS","ZIP"), Type.STRING, 0, 1, false) }), 1, 1, false);
            }
    
        private static ComplexType _complexType(Element[] elements)
        {
            ComplexType result = new ComplexType();
            result.elements = elements;
            return result;
        }
    }
    

    3 problem

    There is no information about the exception that occurs when I try to debug my Application actually when you call the Web Service to:

    resultObj = op.invoke (inputObject);

    Any help.  If you have any other suggestions on how to consume a web service using BB. I don't want to use KSOAP2 because the source code is not updated more and prefer the native BB mode without using the 3rd party jars.

    Thank you

    How do you generate the stub class? Have you used Sun's Wireless Toolkit?

  • How to get started with consuming java Web services from WSDL - JDeveloper 11.1.1.7

    Hi all

    I developed a SOAP based WebService (JAX - WS) for product information. I deployed on stand-alone Weblogic server and the resulting WSDL file generated.

    In the ADF, we totally 3 options to work with the WSDL file.

    1 web Service DataControl (which will directly create a DataControl to access services exposed by Web service through WSDL)

    2 web Service proxy. (A proxy for the Web service of the Fund and offers to the client to interact with the exposed services)

    3. Java Web Service WSDL.

    From these 3 options, I am aware of the first two options. But on the way to the 3rd point or Java Web Service from WSDL, I'm not in a position to know. in what scenario, we will use this service.

    Now I have created the java web services starting from the WSDL. After generating the files of the project structure is as below.

    Please let me know where to start to interact with my application services. (We must separate class DC or any other way to interact)

    otn.PNG

    Please let me know your inputs on this. valuable suggestions would be appreciated.


    Thank you and best regards,

    Miko Auntie.

    Hi all

    On top of the implementation class (ProductsSEIImpl.java), we have an option called create a Client for the Web Service Annotations.

    This is the right option to choose, so that the client Classes get generated pertaining to this service. Of the client class, we can access the services available?

    Please comment on this if I depart.

    Thank you best regards &,.

    Miko Auntie.

  • What happened to the application Panel in Dreamweaver (consume the web service)?

    Pre-Creative cloud, I had used Dreamweaver to create a code to consume external web services. It was, I believe, the Panel "Applications".

    How to use Dreamweaver CC to consume a web service? I'm not finding anything that contributes to this day.

    Thanks in advance,

    BW

    Cold Fusion support has been removed from the DW with the release of CC 2013.

    The last version to support CF was Creative Suite 6 (CS6 2012).

    If you are a subscriber to paying creative cloud, you can fall back to your Creative Cloud Desktop App CS6 clicking applications > all THE APPS, scroll down, click on the PREVIOUS VERSIONS.  CS6 will appear in the list options.

    Nancy O.

  • Project Web Service Proxy shaded in App with all Technologies

    I created a new application "without model [all techniques]" in Jdev 10.1.3.5.0.4306. I want to create a web service proxy, but there are many choices in gray, including the web service proxy. The only selection available under the Business-> Web Services layer is the connection of the UDDI registry. Any ideas on what I should do?

    I just downloaded JDev 10.1.3.5 on Oracle and I get the same question.

    Thank you

    Published by: 878316 on April 2, 2012 18:03

    Hello

    On your project properties (double-click on the name of the project) going to scope of the technology, if you are 11.1.1.6.0 or features if you are 11.1.2.x, then select web services, click ok and now when you go again that all your Web services options must be activate.

    -Juan C.

  • Add headers to a Web Service Proxy

    Hi all

    I am trying to use a web service via a web service proxy in a common library of java, as part of a validation method. I use JDev 11.1.1.5.

    The question that I have is that the web service requires two custom headers. I created a CustomSOAPProvider class that extends the internal ADF SOAP class provider to add extra headers, which works when I implement the WS as a data control. I recreated it as a web service proxy, but I'm not sure whether to refer to the current SOAP message and edit it with extra headers in a java class? I call the web service successfully, and I get a response "unauthorized".

    Any help would be appreciated!

    Thanks in advance,
    Aaron

    I got it...

    Card reqCtx =
    ((BindingProvider) iditInterface) .getRequestContext ();
    Card reqHttpHeader =
    ReqCtx.get (MessageContext.HTTP_REQUEST_HEADERS) (map);
    If (null == reqHttpHeader) {}
    reqHttpHeader = new Hashtable ();
    }
    The list header1 = new ArrayList();
    Header1.Add ("[Header1-value]");
    reqHttpHeader.put ("[header1name]" header1);

    Tete2 list = new ArrayList();
    Header2. Add("[header2-value]");
    reqHttpHeader.put ("[header2name]",-tete2).

    reqCtx.put (MessageContext.HTTP_REQUEST_HEADERS, reqHttpHeader);

    I used the code above to add HTTP headers, before calling the Web service interface.

  • How to change IP address of the web service proxy.

    Hello

    I created an AppModule and expose as a serviceInterface. I deployed this project in the server and then created the Web service proxy by giving the IP address of the server in WSDL.

    Now I have deployed the same application in different server and manually change the IP address of the proxy Web service methods. But he's still point to the previous server.

    I don't want to regenerate the web service proxy. Is it possible to manually change the IP address in the generated Web proxy service method? Or I have to regenerate their?

    Thank you
    Rohit

    chk
    Configure endpoint URL in WebService DataControl and Proxy

  • Consume a web service from ASP which responds with complex data types...

    Here's my problem - I'm trying to consume a web service from a provider that uses complex data types.

    The starting of the WSDL part looks like this (I have not included all) - named have been changed to protect the innocent:

    " < wsdl:definitions targetNamespace = ' http://domain_name ">
    WSDL: < types >
    " < s:schema elementFormDefault ="qualified"targetNamespace =" http://domain_name ">
    < s:element name = "Authentication" >
    < s:complexType >
    < s:sequence >
    < s:element minOccurs = "0" maxOccurs = "1" name = "User name" type = "s:string" / >
    < s:element minOccurs = "0" maxOccurs = "1" name = "Password" type = "s:string" / >
    < s:element minOccurs = "0" maxOccurs = "1" name = "Token" / >
    < / s:sequence >
    < / s:complexType >
    < / s:element >
    < s:element name = "AuthenticateResponse" >
    < s:complexType >
    < s:sequence >
    < s:element minOccurs = "1" maxOccurs = "1" name = "AuthOK" type = "s:int" / >
    < s:element minOccurs = "0" maxOccurs = "1" name = "Token" / >
    < / s:sequence >
    < / s:complexType >
    < / s:element >

    Since it is a return, with a sequence of complexType, I expect an array or a structure returned, but instead I just get the value of "AuthOK" and no way to get something else.

    Here are the ways I tried to call it:

    < cfscript >

    WS = createObject ("WebService", "https://WSDL_URL");

    WS_ret = WS. Authentication (name of user = "username", password = "password", token = "");

    < / cfscript >

    < cfdump var = "" #WS_ret # "/ >"

    < cfinvoke webservice = "WSDL_URL" method = "Authentication" returnVariable = "WS_ret" >

    < name cfinvokeargument = "userID" value = "7253320" / >
    < cfinvokeargument name = "password" value = "ctpjxs3" / >
    < name cfinvokeargument = "SecurityToken" value = "" / > "

    < / cfinvoke >

    < cfdump var = "" #WS_ret # "/ >"

    Any ideas how I can get the other variables in the sequence? I have other calls after that have a greater amount of variables, and as such I can't use without being about to get more than the

    You can try using the function GetSOAPResponse to review the XML code you receive.

    'GetSOAPResponse '.

    http://livedocs.Adobe.com/ColdFusion/8/htmldocs/help.HTML?content=functions_e-g_59.html#50 54378

    "Troubleshooting SOAP requests and responses.

    http://livedocs.Adobe.com/ColdFusion/8/htmldocs/help.HTML?content=webservices_27.html#1222 070

    As for the question of docs, I suspect mediocre edition is at fault.  I assume that the web service is supposed to have an echoStruct method but this is unclear.

  • Web service proxy generation: Ant?

    We are currently working with the new "web service proxy' of jdeveloper.
    Since we have tons of services and do not want to manually, is it possible to make an Ant target to clean up the directory and regenerate their?

    Thank you.

    Hi JGeerts and Koen

    Perhaps this sample application can help:
    http://verveja.footsteps.be/~verveja/files/Oracle/AntWSAGenProxyApp-v0.01.zip

    It contains the resulting code of popup "generate Web Service Proxy..." menu option "on the WeatherWS.wsdl, using JDeveloper 10.1.3.4.0.

    It has a file build.xml with a 'clean .generated-proxy-code' and a target of "wsa.genProxy.WeatherWS".
    The WeatherWSTestTool class in the sample application works with both, JDeveloper and Ant, generated proxies.

    Here is the content of the build.xml file:

    
    
         
    
         
              
                   
              
         
    
         
              
                   
                   
                   
                   
                   
                   
                   
                   
                   
              
         
    
    

    success
    Jan Vervecken

  • Access to an external client Web service proxy

    How access a Web service proxy? It is identical to a client accesses a web service?

    I don't know exactly what you mean by "Web proxy service", but I think that the answer is 'yes', a piece of code running on a server application can access a webservice in acting as a Web service client (get a draft for the service and that invokes it).

    (If this isn't answering your question, you can ask in the forum of webservice weblogic)

  • Expose the service as a Web service proxy using the sb Protocol

    Hello world.

    My team and I worked on a project of integration between multiple applications. So we created all the OSB projects necessary to connect applications and now I'm working on a web application that reads several newspapers who leave these integrations in the database in order to watch what happens when they are executed. Right now, I need my web application to be able to reprocess or retry messages that present a problem or are in an error state.

    To this end, we have developed a proxy with a sb protocol that allow us to communicate with other services dynamic proxy just in him passing the name of the proxy, its functioning and the message of the body. And finally, here's my question for you guys.

    How do I expose this last proxy (with the sb Protocol) as a web service so I can consume it for action to reprocess/try again?

    Thank you.

    Don't think that you need a Proxy service with SB Protocol at all. As I understand it, your process will be like this:

    1 web app bed DB logs to see what documents need to be submitted again

    2. web App must call OSB to resubmit the log message to correct the proxy.

    What you can do is create a WSDL based proxy HTTP to OSB for a new presentation, Web application must call this proxy and passes the body, the name of the target (full path) service, target service type HTTP (Proxy or Business), target the operation name (optional, like e-mail or type XML services everything will not associated with surgery). You can add a dynamic routing node in the HTTP proxy that calls the proxy target based on information coming from the Web App.

    SB Protocol should be used in a Proxy service if you want to call a Proxy deployed in a single domain of OSB on another area of OSB or composites Oracle SOA. Here, the consumer will be the Web application, so it needs to be a HTTP proxy and not SB.

    P.S.: You should also consider sending transport/custom headers as well, not only the body for your new design be more reusable.

  • Consume peoplesoft Web services using Jdeveloper authentication failure

    Hello

    I use Jdeveloper 11 g to consume the webservice of peoplesoft and following the exact steps in the following article.
    http://www.Oracle.com/technology/tech/fmw4apps/PeopleSoft/OFM-PSFT-blog-postings.HTML#Web-services
    The Web service I use is different from the example I use the production version of the wsdl file.
    After following all the steps, the generated proxy creates not poseurs of the getter for user name, password (Basic authentication).
    Is it supposed to auto generate or what I need to encode?
    I did the code of the getter set username and password and provide the credentials, but I get an error authentication failed.

    java.rmi.RemoteException: SOAPFaultException - FaultString FaultCode [http://schemas.xmlsoap.org/soap/envelope/ {} Client.Authentication] [did not receive message weblogic.wsee.util.AccessException: a code of 401 error (unauthorized) was returned by the server to http://ps-dev-web.kc.lan:30710/PSIGW/HttpListeningConnector.] Please check that the username and password are set correctly and that you are authorized to access the requested method.
    -> Http://ps-dev-web.kc.lan:30710/PSIGW/HttpListeningConnector server returned a code of 401 error (unauthorized). Please check that the username and password are set correctly and that you are authorized to access the requested method.
    ] FaultActor detail [null] [< detail > < bea_fault:stacktrace xmlns:bea_fault = "http://www.bea.com/servers/wls70/webservice/fault/1.0.0" > weblogic.wsee.util.AccessException: a code of 401 error (unauthorized) was returned by the server to http://ps-dev-web.kc.lan:30710/PSIGW/HttpListeningConnector.] Please check that the username and password are set correctly and that you are authorized to access the requested method.
    at weblogic.wsee.connection.transport.http.HTTPClientTransport.handleErrorResponse(HTTPClientTransport.java:373)

    The code I used to generate getter, setter is

    -These methods have not generated-
    public String getPassword() {}
    (String) return ((heel) port). getProperty (Stub.PASSWORD_PROPERTY);
    }

    public void setPassword (String password) {}
    ((Heel) port). setProperty (Stub.PASSWORD_PROPERTY, password);
    }

    public String getUsername() {}
    (String) return ((heel) port). getProperty (Stub.USERNAME_PROPERTY);
    }

    {} public void setUsername (String username)
    ((Heel) port). setProperty (Stub.USERNAME_PROPERTY, username);
    }
    I don't know where I'm going wrong, credentials, I used the work normally but do not work with this application.
    I'd appreciate if I can get some light on this issue.

    Thank you
    Ash

    Published by: [email protected] on June 2, 2010 07:56

    In your case, the settings are not IN/OUT but OUTSIDE.
    To create the owner and get the values after the operation, you must do something like this:

    Create the parameters of the licensee
    Holder nt new holder =();
    Holder det holder new =();

    Make the call
    port.createCompIntfcKCMWEBCASECI (nt, det);

    Get the value
    System.out.println ("Value is" + nt.) Value();

    Thank you
    Vishal

  • Unable to connect to the Web Services Proxy/unused (a HP 7500 JO)

    Hello

    Here's the situation:

    Previous installer:

    .  I have connected my 7500 for the corporate network (IP = 172... series)

    .  registered the product with ePrintCenter

    .  used a PC under Windows to print (and scan) with the printer

    .  web proxy entry "webproxy.phila.gov".

    .  However, because homeland security rules, I could never work, so I just let it go

    Current situation

    .  has taken the home printer and set up on my home network, i.e.,.

    -using the 192.168.xx.xx series

    -Router broadband Netgear ' G' (1 years) set up at the 192.168.xx.254

    -SSID & encryption assigned

    -printer, the value 192.168.xx.155 (static IP address, the subnet and the gateway assigned as well)

    -My DNS is identical to the bridge and it works fine for all the internet access to this day

    -with the help of a PC and a Macbook Air to print and scan and everything works fine

    .  HOWEVER,.

    -Initially, 'web services' were active (carried over from when I was on the company neetwork?)

    ..  Are looking for, found and downloaded updates

    -When I went to hp.com ePrintCenter he showed the product as 'registered '.

    ..  He would'nt I would like to connect (with a name and a password I had used previously), or create a new account

    ..  I never remember getting an email address of the printer

    ..  and I had never been able to send anything to the printer to print because of my problem of network security

    -Yes, after trying all sorts of things, I:

    ..  I tried to get another email without success

    ..  tried to re - enable web services, but he said I need to 'proxy', and I discovered that he had always "webproxy.phila.gov."

    ..  I have reset the values by default web services and network values

    ..  I put the static IP address return address in (i.e., printer, subnet and gateway (it has nowhere to put in a DNS one))

    ..  printing and scanning to 192.168.xx.155 works fine

    ..  From my iPad AirPrint works very well

    .  BUT, I still can not online and therefore web server, web services are not enabled, therefore not ePrint

    -everytime I try, it says it needs a proxy

    - but I don't have a proxy installed on my internal home network bit

    -Comcast/Xfinity, my ISP, do not use a proxy

    So, I'm dead in the water.  I can't figure out how to get the web services enabled; I do not use a proxy, so I don't know how to go beyond this issue. How to regenerate address of the printer; and so, how do I connect an account on the ePrintCenter (or get them to send me my old account information).  I'm dead in the water and cannot use a feature most of my printer that I desperately want to be put in place and functional.

    Any help would be greatly appreciated!

    Tommy

    Problem solved, but I don't know exactly how I did it. However, I went back in and let the printer assign the IP address. Then I turned the printer off and on again. Last I kept pressing the button "Printer e-mail address", who has repeatedly failed, but then finally went through and print the 'printer' page, I quickly used to connect to the ePrintCenter and put everything in place.

    Now it's working.

  • Pots to deploy a standalone JAR of the Web Service Proxy?

    I followed the link as a guide to invoke PurchaseOrderService Version 2 - as a Web Proxy in JDeveloper below.

    Calling an Oracle Forms 11g Web service

    When I run the main method inside of JDeveloper, it works as expected.

    When I deploy and call the Web Proxy, it throws an error:

    java.lang.Exception: java.lang.NoClassDefFoundError: weblogic/wsee/jws/jaxws/owsm/SecurityPolicyFeature
    
    

    He has a problem with other Classes as well.

    1. when the downloaded WSDL document classes Java for JDeveloper, one / some of the Classes use SecurityPolicyFeature and other Classes who report an error. Because these classes are necessary, they do not appear when I deploy my project as a JAR in JDeveloper?

    2. why it works using JDeveloper inside, but not outside of JDeveloper?

    3. I'm the JDeveloper Web Proxy as a JAR project deployment. How can I solve the NoClassDefFoundError deploy?

    Thank you for your support. I almost have it!

    Arie

    Sorry JCS (Service of Cloud Java) the platform target for my test, not related to your case. So in order for your case work 2 libraries must be available on the target system. I'm not familiar with the forms so not sure what is involved in packaging and deployment. Looking at the link you provided it looks like a simple to add to the classpath variable jar file. So I think you have 2 choices; the dependent jar files must be included explicitly in the classpath or the jar file you create must include the. I think that the first would be easier; This is the step where you setup the CLASSPATH for forms add the dependent libraries also.

    --

    Jani Rautiainen

    Relationship with the developers of Applications in fusion

    https://blogs.Oracle.com/fadevrel/

Maybe you are looking for