How do I get schema of CI based WS

Hi All,
I'm new to peoplesoft and trying to use existing CI web service "CI_CURRENCY" to get started. I've followed the steps mentioned here : http://peoplesoft.wikidot.com/component-interface-based-web-services
I was able to view WSDL and this is how looks like in wsdl -
<?xml version="1.0"?>
<wsdl:definitions name="CI_CURRENCY.1" targetNamespace="http://www.ubs.com/enterprise/crm/CI_CURRENCY.1" xmlns:M1064704.V1="http://xmlns.ubs.com/enterprise/Tools/schemas/M1064704.V1" xmlns:M199352.V1="http://xmlns.ubs.com/enterprise/Tools/schemas/M199352.V1" xmlns:M273547.V1="http://xmlns.ubs.com/enterprise/Tools/schemas/M273547.V1" xmlns:M439511.V1="http://xmlns.ubs.com/enterprise/Tools/schemas/M439511.V1" xmlns:M608217.V1="http://xmlns.ubs.com/enterprise/Tools/schemas/M608217.V1" xmlns:M615294.V1="http://xmlns.ubs.com/enterprise/Tools/schemas/M615294.V1" xmlns:M712172.V1="http://xmlns.ubs.com/enterprise/Tools/schemas/M712172.V1" xmlns:M763655.V1="http://xmlns.ubs.com/enterprise/Tools/schemas/M763655.V1" xmlns:M789219.V1="http://xmlns.ubs.com/enterprise/Tools/schemas/M789219.V1" xmlns:M826465.V1="http://xmlns.ubs.com/enterprise/Tools/schemas/M826465.V1" xmlns:M929890.V1="http://xmlns.ubs.com/enterprise/Tools/schemas/M929890.V1" xmlns:M967004.V1="http://xmlns.ubs.com/enterprise/Tools/schemas/M967004.V1" xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tns="http://www.ubs.com/enterprise/crm/CI_CURRENCY.1" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:wsp="http://schemas.xmlsoap.org/ws/2002/12/policy">
<wsp:UsagePolicy wsdl:Required="true"/>
<plnk:partnerLinkType name="CI_CURRENCY_PartnerLinkType">
<plnk:role name="CI_CURRENCY_Provider">
<plnk:portType name="tns:CI_CURRENCY_PortType"/>
</plnk:role>
</plnk:partnerLinkType>
<wsdl:types>
*<xsd:schema elementFormDefault="qualified" xmlns:xsd="http://www.w3.org/2001/XMLSchema">*
*<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M615294.V1" schemaLocation="M615294.V1.xsd"/>*
*<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M826465.V1" schemaLocation="M826465.V1.xsd"/>*
*<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M929890.V1" schemaLocation="M929890.V1.xsd"/>*
*<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M789219.V1" schemaLocation="M789219.V1.xsd"/>*
*<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M712172.V1" schemaLocation="M712172.V1.xsd"/>*
*<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M1064704.V1" schemaLocation="M1064704.V1.xsd"/>*
*<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M967004.V1" schemaLocation="M967004.V1.xsd"/>*
*<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M763655.V1" schemaLocation="M763655.V1.xsd"/>*
*<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M199352.V1" schemaLocation="M199352.V1.xsd"/>*
*<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M608217.V1" schemaLocation="M608217.V1.xsd"/>*
*<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M273547.V1" schemaLocation="M273547.V1.xsd"/>*
*<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M439511.V1" schemaLocation="M439511.V1.xsd"/>*
*</xsd:schema>*
</wsdl:types>
<wsdl:message name="M615294.V1">
<wsdl:documentation>M615294</wsdl:documentation>
<wsdl:part element="M615294.V1:Create__CompIntfc__CURRENCY" name="parameter"/>
</wsdl:message>
<wsdl:message name="M826465.V1">
<wsdl:documentation>M826465</wsdl:documentation>
<wsdl:part element="M826465.V1:Create__CompIntfc__CURRENCYResponse" name="parameter"/>
</wsdl:message>
<wsdl:message name="M929890.V1">
<wsdl:documentation>M929890</wsdl:documentation>
<wsdl:part element="M929890.V1:CIFault" name="parameter"/>
</wsdl:message>
<wsdl:message name="M789219.V1">
<wsdl:documentation>M789219</wsdl:documentation>
<wsdl:part element="M789219.V1:Find__CompIntfc__CURRENCY" name="parameter"/>
</wsdl:message>
<wsdl:message name="M712172.V1">
<wsdl:documentation>M712172</wsdl:documentation>
<wsdl:part element="M712172.V1:Find__CompIntfc__CURRENCYResponse" name="parameter"/>
</wsdl:message>
<wsdl:message name="M1064704.V1">
<wsdl:documentation>M1064704</wsdl:documentation>
<wsdl:part element="M1064704.V1:CIFault" name="parameter"/>
</wsdl:message>
Now, I want to generate stubs from this WSDL file. For that I'm using apache axis. I've saved this wsdl into my local drive and executing below command - java org.apache.axis.wsdl.WSDL2Java -o src -p com.test.generated -s Currency.wsdl
But I'm getting error saying that schema not found as it is trying to find schema within the drive where wsdl is locatd. My question is how do I get all schema refered in generated wsdl or is there any other way to generate stubs
Please advice!

