Guidance on getting started with XML/SOAP and JDeveloper

I am not a novice programmer, but I am new to Java and web services and I need to get up to speed very quickly on JDeveloper, XML, SOAP, WSDL, UDDI, etc. Nothing I have read so far is making any sense. Could anyone please suggest the best place to start getting grounded in XML/SOAP messaging. It is my task to send and receive messages to an existing SOAP service on the web conveying data from our E-Bis Suite. Thanks, Bill.

Thanks! I made it through the JDeveloper Tutorial. I see a tutorial on the list specifically for Web Service from WSDL, so that's next. Hopefully, as I study the pieces, it will become easier to see how they all fit together.

Similar Messages

  • Sorry I do not understand I neeed to get started with elements 10 and so far no help received

    I am trying to get started with Adobe elements 10 and selected organise so as to transfer my many files over
    this I have been unable to do.
    Being asked for ID name ( already registered) which mena scoming out of one page hunting in fact its all very frustrating.. HELP
    Post message sorry how do I get help?????????

        Hi casheasy!
    I sure don't want our first month with you to start off on the wrong foot! I'd be happy to review the charges on your first bill and make sure all is correct. I have followed you in the forums. Please accept my request and follow me back. Then, please send me a DM with your name and mobile number and I'll check it out for you!
    ChristinaB_VZW
    VZW Support
    Follow us on Twitter @VZWSupport

  • General questions on how to get started with Oracle OEPE and databases

    My company has a server in the cloud, written using Ruby on Rails. The server is designed to work with a browser, so it communicates via standard HTTP.
    The server has an SQL database.
    The server sends and receives HTTP requests from clients, which are then used to either update the database or retrieve information from the database.
    The database can be edited from a separate admin dashboard.
    I have recently rewritten our client software as a native android app. The new app makes calls to the server that look like browser calls. I have used Eclipse to develop the Android app.
    Sounds pretty standard so far, right? :-)
    I now want to replace the Ruby on Rails server with a new Java server that I will write. I want to use Eclipse to develop the new server. During development, I want to be able to have the new Android app communicate with the development server software that will reside on my desktop.
    So I was thinking that Oracle's tools might be perfect for me, if only I knew which tools to use. There are lot to choose from. :-)
    I believe that all I need is OEPE and a database. I would like to keep it pretty simple. I don't want to learn 20 new tools. It will be enough effort to become proficient in OEPE and a database.
    I looked at "Oracle Database Tools >> Connecting to an Oracle database" in the help files for OEPE 12.1.1. I tried going through the help files for Database connections, but I got to a "New Connection Profile" form that asks me for a SID, a user name, a password, etc. I don't have any of those. I tried to enter some data in the forms and ping the database, but I could not get any results from the ping. So my first question is: Do I have to sign up for an Oracle database in the cloud or is there a database contained within the OEPE software that I just installed. I will have to do the former anyway when I eventually deploy my new server software, so maybe the right thing to do is sign up for the "database in the cloud" service now, and use it during development.
    The other question I have is about getting a simple application client and server application sample. I found a "hello world" example at http://docs.oracle.com/cd/E13224_01/wlw/docs103/guide/webapplications/workshopJSP/tutorialJSP/TutorialJSPMakeJSP.html, but that is for WLS 10.3 and it doesn't seem to match the 12.1.1 software very well.
    So does anybody know where I can find a simple client and server sample program for WLS 12.1.1?
    If I can get these two questions answered, I can start making some progress.
    Thanks in advance to anybody who can help me navigate this minefield.
    Jim

    I wanted to add some information to my previous posting.
    1. The server I will develop will communicate ONLY with Android and iOS native apps, so the interface will not be HTML or XML. The information sent by the server to the client will be JSON. The information sent by the client to the server will be HTTP parameters, usually in the form of URL-encoded form data. This is not a browser-to-server server interface, so JSP is probably not appropriate for the server. The communication protocol will be HTTP.
    2. I don't need anything fancy on the server side. The server will simply be a Java program that emits JSON responses to the client and receives URL-encoded form data from the client. The server program will also make database queries and update the database.
    3. I don't understand how my native Android app will be able to communicate with my development server code running on my desktop. I want that communication to be over the internet, but my desktop does not have a static IP address, so I don't see how the app will be able to address the development server software on my desktop PC. I don't want to deploy the server software into the cloud every time I start a debug run, but I don't see any other way for my app to be able to address the server code over the Internet.
    If anybody has any ideas, I would appreciate hearing them.

  • Getting started with aironet 1200 and radius

    Hi,
    Does anyone has a manual how to configure some aironet 1200 AP's with the use of a radius server?
    The best would be a manual from start (reset to factory defaults) to a working solution.
    The built-in radius server or a windows 2008r2 radius server are both possible for me.
    I have tried both, buth did not succeed. (unknown EAP type and unknown username in the radius log)
    Kind regards,
    Ernst

    i talk with a rep and i heard the new good news...there is no c sharp interface for berkeley db on handheld devices yet, it will be released later.
    imagine one having problems executing a simple select statement due to the first release bugs...
    dissapointing...
    good article rekounas once again, your blog was very helpfull especially on my first steps in the olite universe, please keep it up
    Edited by: vasileios on 03-Sep-2010 05:24

  • Getting start with XMl

    How dose this programm workand what can it do for my Web progets.
    How do I start with it? Any pre-installation?
    thanks
    Mark

    XMI is the XML representation of a UML diagram.
    http://www.oracle.com/technology/pub/notes/vohra_uml.html

  • Getting started with Server Faces and Data

    Hello All,
    I am just starting a Java Server Faces project and I am new to the technology and have a couple of questions that I can't seem to find answers to. I am developing using IBM's Rational Software Architect as my IDE and I am creating a Java Server Faces Portlet Application.
    I have gone through many tutorials and am getting a good sense of navigation, beans and tags but in all of the tutorials no one has shown a working model of how to grab existing data from a data source and display it on a jsp. From what I have seen the "backing beans" for each jsp page don't seem to have an entry point so I'm a little confuse as to where you would make your call to fill up a bean that is consumed by the jsp.
    For example say I have a simple page with 2 labels: one for first name and one for last name, I have created a bean called User with 2 properties (firstname, lastname) each with getters and setters created. Then I have a public method called "GetUser" that returns back an instance of this user bean with some fake data (Is this common practice? I come from a C++/C# background and normally this would be a static method or a method in a controller class somewhere but some of the tutorials I've looked at are doing it this way). Now where does my JSP call this GetUser method? and do I still create a managed bean and bind the firstname/lastname fields to the labels?
    If anyone could point me in the right direction, a better tutorial or anything that would be great.
    Thanks in advance

    Hello!
    >
    For example say I have a simple page with 2 labels: one for first name and one for last name, I have created a bean called User with 2 properties (firstname, lastname) each with getters and setters created. Then I have a public method called "GetUser" that returns back an instance of this user bean with some fake data (Is this common practice? I come from a C++/C# background and normally this would be a static method or a method in a controller class somewhere but some of the tutorials I've looked at are doing it this way). Now where does my JSP call this GetUser method? and do I still create a managed bean and bind the firstname/lastname fields to the labels?My approach:
    package klgr.test;
    public class User {
         private String firstName;
         private String lastName;
         public User(String fn, String ln) {
              firstName = fn;
              lastName = ln;
         public String getFirstName() {
              return firstName;
         public void setFirstName(String firstName) {
              this.firstName = firstName;
         public String getLastName() {
              return lastName;
         public void setLastName(String lastName) {
              this.lastName = lastName;
    package klgr.test;
    * @author klaus
    public final class UserBean extends Object {
         User user = null;
         public UserBean() {
              generateDummyUser();
         private void generateDummyUser() {
              user = new User("John", "Doe");
         public User getUser() {
              return user;
         public void setUser(User user) {
              this.user = user;
    }And now the JSP:
    <%@ page language="java" pageEncoding="ISO-8859-1"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h" %>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f" %>
    <%
    String path = request.getContextPath();
    String basePath = request.getScheme()+"://"+request.getServerName()+":"+request.getServerPort()+path+"/";
    %>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
         <base href="<%=basePath%>">
         <title>My JSF 'Test.jsp' starting page</title>
         <meta http-equiv="pragma" content="no-cache">
         <meta http-equiv="cache-control" content="no-cache">
         <meta http-equiv="expires" content="0">   
         <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
         <meta http-equiv="description" content="This is my page">
         <!--
         <link rel="stylesheet" type="text/css" href="styles.css">
         -->
    </head>
    <body>
         <f:view>
              <h:outputLabel value="#{UserBean.user.firstName}"/>
              <h:outputLabel value="#{UserBean.user.lastName}"/>
         </f:view>
    </body>
    </html>Output is:
    John DoeUserBean is a managed bean (session scope in that case, but it could also request scope, it doesn't matter here)
    If anyone could point me in the right direction, a better tutorial or anything that would be great. Well, as I was learning JSF I found this url very useful:
    http://balusc.blogspot.com/
    Regards,
    Klaus

  • Getting started with understanding when and how to employ Forefront

    Hello,
    I am a BizSpark member and setting up a team software development environment.  It appears I will have to open my Team Foundation Server to the outside for certain aspects.
    1) As I have been studying how to set that up I came across Forefront.  I don't really know anything about Forefront and I am first wondering if this is something I need to install/engage for my situation.
    2) Assuming I need to start working with Forefront I would appreciate recommendations for books/tutorials that can get one up to speed quickly and efficiently.
    Thanks.
    Best Regards,
    Alan

    Hi,
    if you want to publish internal applications / websites to the Internet you can use Forefront TMG and UAG, but keep in mind that this products has been discontinued:
    http://blogs.technet.com/b/server-cloud/archive/2012/09/12/important-changes-to-forefront-product-roadmaps.aspx
    As a possible alternative you can use the WAP if you don't need all security capabilities of Forefront TMG/UAG
    http://technet.microsoft.com/en-us/library/dn280944.aspx
    More informations about TMG/UAG:
    www.isaserver.org
    TMG Online product help
    Microsoft Technet websites
    regards Marc Grote aka Jens Baier - www.it-training-grote.de - www.forefront-tmg.de - www.galileocomputing.de/3570

  • Getting Started with Business Catalyst and Muse – Creating and Publishing Sites | Introducing Business Catalyst | Adobe TV

    Learn how to create your first Business Catalyst site using Muse, then push it live online with just a few clicks.
    http://adobe.ly/OU3cnr

    I pushed my muse site live to bc and used one of my CC plans.  Now i want to upgrade from webbasic plan to get email account with bc.  I can't find where to upgrade the plan. Any ideas?

  • I use on a daily basis Lightroom 5,7 (get started withe version 3) and bought today a Sony Alpha 7 Mk2 but it seems impossible to develop .arw photos with that software. Is there a possibility to overcome this very bad surprise without leaving Lightroom?

    Quelqu'un peut-il m'aider car l'assistance d'adobe est tout simplement inexistante.

    Great and well done,
    ManyThanks to you, Nick and Rilk. You are right with the correct solution wich i hoped. What is really rare is that my version 5.7 (I thought it was the most recent one) didn't update to 5.7.1.
    With the 5.7.1 version I tested the development of two test photos in arw format and it works very well. I'm starting in the FF world after years working with DX format.(Nikon D7000 and other Nikons before)
    The 2 test photos i took where taken with a FE 4 70-200 G OSS (SEL70200G) objective in a room under artificial light and without any flashlight. Let me say the worst conditions...
    Well, the result is astonishing not so bad at all after correction of the white balance. It is promising in better conditions outside;
    Other objectives are currently ordered : Sony Zeiss Vario Tessar T FE 16-35 mm F/4 ZA OSS and Sony Zeiss FE 55 mm F/1,8.
    All what i need for nice shots in the future.
    Many thanks to you again
    Best regards
    Robert

  • Getting Started with XML

    I need some help learning what tools to use when developing some XML stuff. I have created some .xml documents, but now I have no idea how to parse this stuff in a meaningful way. Thanks very much.

    Hi,
    Perhaps if you tell us more specifically as to what you are planning on doing with your XML files, we can help you out.
    Thanks,
    Oracle XML Team

  • HT4906 have a new Mac Book Pro how do I get started with the iPhoto and Aperture

    hi Mark
    i have a new Mac Book Pro and there is no iPhoto installed do I need to purchase

    log into the App store under the Apple ID you set the computer up with and accept the applications (iPhoto is included - Aperature must be purchased there)
    This info is included in your set up instructions
    LN

  • Trying to get started with Lr 5 and already in trouble

    I just downloaded LR 5 and when asked if I wanted to use the default for Catelog I choose to brouse and direct it to my Cateloge of Pictures on the harddrive when my pictures are stored.... I did this thinnking that it would link me to the pictures... now I am not sure that is what it was asking during the download.. was it asking for the location where Lr will store the data files?  Help!! 

    The catalog (which is really a database) is a file that Lightroom creates, and it contains all the work you do in Lightroom, but not the photos themselves, which are never stored in Lightroom.
    The catalog can go anywhere you want it to go, it does not have to be in the same folder as your photos, and there is no benefit, nor is there a disadvantage, to placing it in the same folder as the photos.
    Most people recommend that your catalog file should be stored on the fastest hard disk on your computer, which is often the internal disk or a SSD disk.
    was it asking for the location where Lr will store the data files?
    It depends on what you mean by "data files". As I said, Lightroom does NOT store your photo files. Your photo files are stored on a hard disk somewhere that you choose. So you were not being asked where to store the photos. You were being asked where the catalog should reside.

  • Getting started with ATG and Eclipse

    Hi,
    I am newbie in ATG web commerce. I am doing some R&D how to integrate ATG with eclipse JBoss and oracle. I searched on Google, there is one very interesting topic about getting started with atg, jboss, oracle :
    http://atgdeveloper.wordpress.com/2009/04/19/getting-started-with-atg-jboss-and-oracle
    It is very helpful to me but there is one problem what are the requirements of eclipse to integrate it with ATG. Is there any ATG plugin, which I can download all the plugin for eclipse and please can anyone help me if there is any ATG configuration documentation available, please share link or document(if there is complete step-by-step documentation available).
    I will greatly thankful to you. Very very thanks in advance.
    Thanks,
    Manveer
    Edited by: msingh on Nov 9, 2011 3:37 AM
    Edited by: msingh on Nov 9, 2011 3:38 AM

    Hi GarethR,
    I have a looked on ATGInstallationGuide.pdf, which url it shows is not working http://www.atg.com/eclipse. I think the url for ATG plugin has been changed now but I didn't found that url on google. Can you please help me to get correct url.
    When I try to use this url using eclipse update manager. It shows me no features available for this site.
    Thanks,
    Manveer

  • Just updated to latest version , getting started with Mozilla Firefox opens everytime not homepage , how do I get rid of unwanted page

    I upgraded to the latest version of Firefox , when I hit the icon and firefox opens the first page that comes up is the Getting started with Mozilla Firefox and not my home page , I have checked everything I could find and nothing keeps this page from opening like it's my home page . also I unloaded download helper for the same reason , it keep opening up wanting me to upgarde to the latest version , I already had upgraded , I don't know what is going on , My home system was upgraded early last week and works fine , I double checked all setting between the two systems , nothing , Please let me know where to look , thank you , a longtime fan of Firefox.

    Hi Romulus949,
    You should take a look at the Knowledge Base article [[How to set the home page]].
    There are steps in that article to reset your homepage preferences to default. I would try that first to clear out any strangeness. Then you can set your homepage to anything you like.
    If that doesn't work you should look at [https://support.mozilla.com/kb/Firefox+has+just+updated+tab+shows+each+time+you+start+Firefox this article about that specific issue] and the article [http://kb.mozillazine.org/Preferences_not_saved Preferences not saved].
    Hopefully this helps!

  • Problems getting started with LabVIEW FPGA

    Two (probably) related questions:
    1. I am trying to get started with LabVIEW FPGA, and I am having trouble using a host VI to test my FPGA VI. I started with a basic QAM modulator VI, to be run on the FPGA, and I have reached the point where I need to verify the logic and timing with this VI running on the development computer with simulated IO. I have tried various combinations of putting the code inside single-cycle timed loops vs not; putting the modulator block directly into the host VI, and using the "FPGA reference" block. When neither the host VI nor the modulator VI use a single-cycle timed loop, I see correct behavior. In every other case, the output of the VI is either absent or incorrect. I need to use a single-cycle timed loop in the FPGA VI to properly verify timing behavior (as far as I know), so the one functioning case is not enough for me.
    I'm sure there is a key step I'm missing or misunderstanding, but I have not been able to figure it out myself yet. I've attached my modulator diagram as well as two different attempts at host VIs. I can share other information, but I'm not sure what is most relevant.
    2. I am also trying to test a simple wrapper VI for the Xilinx FFT block, and I am having trouble accessing FIFOs inside the host VI. I thought this would be relatively straightforward, but when I tried to change the "method" on an "invoke method" block, there were no options for accessing FIFOs, as I understood there should be. This is a total roadblock for me. These two diagrams are also attached, the test diagram shows the options available to me for the "invoke method" block.
    Labview 2013, PXIe-7965R, PXIe-8133 controller. 
    I had to combine the diagram images; in case they are hard to follow this way, see the individual images here: http://imgur.com/a/oB6OD .
    Thanks in advance for any suggestions.
    Attachments:
    mod_all.png ‏68 KB
    fft_all.png ‏52 KB

    Hello Monguin61
    If you are having problems reading from DMA FIFO's you should test them using a very simple code to understand their behavior. First, you could start taking a look to the linked documents:
    Reading DMA FIFOs from Host VIs (FPGA Interface)
    Using DMA FIFO to Develop High-Speed Data Acquisition Applications for Reconfigurable I/O Devices
    FIFO.Read (Invoke Method)
    Then you could test and analyze a simple example to understand how it works, for example this one: Simple DMA FIFO Example for FPGA.
    Check the references when you are using DMA FIFO's, I noticed you did not connect them in the second picture attached.
    Regards
    Frank R.

Maybe you are looking for