Import questions of outgoing and incoming Web services in Siebel Client 8.2

Impossible to import the outgoing and incoming Web services in Siebel Client 8.2 (Public sector) according to the installation instructions:

Import the outbound Web Services

To import the outbound web service, follow these steps:

1. go in Administration-> Web Services-> outbound Web Services

2. click on import in the outbound Web Services applet

3. click on browse in the dialog box presented

4. open the file < install_dir > /examples/SmokeTest/OutboundWebService.xml

Oracle policy Automation Connector for Siebel Manual of Installation V10.3.0 23

5. click on import in the dialog box presented

6 highlight the DeterminationsServer file

7. change the address < ds_url > /savon / AdminSmokeTest in the Ports of Service applet

8. Repeat steps 2 to 7 Choose file

/examples/SmokeTest/OutboundWebServiceIO.XML < install_dir >

Import incoming Web Services

To import the outbound web services, follow these steps:

Go to Administration-> Web Services-> inbound Web Services

1. click on import in the incoming Web Services applet

2. click on browse in the dialog box presented

3. open the file < install_dir > /examples/InboundWebService.xml

4. click on import in the dialog box presented

5. turn highlighted the strategy of automation Inbound folder

6 edit each entry of addresses in the name of the machine hosting the Server Web EAI_Anon_Enu

Extension, in the Ports of Service applet

7. Repeat steps 2 to 7 Choose file < install_dir > /examples/InboundWebServiceIO.xml

Nothing is imported to. Has anyone observed this problem? I use Siebel OPA 10.3.1 connector.

Concerning

Bhaskara

you follow step manual installation that is a bit laborious.

I think that you will get to see definitions of IO only after enabling view policy automation.

I will propose you to complete all the steps and then check.

in my view, import the RIS file will be easy compared to a manual installation.

Thank you!

Ravi

Tags: Oracle Applications