your wsdl should be available from following url:
http://[server]:[port]/PSIGW/PeopleSoftServiceListeningConnector/[service].[version].wsdl
your wsdl imports the following xsd:
<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M615294.V1" schemaLocation="M615294.V1.xsd"/>
<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M826465.V1" schemaLocation="M826465.V1.xsd"/>
<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M929890.V1" schemaLocation="M929890.V1.xsd"/>
<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M789219.V1" schemaLocation="M789219.V1.xsd"/>
<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M712172.V1" schemaLocation="M712172.V1.xsd"/>
<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M1064704.V1" schemaLocation="M1064704.V1.xsd"/>
<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M967004.V1" schemaLocation="M967004.V1.xsd"/>
<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M763655.V1" schemaLocation="M763655.V1.xsd"/>
<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M199352.V1" schemaLocation="M199352.V1.xsd"/>
<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M608217.V1" schemaLocation="M608217.V1.xsd"/>
<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M273547.V1" schemaLocation="M273547.V1.xsd"/>
<xsd:import namespace="http://xmlns.ubs.com/enterprise/Tools/schemas/M439511.V1" schemaLocation="M439511.V1.xsd"/>
these can be accessed via
http://[server]:[port]/PSIGW/PeopleSoftServiceListeningConnector/[message_xsd].[version].xsd
for example the first import M615294.V1.xsd should be accessable via
http://[server]:[port]/PSIGW/PeopleSoftServiceListeningConnector/M615294.V1.xsd

