Day 1 Questions and Answers

The following are responses to the questions posted during today's presentation.
Enjoy
Adam
Q<WSI-12> What is the difference between "bind" and "access"?
A<WSI-12> Bind is used in a similar manner to JNDI. The client does an appropriate
lookup on a SOAP context and this gives the client access to the method or methods
available in the web service which can then be accessed individually.
Q<WSI-16> What transaction support is there and must the TX be XA?
A<WSI-16> Web services currently have no native transaction support. The transactions
to which the slide refers would be a transaction started by the business component
(EJB) that the web service wraps around. These are server managed transactions
and may be distributed or local but they cannot span the invocation of the web
service. There are current emerging standards to add transaction support to web
services, for instance BTP (Business Transaction Protocol - see http://www.oasis-open.org),
but they are not yet ready for mission critical operations.
Q<WSI-26> Can you give an example when a SOAP payload would lend itself better
as an attachment?
A<WSI-26> While attachments are part of the SOAP 1.1 spec and their role will
be expanding in the SOAP 1.2 spec they are currently not supported as part of
WebLogic server's web services solution. However, if you want to think about what
an example attachment might be then something described by its appropriate MIME
type works; for instance a JPEG image or perhaps MP3 audio or video file.
Q<WSI-37-38> As it appears a web service identity can be offered by multiple providers,
how does a client/consumer differentiate one from another?
A<WSI-38> Each individual web service is described in its WSDL file but web services
offering identical functionality may differ in details such as cost, spend, location.
In this regard, the tModels are meta information about the type or model of the
web service or business operation. The ability to select a web service that matches
a tModel with the search criteria you are interested in (least cost for example)
will be a feature offered by the UDDI registry (service broker).

What you need is some Google-foo.
grumble

Similar Messages

  • SAP HCM Business analyst Support role Interview Questions and answers required..

    Hello Experts,
    I have applied for the role Business Analyst supporting SAP HR and GB Payroll. I need to prepare for the interview.
    I would like to have any material or link with regards to issues/tickets raised for SAP HCM /payroll. my email ID [email protected]
    Could you please provide me Interview Questions and answers for SAP HCM and Payoll support.
    Thanks in Advance
    Regards
    Nivedita

    we can not assume any interview questions .better you can search in google.if your in supporting then you should be able to rectivie the day tod day issues and the change request. for this you should have all modules experince to answer the interview questions. all the questions will be the real time and the process  real time scenario kind of questions.
    For the GB payrol,. look at all statutory deduction and payment like payee tax and the NI-(National insurenve) deduction. and also the returns (monthly anualy). and also the config of SSP (statutory sick pay )and SMP (Statutory Maternity Pay), factoring process , retro, posting and automatic file transfer to HMRC,etc.

  • WTC Questions and Answers

    Here are some common WTC questions and answers:
    Q1: What is the transaction story for WTC between WLS and Tuxedo and how
    does it differ from Jolt?
    A1: In version 1.0 of WTC transactions may be started in WLS and will
    "infect" Tuxedo with the same transaction. That implies that there is one
    and only one commit coordinator, and that is in WLS. In version 1.0 of WTC
    transactions originating
    in Tuxedo via WTC is not supported. In version 1.1 of WTC transactions from
    Tuxedo into WLS via WTC can be used, but only in Beta mode, as we will not
    have done the required QA of "inbound" transactions. In order to use
    inbound transactions in WTC 1.1 you will need to turn on the use of beta
    features with an attribute called "UseBetaFeatures" on the WTC Startup class
    in WLS.
    This differs from Jolt in that while Jolt can start transactions in Tuxedo,
    these transactions are not coordinated with anything in WLS. Hence it is
    impossible to do a 2 phase commit which involves WLS resources and Tuxedo
    resources with Jolt. Since Jolt does not have any means of invoking WLS
    services transactions in that direction do not make sense.
    Q2. How does the security mapping work?
    A2: WLS and Tuxedo can share the same set of users (though they may be
    administered differently in the two systems) and the users can propagate
    their credentials from one system to the other. For example, if John Wells
    logs into WLS then the services which he invokes in Tuxedo will have all of
    the ACL permissions of John Wells as defined on the Tuxedo side.
    Furthermore, if Jolene User logs into Tuxedo then any resources she attempts
    to access in WLS via WTC will be checked against Jolene User's rights in WLS
    land.
    In order to accomplish this, a few things need to be set up:
    1. You must be using Tuxedo 7.1 or Tuxedo 8.0 for this to work. Tuxedo 6.5
    did not have the security infrastructure necessary to make this happen.
    2. In your BDMCONFIG on the Tuxedo side you will need to set ACL_POLICY and
    CREDENTIAL_POLICY to "GLOBAL" for the WLS remote domain. ACL_POLICY
    controls whether or not a domain accepts credentials coming from a remote
    domain and CREDENTIAL_POLICY controls whether or not we send credentials to
    a remote domain. (In Tuxedo 7.1 there was no CREDENTIAL_POLICY - we always
    sent the credentials to the remote domain).
    3. In your BDMCONFIG on the WLS side you must likewise specify <ACL_POLICY>
    and <CREDENTIAL_POLICY> to be "GLOBAL."
    4. On the WLS side you must also configure a <TpUsrFile> which will point
    to a file of the exact same format as the tpusr file generated by the
    various Tuxedo commands to add and delete users. (Which also happens to be
    of the same format as the unix /etc/passwd file). WTC needs this file
    because in WLS users do not have user identification numbers or group
    identification numbers. Hence we need a way to map WLS users into the
    standard Tuxedo UID/GID appkey.
    Voila! You have now set up your system such that users logged into either
    system can be given access privelidges in the other system. This is known
    as single sign-on. We are currently working on a way to better integrate
    the two user databases between WLS and Tuxedo, and one day we will have
    single administration and single-sign on!
    Q3: How is the performance of WTC?
    A3: Obviously, results will vary based on your machine, CPU, application
    (i.e., transactions/no transactions) etc...
    However, in the performance lab here we have seen WTC perform at levels that
    nearly equal Tuxedo in a similar configuration. The performance is equal to
    or better than Jolt, and will scale much better than Jolt because of the
    concentration of network bandwidth.
    Q4: What fail-over/fail-back mechanisms are there in WTC?
    A4: WTC has many of the same fail-over fail-back mechanisms which /T
    domains had. Any service can be offered by multiple remote domains, and if
    a domain link is down we will attempt all of the backup domains. In /T
    domains there was a limit of three backup remote domains, but in WTC there
    is no limit to the number of backup domains you can configure for a service.
    Furthermore, we support the connection policies of ON_STARTUP, ON_DEMAND and
    INCOMING_ONLY. If the policy is ON_STARTUP then you can also configure a
    retry interval and max-retries. We will attempt to connect to ON_STARTUP
    remote domains every retry interval for a maximum number of retries before
    giving up. If a domain is configured as ON_STARTUP or INCOMING_ONLY and the
    connection is not currently established then no services will be routed to
    that remote domain.
    Q5: What support features are available in WTC?
    A5: WTC has a tracing feature which can be enabled dynamically. If a
    customer reports a problem, support will likely ask the customer to turn
    tracing on and send a log file. This tracing facility has several levels of
    severity and can also help debug WTC applications. It is turned on by
    setting TraceLevel in the WTC startup class. The following are the defined
    levels:
    10000 - TBRIDGE Input/Output
    15000 - TBRIDGE extra information
    20000 - Gateway Input/Output (this will trace the ATMI verbs)
    25000 - Gateway extra information
    50000 - JATMI Input/Output (this will trace the low-level jatmi calls)
    55000 - JATMI extra information
    60000 - CORBA Input/Output (this will trace CORBA calls)
    65000 - CORBA extra information
    Q6: Will Jolt be deprecated?
    A6: No. There are some features of Jolt that are not covered by WTC. For
    example, the Jolt registry API are not supported by WTC. Furthermore WTC
    must run in conjunction with WLS, while Jolt can be run from Applets or from
    free-standing Java applications.
    Q7: What about JCA? Is WTC a JCA adapter?
    A7: WTC is not a JCA adapter. JCA does not define semantics for inbound
    invokations into the JCA container, but WTC allows for Tuxedo clients to
    invoke WLS EJBs. However, the jATMI object interactions are based on the
    JCA client model. BEA is currently evaluating several JCA strategies for
    connections into Tuxedo.
    John Wells (Aziz)
    [email protected]
    [email protected]

    Q8. What versions of Tuxedo are supported?
    A8. WTC 1.0 will support Tuxedo 6.5 and Tuxedo 8.0. WTC 1.1 (which adds
    CORBA support) will support Tuxedo 6.5 and Tuxedo 8.0. Soon after the
    release of both of these products we will certify WTC with Tuxedo 7.1.
    However, the version of Tuxedo 7.1 you will need to have will be Tuxedo 7.1
    after a certain patch level, which I don't know the number of yet. I will
    attempt to keep the public informed about which patch level will be required
    in Tuxedo 7.1
    Q9. What WLS Releases will be supported?
    A9. WTC 1.0 will be certified on WLS 6.0 SP2, WTC 1.1 will be bundled with
    WLS SilverSword release (6.1?)
    Q10. How will WTC be packaged?
    A10. WTC 1.0 will be a separately downloaded binary (one for unix, one for
    NT) that the user will have to install and configure in his/her WLS
    environment. (Configuration will consist of putting the jatmi.jar file into
    the classpath (as well as the normal BDMCONFIG configuration, of course)).
    WTC 1.1 will be bundled right in there with the WLS SilverSword release.
    Q11. When will WTC go live (no more beta)?
    A11. This is a question for Jeff Cutler, but my impression is that WTC 1.0
    will be shipped in the same time-frame as the Tuxedo 8.0 release and
    obviously (see A10) WTC 1.1 will be shipped with WLS SilverSword.
    John Wells (Aziz)
    [email protected]

  • Ipod touch prompting me for security information required then asking me to fill in 3 questions and answers but will bump me out of it and will not allow me to download app, help

    Jusat the other day i started getting prompted for Security Information required when trying to download apps. on my Ipodtouvh 4Gen.  Typically when I download an app. I get asked for my apple ID and then it will allow the download.  This new prompt pops up after it looks like the app is downloading.  It gives me the option to cancel which will not allow the download or I have to select Security information.  It then brings me to a screen where it asked for three questions but as I put the questions and answers in it bumps me back to the screen of the app I was trying to doenload.  Any clues???

    this has recently been happening to other people. We think that it is a fault at apples end of the line. However in the cases i have seen the problem fixes itself and it goes back to normal after a day or 2 you just have to wait!

  • HT5312 How do i reset my security questions and answers?

    How do i reset my security questions and answers?  i have already ask iforgot to send me an email to my rescue address but didnt received anything for two day.

    You need to contact Apple, either through the link in that article or by phoning them.
    (77532)

  • I have apple id but i not have password. Im lost my e-mail and im not remember security question and answer.

    i have apple id but i not have password. Im lost my e-mail and im not remember security question and answer. I restore factory to days a go in my iphone 4s and must activate. what im must doing? in my phone is find my phone is on

    You need to ask Apple to reset your security questions. To do this, click here and pick a method; if that page doesn't list one for your country or you're unable to call, fill out and submit this form.
    They wouldn't be security questions if they could be bypassed without Apple verifying your identity.
    (115469)

  • TS2446 how do i get back security question and answer i have forgotton

    i just had new computer and want to purchase something from apple store i know my password but cannot remember security question and answer
    How do i get it back i do not want to change password please help me
    thanks

    Welcome to the Apple Community.
    Contact Apple through iTunes Store Support, and explain that you have forgotten your 3 security questions, that you can reset your password, but doing so doesn't reset your security questions.
    Explain that after resetting your password, you are still asked for the answers you have forgotten, before you can gain access to My Apple ID > Manage your account > Password & security, which is where you need to be to change your answers.
    Remember, support will receive hundreds, if not thousands of requests per day, some from people trying it on, others with little explanation and others that are written extremely poorly. Take the time to explain your situation properly, be precise and concise, brief but comprehensive.

  • Where can I buy a larger hard drive for my late 2008, 15" macbook pro?  From reviewing questions and answers on the support community it would appear that having Apple remove the old and install the new hard drive is recommended.  But how/where?

    Where can I buy a larger hard drive for my late 2008, 15" macbook pro?  From reviewing questions and answers on the support community it would appear that having Apple remove the old and install the new hard drive is recommended.  But how/where?

    Welcome to Apple Support Communities
    You can install the new hard disk yourself if you want to. You just need a 2'5" SATA II hard drive, which is compatible with your MacBook Pro. You can buy one at OWC > http://eshop.macsales.com/shop/hard-drives/2.5-Notebook/ You can filter hard drives by computer, so press a "Click to view all...", choose your computer in the sidebar and it will give you the compatible hard drives.
    There are different brands for the MacBook Pro. The most recommended are HGST and Seagate, which have good reputation. A 7200 rpm hard drive will give you extra performance

  • HT1420 i forgot my answers to my security questions, how do i setup new questions and answers?

    I have forgotten my answers to my security questions, how do i setup new security questions and answers?

    Welcome to the Apple Community.
    Start here (change country if necessary) and navigate to 'Password and Security', reset your security questions using the link provided, you will receive an email to your rescue address, use the link in the email and reset your security questions.
    If that doesn't help, you don't receive a reset email or you don't have a rescue address, you should contact AppleCare who will initially try to assist you with a reset email or if unsuccessful will pass you to the security team to reset your security questions for you.
    If you are in a region that doesn't have international telephone support try contacting Apple through iTunes Store Support.

  • Every time I try to purchase a song from itunes, it says I have to put in security questions and answer them, which it's never done before. Then after I do the questions, it says that an error occurred and my changes couldn't be saved. HELP!

    Every time I try to purchase a song from itunes, it says I have to put in security questions and answer them, which it's never done before. Then after I do the questions, it says that an error occurred and my changes couldn't be saved. It has been doing this for weeks, and I can't purchase anything! HELP!

    Hi mterry1723, one solution that might be worth trying is this:
    - Close iTunes, if it's open
    - Open Safari and got to 'Preferences'
    - Select 'Security' on the top
    - Untick all the security options in the menu
    - Click the 'Show Cookies' button and look for all the 'apple' entries in the left-hand column.
    - Highlight them (select them collectively) and press 'Remove'
    - Now open iTunes and buy the song as usual.
    - You may be asked to do the same security process as before, so do as asked.
    - Hopefully, the security check will now have accepted your answers and start downloading the song as normal.
    Remember to re-tick all the required security options you had just un-ticked in Safari preferences. You don't need to bother about opening the cookies again.
    I hope this has worked for you and my profoundest apologies if it has not. Worth a go, though!
    I did see this thread: https://discussions.apple.com/message/18259935#18259935 which may be of more help, mainly the last entry by 'c2boyd'
    Message was edited by: Bongomal

  • How do I change my security questions and answers without setting up a new account. I can't remember the answers to the questions that they ask.

    How do I change my security questions and answers without setting up a new account. I can't remember the answers to the questions that they ask.

    1. See my User Tip for some help: Some Solutions for Resetting Forgotten Security Questions: Apple Support Communities.
    2. Here are two different but direct methods:
        a. Send Apple an email request at: Apple - Support - iTunes Store - Contact Us.
        b. Call Apple Support in your country: Customer Service: Contacting Apple for support
            and service.
    3. For other queries about Apple ID see Frequently asked questions about Apple ID.
    4. Rescue email address and how to reset Apple ID security questions
    5. For online assistance use Apple - Support - Express Lane

  • HT201363 Sir/Madam,  can I ask for help to know what's my secret questions and answer in my apple ID? Coz i'm not the one who make my apple ID when i first buy my phone. I can't ask my friend On what he put in my secret questions coz i'm already here in p

    Sir/Madam,
    can I ask for help to know what's my secret questions and answer in my apple ID?
    Coz i'm not the one who make my apple ID when i first buy my phone. I can't ask my friend
    On what he put in my secret questions coz i'm already here in philippines right now and my friend who made my apple ID is still in bahrain.. I wish i could get a feedback through this matter. Thanks and i'm kyztle Romanes . Thanks you so much i wish i'd get any feedback to your side.. I wanna purchase a builder in my clash of clans account coz my clanmate philip sent me a gift card for 25$ that's why i need your help.. Thanks again Apple company..
    Sent from my iPhone
    On Jan 1, 2014, at 4:53 PM, iTunes Store <[email protected]> wrote:
    $25
    Buy that builder
    Philip sent you an iTunes Gift
    You can redeem this gift on your iPad, iPhone, iPod touch, or on your computer using iTunes. Once you redeem your gift and verify your Apple ID, you will be credited with $25 and can purchase the latest music, apps, and more.
    Valid only on iTunes Store for U.S. Requires iTunes account and prior acceptance of license and usage terms. To open an account you must be 13+ and in the U.S. Compatible software, hardware, and Internet access required. Not redeemable for cash, no refunds or exchanges (except as required by law). Code may not be used to purchase any other merchandise, allowances or iTunes gifting. Data collection and use subject to Apple Customer Privacy Policy, see www.apple.com/privacy, unless stated otherwise. Risk of loss and title for code passes to purchaser on transfer. Codes are issued and managed by Apple Value Services, LLC (“Issuer”). Neither Apple nor Issuer is responsible for any loss or damage resulting from lost or stolen codes or use without permission. Apple and its licensees, affiliates, and licensors make no warranties, express or implied, with respect to code or the iTunes Store and disclaim any warranty to the fullest extent available. These limitations may not apply to you. Void where prohibited. Not for resale. Subject to full terms and conditions, see www.apple.com/legal/itunes/us/gifts.html. Content and pricing subject to availability at the time of actual download. Content purchased from the iTunes Store is for personal lawful use only. Don’t steal music. © 2012 Apple Inc. All rights reserved.
    Apple respects your privacy.
    Information regarding your personal information can be viewed at https://www.apple.com/legal/privacy/.
    Copyright ©2014 Apple Inc. All rights reserved.
    <Email Edited by Host>

    It is a phishing attempt to get your Apple ID and Password.
    You should forward it to Apple : [email protected]

  • HT204053 I have forgotten my questions and answers for my password. How can I replace them. I want to use the same password I have ?

    I was on the phone for almost 2 hrs. yesterday because I had so many passwords I couldn't remember the one I used for itunes. The fellow helped me get it all straightened out but it still wouldn't let me get in because I couldn't remember the questions and answers. He was going to take care of it at that end and told me to wait 24 hours. So I'm at it again. I got into itunes but when I try to retrieve my previous apps,it wants me to put my password for that as well and then I'm in the situation with it not accepting my password so when I try to change my password it then wants me to answer the question and answer so now I'm thinking I have more than a seizure disorder and it's driving me to the point of no patience. Can you help?
    Anna

    Chick3597 wrote:
    Regardless of apple updating something or another. I have no need for the additional questions and really don't want to allow them to bully me into compliance.
    You may have no need for additional but Apple does. They don't want your iTunes account to be hacked and then go complaining to them that their security procedures are not up to standards.
    Chick3597 wrote:
    So how can I continue in the good old fashioned way?
    Its really absurd to even ask this in light of the information that you have been given already. The "old fashioned" way is gone. It's Apple's store, Apples's rules and IMO - its a wise decision on Apple's part.
    You do not have to comply at all, but you will not be able to purchase from iTunes anymore, but nobody is going to force you to do something that you do not want to do.

  • Security question and answer

    I like to find out my security question and answer

    If you can't remember the answers to the security questions, then go to Express Lane  and select 'iTunes' from the list of 'products' in the middle of the screen.
    Then select 'iTunes Store', and on the next screen select 'Account Management'
    Next choose 'iTunes Store Account Security' and fill in that you'd like your security questions/answers reset.
    You should get an email reply within about 24 hours (and check your Spam folder as well as your Inbox).

  • How can i change a forgotten security question and answer in my apple id ?, how can i change a forgotten security question and answer in my apple id ?

    how can i change a forgotten security question and answer in my apple id ?, how can i change a forgotten security question and answer in my apple id ?

    SECURITY QUESTIONS
    Read this note for information on how to reset the security questions http://support.apple.com/kb/HT5312
    This user tip may also help you http://discussions.apple.com/docs/DOC-4551

Maybe you are looking for

  • Waiting for a mouse click in a single thread

    Here's my problem: I'm working on a program I didn't initially create, and I picked it up from the rough midpoint of its evolution. It is a single thread AWT program, with a mouseListener interface already implemented. Here's my problem. In a game se

  • Overcharged for this particular call.

    This happened to me today: Before this call my balance was 224,62 SEK. After the call it had dropped to 221 SEK which means that I was charged 3,62 SEK. How come, when the call costed 1,590 SEK. This means I was overcharged 2,03 SEK or 178 %. 178 % o

  • Fetch .tiff image via URL

    Hi, I am trying to fetch an image using the CL_HTTP_CLIENT class. My coding looks something like this:   TRY.       " Create the HTTP client       CALL METHOD cl_http_client=>create_by_url         EXPORTING           url                = lv_img_url  

  • Opening an AppleWorks spreadsheet in Pages.

    Hi, there ! I am puzzled. I am trying to open an AppleWorks (6.2.9) made spreadsheet with Pages and cannot. Pages does not seem to acknowledge my AppleWorks document. When I launch Pages and try to open the desired file, it does not allow me to selec

  • Can I find a theme that uses a color I choose?

    I can't figure out how I can find themes that use a color I have selected.  I would like to browse available themes based on a starting color I choose, is this possible?