Similar Questions

  • EqualLogic GroupManager displays a different number of replicas, 2 outgoing and incoming 1.

    GroupManager displays a different number of replicas, 2 outgoing and incoming 1.  Is this a normal behavior?

    I raise this question to technical assistance from Dell.  They checked with their lab environment and confirmed the same behavior.  There is no functional cause whose status is displayed like this.  Two points, they said:

    (1) the number of the line leaving includes the history of replication.   It will show you an extra line in addition to the number configured in the replica set. (in my case, it's 1 (configured) + 1 (extra), so 2 total)

    (2) the number of the replica by entering the real number of replica set used for the function of data redundancy.

  • What is the difference between "vShpere SDK ro Perl"and "vSphere Web Services SDK (for Java or c#)"?

    Hello world! I'm new to "VMware vSphere API", and I have a question to ask you to help:

    What is the difference between "vShpere SDK ro Perl"and "vSphere Web Services SDK (for Java or c#)"?

    -What are the different programming language? Is there another difference?

    I'm looking forward to your reply.

    Thank you!

    If you are new on the VMware API/SDK, highly recommend you take a look at the following: Getting Started with vSphere SDK - Update for SDK 4.1 release

    vSphere SDK for Perl is just one of the many client SDK for vSphere API that is flush with vcenter times and ESX (i) as a standard Web service.

    vSphere SDK for Java - SDK Java to vSphere API for Java developers

    vSphere SDK for Perl - Perl SDK for vSphere API for Perl developers

    vSphere SDK for c# - c# SDK for vSphere API for c# developers

    PowerCLI - PowerShell SDK for vSphere API for developers of Powershell

    I hope that makes a bit more sense

    =========================================================================

    William Lam

    VMware vExpert 2009,2010

    VMware VCP3, 4

    VMware VCAP4-DCA

    VMware scripts and resources at: http://www.virtuallyghetto.com/

    Twitter: @lamw

    repository scripts vGhetto

    Introduction to the vMA (tips/tricks)

    Getting started with vSphere SDK for Perl

    VMware Code Central - Scripts/code samples for developers and administrators

    VMware developer community

    If you find this information useful, please give points to "correct" or "useful".

  • Basic authentication with the RESTful WEb service and a Web Service reference

    Hi all

    We have made significant progress on getting an application to work with RESTful web services, but are now trying to understand how to lock a RESTful Web service while making it available for a particular application.

    We use one of the 'emp' table sample web services come with Apex 4.2 and are trying to apply the Basic Auth to the WEb Service using Weblogic filter defined in the web.xml file. Which works very well. I now get challenged when I try to go to:

    https://wlogic.edu/Apex/BNR/ACE/HR/empinfo/

    And when I authenticate this challenge, I am able to get the data. (we are usiing the Weblogic-level LDAP authentication)

    However, I'm not sure how to get even basic authentication to work with Web Service reference in my application. I see the error message in the application when I try to call this Web Service:

    401 Unauthorized <

    And I see:
    "The request requires user authentication. It MUST contain a header field WWW-Authenticate (section 14.46) containing a fault that is applicable to the requested resource. The client MAY repeat the request with a suitable authorization (section 14.8) header field. If the request already includes identification of the authorization information»

    How can I provide the credentials in the Web reference or provide credentials in the Application?
    Web service works fine if I remove the auth basic RESTful web service in the Web.xml file.

    We should NOT use basic auth and auth Weblogic web service definition basic RESTful Workspace use instead. If so, how would we implement THIS basic authentication in the definition of Web Service and the Web SErvice reference on the application?

    Thank you
    Pat

    Hello Scott,

    Thank you. There is a function for rest in the package:

    function make_rest_request(
    --
    -- This function invokes a RESTful Web service with the supplied name value pairs, body clob, or body blob
    -- the response as an clob.
    --
    -- Arguments:
    --   p_url                  The url endpoint of the Web service
    --   p_http_method          The HTTP Method to use, PUT, POST, GET, HEAD or DELETE
    --   p_username             The username if basic authentication is required for this service
    --   p_password             The password if basic authentication is required for this service
    --   p_proxy_override       The proxy to use for the request
    --   p_body                 The HTTP payload to be sent as clob
    --   p_body_blob            The HTTP payload to be sent as binary blob (ex., posting a file)
    --   p_parm_name            The name of the parameters to be used in name/value pairs
    --   p_parm_value           The value of the paramters to be used in name/value pairs
    --   p_wallet_path          The filesystem path to a wallet if request is https
    --                          ex., file:/usr/home/oracle/WALLETS
    --   p_wallet_pwd           The password to access the wallet
    --
        p_url               in varchar2,
        p_http_method       in varchar2,
        p_username          in varchar2 default null,
        p_password          in varchar2 default null,
        p_proxy_override    in varchar2 default null,
        p_transfer_timeout  in number default 180,
        p_body              in clob default empty_clob(),
        p_body_blob         in blob default empty_blob(),
        p_parm_name         in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_parm_value        in wwv_flow_global.vc_arr2 default empty_vc_arr,
        p_wallet_path       in varchar2 default null,
        p_wallet_pwd        in varchar2 default null ) return clob;
    

    My point was that using the API makes things easier if you have to look for a solution.

    Denes Kubicek
    -------------------------------------------------------------------
    http://deneskubicek.blogspot.com/
    http://www.Apress.com/9781430235125
    http://Apex.Oracle.com/pls/Apex/f?p=31517:1
    http://www.Amazon.de/Oracle-Apex-XE-Praxis/DP/3826655494
    -------------------------------------------------------------------

  • Basic questions about the PL/SQL web services and data source names

    Hello

    I've successfully generated a web service for a procedure from PL/SQL packaged JDeveloper 11.1.1.3.0).

    The following code was generated in the base class for web services:
     __dataSource = (javax.sql.DataSource) __initCtx.lookup("java:comp/env/jdbc/dbconnectionDS");
    However in the weblogic server, the data source name is jdbc/Gisele for deployment fails in a first time.

    What is the recommended procedure to solve this problem? The obvious solution is to manually change the source - that's what I did and it worked fine. However if I re - generate the web service I won't lose my change. Is there a better way to do it?

    Another question - in the web.xml file that is generated, there is a resource-ref to the data source. I was hoping that change the data source name it would help, but it didn't work. What is - it used to in this context?

    Thank you
    Luis

    I forgot to add, so in case some time later and you want to update the connection to your service details, all you have to do is to add the following entry in your weblogic.xml:
    .

    JDBC/ref_name_from_web. XML
    JDBC/new_jndi_name

    .
    And in this way, you will not have to change any code level to point your web service to another connection.

    Vishal-

  • HP Color LaserJet MFP M570dw and HP Web Services

    Hello

    I have a HP Color LaserJet M570dw MFP printer and have tried to activate the Services Web of HP, but without success.

    My printer is configured on an IP-fixed, with a gateway by default and, of course, with static DNS (8.8.8.8 and 8.8.4.4) servers.

    Every time when I try to activate the Web Services feature I get the error message "connection error. Check your internet connection. ».

    My internet connection works very well and the printer is able to communicate through the firewall too. When I do a follow-up I see the printer communicating to the public IP "23.21.172.122" but there is no response in return. So I guess the problem is unrelated to my internal and external configuration. I tested with a completely open Firewall (allowing all communications on my local network to the Internet) with exactly the same results. There is no response from the IP "23.21.172.122".

    Also I find not the HP Color LaserJet M570dw MFP printer in HP ePrint printerlist support.

    The 400 series is supported, the 500 series is not mentioned.

    But since the interface Web of my HP Color LaserJet M570dw MFP printer gives me the HP Web Services configuration page, I asumed this type would be too strong...

    Someone has an idea how to get ePrint working on the HP Color LaserJet M570dw MFP printer?

    Is there anyone who got the HP Web Services works on a HP Color LaserJet M570dw MFP printer?

    Kind regards

    René.

    Hi René,.

    Have you tried to update its firmware version?

    The latest firmware should improve the connectivity of web services and can help to solve this issue:

    http://h20565.www2.hp.com/portal/site/hpsc/template.PAGE/public/psi/swdDetails/?sp4ts.oid=5210913&spf_p.tpst=swdMain&spf_p.prp_swdMain=wsrp-navigationalState%3Didx%253D1%257CswItem%253Dt2_112048_1%257CswEnvOID%253D4062%257CitemLocale%253D%257CswLang%253D%257Cmode%253D4%257Caction%253DdriverDocument&javax.portlet.begCacheTok=com.vignette.cachetoken&javax.portlet.endCacheTok=com.vignette.cachetoken

    Also be sure to follow his advice that can help solve a connection problem:

    • Improvements made to connect to the HP Web Services.


    1. to contact with the printer screen tap the control panel key & gear (Setup menu) at the top of the touch screen.
    2. using the scroll on the right side arrows, scroll until the configuration of the network appears, and then press the Network Configuration.
    3. in the network configuration menu, select Security

    Shlomi

  • Adapter of Jena and SPARQL web service end point

    If I understand correctly, with the Jena java map interface, the client can connect to Oracle RDF data directly. Why is it always the web service SPARQL endpoint point? Demand for adapter request Jena on the client side has to go through SPARQL Web service first and then road to Oracle Server? Or query with SPARQL should go through webservice and not SPARQL query directly go to the Oracle Server?

    Thank you.

    Hello

    You are right that a client can connect to Oracle RDF directly through the adapter of Jena. The reason to provide a SPARQL web service end point is to give the flexibility and additional interoperability. With the SPARQL web service endpoints, you didn't even need to write code to interact with the underlying database Java. It also facilitates the SPARQL Federation much.

    It will be useful,

    Zhe Wu

  • ColdFusion 10 and Ebay Web Service WSDL

    Hi all

    We have recently upgraded to Coldfusion 8 to 10 of Coldfusion and we found a business-stopping bug:

    In the Administrator console in Coldfusion 10 GB of DATA & SERVICES-> Web Services.

    It adds a web with link WSDL service http://developer.eBay.com/webservices/latest/ebaySvc.WSDL

    Other input values have no effect in this issue.

    You will then receive a Coldfusion error:

    Model: /CFIDE/Administrator/extensions/webservices.cfm

    Diagnostics: javax.wsdl.Operation.getExtensionAttributes (Ljava/util/card); null

    The error occurred on line 141.

    Same error if you try to instantiate a web service to ebay object with data inside the cfscript WSDL.

    It is a show serious Cap because ebay API no longer work with Coldfusion 10 and we were forced to a restore to Coldfusion 8.

    Any help would be much appreciated!

    P.S. other WSDLs non-ebay seem to add fine to CF10.

    Adam, the web service consumption will also be affected. The version decides what framework is used to generate the client-side stubs.

    DmitriD, could you please post the code used for the test. Where did you try to set the version? Set the version in CreateObject() or CFInvoke to consume. If you change the wsversion of server level, it is used by publishing only.

    WS = createObject ("Web service", "http://developer.ebay.com/webservices/latest/ebaySvc.wsdl", {wsversion = "1"} ");

    WriteDump (ws);

    I tried the above code and it works fine for me. Please check and let me know.

    Thank you

    Paul

  • Toggling the selection (tail) outgoing and incoming (head) point of edition

    I can't find the keyboard shortcut for this trivial operation:

    With the Trim tool or active ripple, I am able to manually select the tail of the outgoing clip and/or the head of the element into a mount point. I also hold command on a Mac to select both sides of the edit point.

    What is the keyboard shortcut to change the selection (head/tail) about to edition?

    Thank you.

    -paul.

    I found it. It is CTRL + T on a Mac. I found it in this documentation (Type of rocker trim). It is a shortcut for the sequence.

    -paul.

  • How can I increase the font size in gmail? Outgoing and incoming emails.

    Written as well as outgoing e-mail messages are too small. How can I increase the size on iPad?

    Settings > general > accessibility > Vision > try to modify the big bold letters, until you are satisfied with the results.

  • TopDown approach and bottom-up Web services

    Hello

    It's a simple question, I am new to bpel...
    What are the merits and demerits Web services top-down and bottom-up approach.
    everything can give correct url.



    Thank you
    Prasad

    Bottom-up: firstly to create the java interface and POJO, then generate the WSDL tools.

    Top to bottom: Handcraft the WSDL, then generate java and POJO interfaces using tools.

    The two approaches has its own merits / demerits. You must choose what your business needs. Google for more information.

  • HP Envy 110 All In One printer: HP Envy 110 series does not connect to Web Services

    I had the printer a number of years and it works very well. I wanted to set up the service of replacement with HP ink, but apparently the "Web Services" are not put in place?

    The iprint app refuses to implement. (says it is not connected to the internet and it is!)  I have tried restore factory settings and delete and reinstall on my laptop, nothing helps. I tried to enter the ip address in the browser, but it still does this end no more.

    The MNA I am doing wrong?

    Help, please.

    Thank you

    Welcome to the Forum from HP Support. I hope you're well @Amchad!

    I read on the web-services and wanted to stop doing you to share my suggestions.

    As of September 1, 2016, Web Services stop working and are no longer supported on some printers. I'm afraid that your printer is on the list and therefore not compatible with web services. The function ePrint and other web services are not available on this printer.

    Please check the details here: http://hp.care/2eKfeK2

    As an alternative to HP ePrint, go to Google Cloud Print (in English) to set up your printer as printer 'classic' to use Google Cloud print with your printer.

    Hope that answers your questions. Let me know!

    See you soon

    Please click on 'acceptable' on the post that solves your problem to help others to find the solution. To show gratitude for my help, please click the 'Thumbs Up icon' below!

  • Management of Web services in ADF (correctly)

    Hi all

    I have a confusion on the management of Web services in the ADF. Please help me get clarity on that. I'm working on JDeveloper 11.1.1.7.0.

    In my implementation of project, we have three layers of database-> BPM (webservices)-> ADF UI. Here, the BPM layer interacts with the database and provides data to appear on ADF UI. We have made the use of customer Web and Proxy Services for the creation of the service proxy and calling Web services BPM of the user interface layer.

    However, the Webservice experience input not direct and simple answers. We had to create several Variables of classes, ArrayList, POJO to prepare the application. Also after getting the answer, we must go through every files, extract data, make some custom manipulation and prepare the result set. So transmit us data to the DC class file and make it available in the palette of the DataControl.

    My question here is, is the right way to manage the webservices implementation in ADF? Is there another way to implement the case what I mentioned above? How to address the case where I need to enrich the request before calling service Web and then extract data from response structure?

    I don't know about the Web service data control, but it gives no flexibility to enrich the request and response (please, correct me if I'm wrong).

    Thanks in advance,

    RM

    In your version, it is the way to go.

    Datacontrols WS can be used only for simple services.

    Timo

  • DI Oracle Web Service call

    Hi all

    I have to call ODI requests of web service to execute a Plan of management scenario by a presentation (OBIEE) Web tool.

    After my current setup:

    -R Host: ODI Agent (standalone agent)

    -Host B: OBIEE, Weblogic

    Following up on my question:

    -Can I call web service with an autonomous agent request?

    Thanks in advance

    Hello

    Yes, you can use both the JEE and autonomous agents. It's build-in for both, nothing else to deploy.

    -Standalone Agent: http://:/oraclediagent/odiInvoke? wsdl

    -Java EE Agent: http://://odiInvoke? wsdl

    You can use invokeStartScen, invokeRestartSess and getSessionStatus.

    Integration running process

    It will be useful,

    Kind regards

    JeromeFr

  • Why short use SOAP based instead of REST web services

    I have a very basic question about why short uses web services SOAP based instead of RESTING the REST is very light?

    Kumar,

    To a large extent, the choice of the web service protocol is orthogonal to how short Server communicates with Studio (aka short discovered Information).  EID has been designed as a set of tightly coupled of capabilites and we not usually expect users to develop a custom front-end that would require a knowledge of the workings of.

    Ryan S. - EID PM

Maybe you are looking for

  • "The iPod could not be restored. An unknown error occurred (1433). »

    During an attempted - unsuccessfully - to restore an iPod Classic 160 GB end 2009 (model number A1238, 2173 EMC) model to its factory settings, I repeatedly met the following error message: "The '< name >' iPod could not be restored. An unknown error

  • RX100 firmware

    Hello. I love RX100, but I get bored really 2 options: (1) option for timelapse (2) ability to trigger camera via computer (it doesn't have to be something special for me is enough to be able to shot with gphoto2 or something similar) And when new fi

  • BSOD when you play WOW

    Because I downloaded WOW Cataclysm, I get BSOD when trying to play.  Sometimes, I can play for hours without one and sometimes only a few minutes.  The BSOD said "MALFUNCTIONING of the EQUIPMENT.  Call your provider of support material. "* The system

  • updates will not be installed.

    We have 17 updates which will not update.  They light up nightly at 03:00.  They do not give me time to save and exit the work or stop the installation.  What should I do? After the updates are trying to install, he said it's to go back. I think it's

  • Want 4500: wrong test page

    Hello I use the Envy4500 and seems when you print the testpage that does not appear black. Can not read the letters / words on top like the black pigmented doesn't seem to work. Strange thing is that I have not quite pigmented on the printer. Can it