Similar Messages

  • How to configure the schema name dynamically based on user input.

    configure the schema name dynamically based on user input.
    For ex:
    We have two schemas:
    Schema1  - base schema having 15 tables.
    Schema2 -  tables which is specific to modules. Having only 10 tables which is also available in Schema1
    Login to application using Schema 1
    Access a particlular module and select the country. Here country selection is identified.
    Based on the country selection, we need to connect the schema respectively.
    If the user selects France --> It should connect Schema1
    If the user selects Germeny --> It should connect schema2.
    Used: Eclipselink

    You may want to have a different persistence unit for each country, then you just need to switch persistence units, and can put the schema in your orm.xml file.
    You may also want to investigate EclipseLink multi-tenant support,
    http://www.eclipse.org/eclipselink/documentation/2.5/jpa/extensions/a_multitenant.htm
    You can the schema in a persistence unit in code using a SessionCustomizer and the tableQualifier.

  • How can I get schema object in entityImpl class?

    Hi everybody,
    I want to get schema object name (name of DB table behind of entity) in my entityImpl class from ADF API. I tried this But I can't.
    please help me.
    with my best regards.

    try String s = this.getEntityDef().getSource();Timo

  • How do I get SUMIF to calculate based on multiple variables?

    Here's what I have now
    =SUMIF(Income Breakdown :: $Date,D1,Income Breakdown :: $Amount)
    Income Breakdown is the table I'm referring to. D1 is March, so if the cell in the Date column = March it will figure the total for me of just those items.
    However I want it to figure the total by both the Month and by the Category (a separate column in the table {but separate row in the table I'm trying to create the formula in}) I have listed in the table. How do I include variables for both month and category and get a sum based on that?
    Just a side note, I do not work with spreadsheets often. I looked through other discussions, but as none were quite my problem or my variables, I had trouble following them. I stumbled on this formula in a template and knew it should do what I want, I just cannot solve that 2nd variable.
    I tried doing this:
    =SUMIF(Income Breakdown :: $Date,D1,Income Breakdown :: $Category,A3,Income Breakdown :: $Amount)
    This causes all the required columns to highlight in color, but it gives me a red triangle once I hit enter.

    Hi,
    You're almost there.
    SUMIF calculates a sum of values that meet a single condition.
    SUMIFS calculates a sum of values that meet all of a set of conditions.
    The syntax is slightly different. Here's the description, from the Function Browser in Numbers '09:
    Note that the sum values (Income Breakdown::$Amount) is the first argument for SUMIFS, rather than the last, as it was for SUMIF. Test-value, Condition pairs are set in the same manner as in SUMIF.
    Regards,
    Barry

  • How can I get alerts from SharePoint based on a date that exists in a list?

    I have a list that contains renewal records.  One of the fields in each record is "Renewal Date".  I would like to have SharePoint send an alert when it is 1 month prior to that date. 
    Can anyone help me do so?
    Chas Roberts

    This answer details a few different ways to do this - workflow, scheduled jobs, open source and commercial add-ons.
    StackOverflow - Dated
    reminders in sharepoint calendars
    http://stackoverflow.com/questions/529045/dated-reminders-in-sharepoint-calendars
    Regards
    Ryan
    Pentalogic Technology - Web Parts for Microsoft SharePoint
    www.pentalogic.net

  • How do you get in FCP forums based in other countries?

    e.g. France, Germany and Switzerland
    I think could view these forums a few years ago.

    Unfortunately Apple Discussions are only available in the english language. You can view the rest of Apple.com in different languages by going to the home page of  and selecting the language you'd like from the menu located at the bottom of the home page.
    You may also consider using a translator. Just google french english translation or similar and copy/paste the discussion to have it translated respectively.

  • How do I get rid of the pre-appended dbo_  in schema name ?

    A customer opened an SR which asked the following question
    I have a SQL Server database called SQLDB1. When Migrating the database (objects and data) to Oracle, the created schemas come over as dbo_OWNERNAME. How can I change the target schemas in Oracle to be created/converted as just OWNERNAME without the pre-appended "dbo_"?
    Prior to 3.1 this was easy
    (1) Connect to SQL Server - target database
    (2) Connect to Oraclle use which contained the repository
    (3) Connect to Oracle schema - destination database
    (4) Click Quick Migration
    (5) Go through all the panels - including doing all the privs until all tests were completed
    (6) SQL Developer would then copy SQL Server tables (objects) to Oracle database
    (7) The contents of the target database would be recreated in the destination database without owner being DBO
    I tried the same process using 3.1 and
    it appears that the steps worked since I only had 2 tables.
    However, the tables did not appear in the Oracle database under my destination database
    nor did it appear in a schema called dbo_<SQL Server database>
    I told the customer the following
    Use the offline method which will cause you to have to do each step manually.
    SQL Developer will create scripts needed for the migration.
    Open this script and then modify the script by removing the dbo_
    and this should take care of the issue.
    to which he replied
    I see that is possbile with the script that creates the users and objects, but what about during the datamove portion. All of the generated data move files are named dbo_* and the pre,post, and truncate scripts also include the dbo_.
    How does one get rid of dbo_ before it gets migrated over to Oracle and hence calling in dbo_myschema instead of myschema?
    What happened to the 2 tables that SQL Developer said it successfully created and moved data over to Oracle ?
    Thanks

    Hi Walter,
    Hopefully this blog explains it a little better
    http://dermotoneill.blogspot.com/2012/03/migrate-to-existing-oracle-users.html
    Regards,
    Dermot.
    SQL Developer Team

  • How to get the SQL queries based on SQL_ID.

    Hi Experts,
    I want to get the SQL queries based on SQL_ID.
    I have tried the following query,but I am not getting full query.
    [code]SET linesize 132 pagesize 999
    column sql_fulltext format a60 word_wrap
    break on sql_text skip 1
    SELECT   REPLACE (TRANSLATE (sql_text, '0123456789', '999999999'), '9', ''),sql_id
    FROM   dba_hist_sqltext s
    WHERE   s.sql_id = '7tvurftg8zryb';[/code]
    One of my friend said use grid to get full query text.
    Can you please help me how to use grid ,else any other method to get the full query based on SQL_ID.
    Please help me.
    Thanks in advance.

    You have these many options to set, if sql_text is really huge. But better use a tool(TOAD) as it's really helpful and easy to use instead! (See my previous comment).
    column sql_text format A10000
    set echo off
    set head off
    set feed off
    set verify off
    set termout off
    set lines 10000
    set long 1000000
    set trimspool on
    set pages 0
    Thanks!

  • When going from a Mac-based Ai to a PC based Ai, the documents "Font" are not found on the PC version?  (mostly Helvetica) where and how do I get those Fonts?  And/or, can I use the Mac version of these Fonts?

    When going from a Mac-based Ai to a PC based Ai, the documents "Font" are not found on the PC version?  (mostly Helvetica) where and how do I get those Fonts?  And/or, can I use the Mac version of these Fonts?
    Thanks, Rich

    In order to be cross platform you must be using the Open Type version of all fonts to cause the least disruption. Macs can read and process the Windows .ttf  type format but PCs can't process Mac formatted type. Most recent versions also cannot use the older PS Type 1 fonts.

  • How can I get the ID number of an attribute, based on the name string?

    In an IVI driver, how can I get the list of attributes of an instrument? Is there a way to retrieve the long type representation of an attribute ID, based on the string name? Say, I put "IVIDMM_ATTR_FUNCTION", and I receive the long number (i.e. 1150010), so I can call the SetAttribute function?
    Thanks.

    Hello-
    Tokens like IVIDMM_ATTR_FUNCTION are actually macros that have been #define'd in a header file. Many of the headers are found in C:\VXIPNP\WIN95\include. For example, the macro for IVIDMM_ATTR_FUNCTION is found on line 111 of ividmm.h.
    Randy Solomonson
    Application Engineer
    National Instruments

  • How can I get approver of a request in request based provisioning

    How can I get the approver of a request in Request Based Provisioning if the request is assigned to a group of user.
    I need to get the actual approver (the one who logged in and approved amongst the approver group ) while the provisioning process gets executed.
    Also,
    as provisioning is triggered , can i put some value into a feild of the obj/process form.
    Thanks

    You can see the OSI table..
    Also you can see Request History API.

  • I live in spain. Have just downloaded IOS6 through itunes, now have itunes in Spanish on my ipad instead of english. how do i get it in english, my itunes account is based in the uk

    I live in spain. Have just downloaded IOS6 through itunes, now have itunes in Spanish on my ipad instead of english. how do i get it in english, my itunes account is based in the uk & is OK on my main computer.

    Have you tried Settings > General > International > Language > English ?
    tt2

  • How to get username from Form-based login

    I am using form-based login in my web.xml file.
    When I attempt to access a protected .jsp page, I get sent to my login page as expected.
    When I enter my username/password successfully it forwards me to the .jsp page I was trying to go to, as expected.
    From that .jsp page, how do I get the username/password info from the login form? I looked at the session attributes, request attributes, and request parameters, but I don't see anything. Does the form-based authentication remove these variables?
    I need the username that is filled out in the login form, so that I can do custom work with it. I cannot ask the user for it again after they login, as that is inefficient and sloppy.

    Found it.
    request.getUserPrincipal().getName()

  • How do I get information on a mac laptop based on the serial number?

    I am looking at some on line public surplus auctions for macbooks. Some Pro some iBook etc. They don't give you much information about the item other than what it is (no tech specs) and some photos of the actual item. How can I get information based on the serial number?

    This web page will help. Enter the last three digits of the serial number in the empty field:
    http://everymac.com/ultimate-mac-lookup/?search_keywords

  • How can I get a flash based plugin to load in CC 10.x

    Hello
    How can i get a flash based creative suite plugin to load in Indesign CC 10.x?
    I can get It to load in CC, but not In CC 10.x. Im using Flashbuilder 4.5. Do I need a newer version of flash builder/extension builder?
    Best regards
    / Pontus

    Yes, you can!
    You need to make sure that you are using: "Adobe CSAW Indesign" and not "Adobe CWSAW".
    Also you need to hack the manifest.xml and write someting like this:
    <HostList>
                <Host Name="IDSN" Version="[7.0,10.9]" />
    </HostList>
    To get it to load in CC 14.
    / Best regards
    Pontus

Maybe you are looking for

  • Name and int using a String

    Hi everybody, ive got a class that creates a new int. i want the name of the int to be a parameter that i can send into the class. so for example: public testObject(String intName) then in my main I could say: testObject grader = new testObject(grade

  • Server0  doesnot start and stalls at "starting apps" status

    The Server0 was running fine and suddenly started stalling at "starting apps" status.  The SDM and Dispatcher are running fine. The Java_Home variable is set correctly and the System has 2GB RAM . The Developer Trace file is showing these errors afte

  • Help Needed re joining files

    I need some basic conceptual help with QT! I have used QT Player since QT started, but I have always used it just to play whatever simply double-clicks open in it. I have QT Pro, so I know QT can do more. However, I don't understand some basic things

  • 4k resolution menu

    I think about buying a Laptop with 4k Resolution, but someone told me that I won't be able to read the menue bars and many other commands, so: when will LR be ready for 4k? When can they offer a scalation to enlarge the menu bars? Thank you, Kai

  • Multiple selection in LOV

    Hi, How to implement multiple selection in LOV region-query result table and return multiple values from LOV region back to the main page? Any help in this regard is greatly appreciated.