Bpel tutorial help !!!

I am very new to the world of SOA and BPEL.. trying to follow tutorials and samples and am stuck at Loan Processing Tutorial
http://download.oracle.com/docs/cd/B14099_19/integrate.1012/b15604/loandemo.htm#hytrlvjjh
at instruction #5..
Tutorial simply instructed us to go to "http://localhost:9700/StarLoanUI" , which only gives me 404 page not found error.. I am not sure how to proceed.. any help will be very much appreciated.. i m pulling my hair out ...
I tired other variationss such is using my PC name instead of localhost... BPEL consile is running fine on 9700.
Thanks much.

thanks so much for helping me. After spending so much time, finally I find out that it was windows firewall that was stopping the .jsp pages to run. I stopped windows firewall and StarloanUI longin page showed up. then, I spend anotther days to find out the User ID and log in. Finally I was able to log in with jcooper, welcome1.
I am stuck with another problem.. Complex Structure Tutorial (File Adapter). I am trying to create native xml schema for the sample Invoice file, using "multiple records of different types". However, I am not able to differentitate between 3 differnt types of records (buyer, seller and line item) in wizard. Is there anyway to accomplish this using wizard or do I need to create the schema file manually.
invoice.txt
6335722^Company One^First Street 999 San Jose 95129USCA650-801-6250
^Oracle^Bridge Parkway 1600 Redwood Shores 94065USCA650-506-7000
001|BPEL Process Manager Enterprise Edition|20000,2,+40000+
002|BPEL Process Manager Standard Edition|10000,5,+50000+
003|BPEL Process Manager Developer Edition|1000,20,+20000+#110000
first record is seller, second is buyer and last three lines should be of type line item.
Thanks.

Similar Messages

  • Bpel Tutorial with JDeveloper

    Hi,
    Is there a BPel tutorial I can use with Jdeveloper Studio Edition 10.1.3.1.0.3984
    I have been trying to following the tutorial
    http://www.oracle.com/technology/products/ias/bpel/index.html
    and
    http://www.oracle.com/technology/obe/obe1013jdev/index.htm
    I am having problems following the flow because none of the screens seem to match what I am seeing in JDeveloper studio.
    What I would like is an introductory BPEL process tutorial which shows bpel process built and deployed.
    Has anyone got any links I could use.
    Thanks
    BP

    Thanks Mihai,
    I saw that link but when I click on the Quick Start Tutorial link it opens Oracle BPEL Process Manager 2.
    I presume this precedes the 10.1.3.1 Quick Start version on the link above so I used the 10.1.3.1 version
    http://www.oracle.com/technology/products/ias/bpel/index.html
    Quick Start Tutorial - JDeveloper 10g (PDF)
    in section
    Getting Started
    Perhaps if I start Tutorial 1 the screens might start to match.
    BP

  • BPEL Tutorial broken links

    Are all BPEL tutorial links broken?
    I've been trying any of the tutorial links in the following page, but always received Error 404 - Not found:
    http://www.oracle.com/technology/products/ias/bpel/htdocs/dev_support.html
    Att.
    Eduardo

    I just downloaded several of the PDFs from te link you provided.
    Perhaps it's your proxy.

  • BPEL tutorial or Jdeveloper 11g ?

    Hi all,
    I have just installed SOA suite 11g.I am trying to create a sample BPEL process,I am unable to find create new BPEL project in Jdev 11g. Can anyone kindly post the link for bepl development tutorial in j developer 11g ?
    Thank You

    Hi,
    1. Here is the link for 11g developers Guide
    http://download.oracle.com/docs/cd/E11036_01/integrate.1013/b28981.pdf
    2. You need to apply a patch on jdeveloper before you start making soa proj/Appl in jdev 11g...
    Follow the steps:
    Open Jdev->go to help->click on check for updates->click next->click next->select oracle soa composite editor->next finish.
    Regards,
    Satish

  • HTML in Swing Tutorial/Help

    I'm looking for a tutorial or just help here on how to display an HTML file in a swing component.

    http://java.sun.com/docs/books/tutorial/uiswing/components/editorpane.html
    These components won't be able to display anything but the most basic HTML page. I've seen better components out there (you will have to search).
    When I needed to do this, I used the browser itself. I had an applet in one frame which sent html to the other frame via javascript.

  • Mutliple wsdl operations for a port in BPEL Project -- Help

    I was trying to create a BPEL project with multiple operations for one port type. I used a pick activity and on message acitivity to branch out based on the operation. For some reason all the operations are channeled through the same branch (operation). Please share with me your experiences and any simple project.
    -----------------wsdl file -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="MultiWsdl"
    targetNamespace="http://xmlns.oracle.com/MultiWsdl"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:client="http://xmlns.oracle.com/MultiWsdl"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/">
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    TYPE DEFINITION - List of services participating in this BPEL process
    The default output of the BPEL designer uses strings as input and
    output to the BPEL Process. But you can define or import any XML
    Schema type and use them as part of the message types.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://xmlns.oracle.com/MultiWsdl" schemaLocation="MultiWsdl.xsd" />
    </schema>
    </types>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    MESSAGE TYPE DEFINITION - Definition of the message types used as
    part of the port type defintions
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <message name="MultiWsdlRequestMessage">
    <part name="payload" element="client:MultiWsdlProcessRequest"/>
    </message>
    <message name="MultiWsdlResponseMessage">
    <part name="payload" element="client:MultiWsdlProcessResponse"/>
    </message>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    PORT TYPE DEFINITION - A port type groups a set of operations into
    a logical service unit.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    *<!-- portType implemented by the MultiWsdl BPEL process -->
    *<portType name="MultiWsdl">
    *<operation name="Create">
    *<input message="client:MultiWsdlRequestMessage"/>
    *<output message="client:MultiWsdlResponseMessage"/>
    *</operation>
    *<operation name="Update">
    *<input message="client:MultiWsdlRequestMessage"/>
    *<output message="client:MultiWsdlResponseMessage"/>
    *</operation>
    *</portType>
    <!-- portType implemented by the requester of MultiWsdl BPEL process
    for asynchronous callback purposes
    -->
    <portType name="MultiWsdlCallback">
    <operation name="TestReply">
    <input message="client:MultiWsdlResponseMessage"/>
    </operation>
    </portType>
    <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    PARTNER LINK TYPE DEFINITION
    the MultiWsdl partnerLinkType binds the provider and
    requester portType into an asynchronous conversation.
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
    <plnk:partnerLinkType name="MultiWsdl">
    <plnk:role name="MultiWsdlProvider">
    <plnk:portType name="client:MultiWsdl"/>
    </plnk:role>
    <plnk:role name="MultiWsdlRequester">
    <plnk:portType name="client:MultiWsdlCallback"/>
    </plnk:role>
    </plnk:partnerLinkType>
    </definitions>
    ---------------- Bpel File ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    <?xml version = "1.0" encoding = "UTF-8" ?>
    <!--
    Oracle JDeveloper BPEL Designer
    Created: Thu Nov 06 21:46:50 PST 2008
    Author:
    Purpose: Asynchronous BPEL Process
    -->
    <process name="MultiWsdl" targetNamespace="http://xmlns.oracle.com/MultiWsdl"
    xmlns="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20"
    xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/"
    xmlns:ldap="http://schemas.oracle.com/xpath/extension/ldap"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:client="http://xmlns.oracle.com/MultiWsdl"
    xmlns:bpelx="http://schemas.oracle.com/bpel/extension"
    xmlns:ora="http://schemas.oracle.com/xpath/extension"
    xmlns:orcl="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc">
    <!--
    PARTNERLINKS
    List of services participating in this BPEL process
    -->
    <partnerLinks>
    <!--
    The 'client' role represents the requester of this service. It is
    used for callback. The location and correlation information associated
    with the client role are automatically set using WS-Addressing.
    -->
    <partnerLink name="client" partnerLinkType="client:MultiWsdl"
    myRole="MultiWsdlProvider"
    partnerRole="MultiWsdlRequester"/>
    </partnerLinks>
    <!--
    VARIABLES
    List of messages and XML documents used within this BPEL process
    -->
    <variables>
    <!-- Reference to the message passed as input during initiation -->
    <variable name="inputVariable"
    messageType="client:MultiWsdlRequestMessage"/>
    <!-- Reference to the message that will be sent back to the requester during callback -->
    <variable name="outputVariable"
    messageType="client:MultiWsdlResponseMessage"/>
    <variable name="OnMessage_TestReq_InputVariable"
    messageType="client:MultiWsdlRequestMessage"/>
    <variable name="OnMessage_TestReq_InputVariable_1"
    messageType="client:MultiWsdlRequestMessage"/>
    <variable name="Reply_2_TestReq_OutputVariable"
    messageType="client:MultiWsdlResponseMessage"/>
    <variable name="Reply_1_TestReq_OutputVariable"
    messageType="client:MultiWsdlResponseMessage"/>
    </variables>
    <!--
    ORCHESTRATION LOGIC
    Set of activities coordinating the flow of messages across the
    services integrated within this business process
    -->
    <sequence name="main">
    <!-- Receive input from requestor. (Note: This maps to operation defined in MultiWsdl.wsdl) -->
    <!--
    Asynchronous callback to the requester. (Note: the callback location and correlation id is transparently handled using WS-addressing.)
    -->
    <pick name="Pick_1" createInstance="yes">
    <onMessage portType="client:MultiWsdl" operation="Update"
    variable="OnMessage_TestReq_InputVariable_1"
    partnerLink="client">
    <sequence name="Sequence_1">
    <assign name="Assign_1">
    <copy>
    <from expression="'test'"/>
    <to variable="Reply_1_TestReq_OutputVariable"
    part="payload"
    query="/client:MultiWsdlProcessResponse/client:result"/>
    </copy>
    </assign>
    <reply name="Reply_2" partnerLink="client"
    portType="client:MultiWsdl" operation="Update"
    variable="Reply_1_TestReq_OutputVariable"/>
    </sequence>
    </onMessage>
    <onMessage portType="client:MultiWsdl" operation="Create"
    variable="OnMessage_TestReq_InputVariable"
    partnerLink="client">
    <sequence name="Sequence_2">
    <assign name="Assign_2">
    <copy>
    <from expression='"AB"'/>
    <to variable="Reply_2_TestReq_OutputVariable"
    part="payload"
    query="/client:MultiWsdlProcessResponse/client:result"/>
    </copy>
    </assign>
    <reply name="Reply_1" partnerLink="client"
    portType="client:MultiWsdl" operation="Create"
    variable="Reply_2_TestReq_OutputVariable"/>
    </sequence>
    </onMessage>
    </pick>
    </sequence>
    </process>
    ----------xsd -------
    <schema attributeFormDefault="unqualified"
    elementFormDefault="qualified"
    targetNamespace="http://xmlns.oracle.com/MultiWsdl"
    xmlns="http://www.w3.org/2001/XMLSchema">
    <element name="MultiWsdlProcessRequest">
    <complexType>
    <sequence>
    <element name="input" type="string"/>
    </sequence>
    </complexType>
    </element>
    <element name="MultiWsdlProcessResponse">
    <complexType>
    <sequence>
    <element name="result" type="string"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    -----------------------------------------------------------------------------------------------------bpel.xml--------------------------------------------------
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <BPELSuitcase>
    <BPELProcess id="MultiWsdl" src="MultiWsdl.bpel">
    <partnerLinkBindings>
    <partnerLinkBinding name="client">
    <property name="wsdlLocation">MultiWsdl.wsdl</property>
    </partnerLinkBinding>
    </partnerLinkBindings>
    </BPELProcess>
    </BPELSuitcase>

    Thanks a lot. It helped me a lot. It seems this is the problem with the BPEL Console. I tried to create another BPEL Project to invoke the other service/operations. It worked perfectly fine. I had even tested with SoapUI. It worked fine. Thanks for the right pointer.

  • Tutorial help

    hi everybody
    i m trying to follow the instructions in the tutorial and trying to run the examples, in the jaxrpc chapter whenever i do a ANT RUN im getting this error - not able to find what package im exactly missing.
    im loooking for an api - which contains this com/sun/msv/datatype/xsd/TimeType - could not find it though
    thanks for the help
    im running jwsdp-1.2 on a windows machine
    run:
    [echo] Running the dynamic.HelloClient program....
    [java] java.lang.NoClassDefFoundError: com/sun/msv/datatype/xsd/TimeType
    [java] at com.sun.xml.rpc.encoding.simpletype.XSDTimeEncoder.<clinit>(X
    SDTimeEncoder.java:43)
    [java] at com.sun.xml.rpc.encoding.soap.StandardSOAPTypeMappings.<init>
    (StandardSOAPTypeMappings.java:817)
    [java] at com.sun.xml.rpc.encoding.StandardTypeMappings.getSoap(Standar
    dTypeMappings.java:34)
    [java] at com.sun.xml.rpc.client.BasicService.createSoapMappings(BasicS
    ervice.java:192)
    [java] at com.sun.xml.rpc.client.BasicService.createStandardTypeMapping
    Registry(BasicService.java:169)
    [java] at com.sun.xml.rpc.client.BasicService.<init>(BasicService.java:
    64)
    [java] at com.sun.xml.rpc.client.ServiceFactoryImpl.createService(Servi
    ceFactoryImpl.java:48)
    [java] at dynamic.HelloClient.main(Unknown Source)
    [java] Exception in thread "main"
    [java] Java Result: 1
    any help would be really appreciated
    srihari

    What version of the tutorial do you use?
    They say that the tutorial for the version 1.1 of jwsdp is not compatible with the new version 1.2
    They say also that the new tutorial (for the new version) will came soon.
    I downloaded J2EE 1.4 with the new J2EE tutorial and I have just started to study. It is very similar to the web services tutorial.
    I sugest you to try it!
    Have a good day!
    Florian

  • Bpel tutorial

    Hi Team
    Can i get bpel training tutorial, What is service and how to create a service in BPEL i am using SOA suit 11.1.1.4
    Thank In advance
    AT

    Hi Anuj
    In This link if i check https://soasamples.samplecode.oracle.com..
    Documents > Root Folder > bpel > List Documents doc1625: bpel-101-HelloWorld.zip
    i can able see
    This sample was developed using the PS2 (Patch Set 2) release of Oracle SOA Suite 11g. ll it suits for working with 11g PS3 since i have already tried this while i reached this stage i was little confused
    1)to add an Assign activity between the receiveInput and replyOutput activities in the BPEL flow.
    Yes i have added
    Double-click on the Assign activity . This will open up the Assign activity .select Copy Operation
    But
    there is no copy operation and it looks different screen that y
    and how create a service..awhat is it actually
    Thanks In advance
    AT

  • New to Flash -- tutorial help pls!

    Hi:
    Working with the Flash Developer Center tutorial http://www.adobe.com/devnet/flash/articles/atv_flcs4_demos.html
    I have Flash CS3 professional, and downloaded a couple of the zip sample files, fla.  However, an error message says "Unexpected File Format" when I try to open.
    Is it a CS3 vs CS4 issue?  If so, is there a way to convert these to CS3?  I assumed fla is fla...
    Or is it something else?  Helluva way to get started!  Thanks for your help!
    Rgds, Ned

    Not a problem at all. You should be able to install the trial of CS4 and work with those tutorials. As skyblue said, once you open those tutorials, you can then use saveAs... to save them as CS3 files. Keep in mind that you won't be able to use the features of CS4 from one of those saved files.

  • SAP tutorial help

    Hi Experts,
    I am new to CAF and GP and I am trying the [tutorial|http://help.sap.com/saphelp_nw04s/helpdata/en/33/198141f906040de10000000a1550b0/frameset.htm] Designing your first form process.
    I am not able to follow step number 6 in enhancing the application block flow. Can anyone please elaborate the same.
    Helpful answers will be rewarded with points.
    Regards,
    Abdullah.
    Edited by: Abdullah Ismail on Mar 17, 2008 7:58 PM

    Hi
    Select the application block, you could find a parameter tab, click on that tab, you can find all the parameters that are related to that block displayed.
    The data which you have entered in one action can be carried on to the next action by Grouping the parameters.
    To group the parameters of the select the a single parameter first for eg. FirstName that belongs to a single action. The same way you can find other FirstName's that belongs to others actions. Using the Ctrl Key select all the FirstName that belongs all the actions. Once you have selected it you can find "Group" button click on that a dialog box with the resultent type of type string, Group equal values,  a default name (FirstName). Click create to create a Group for the FirstName. By now when you enter any data in First Name, then it will be carried to all the actions.
    The same way you can do for all other parameters.
    Thanks
    Gopal.

  • Href and target tags tutorial/help needed for use with an existing website

    I have a website, (built through iweb), and an intro movie. I have spent a lot of time trying to understand the proper tags and how to use them without much luck. My goal is to have the homepage associated with my domain name load in a browser while at the same time have my intro movie open in a Quicktime Player window, play, and automatically close leaving the webpage visible. If anyone can point me to a tutorial or walk my through the process I would appreciate it.

    Poster movie style. Requires QuickTime Pro:
    Create an image (or a frame from your movie). This becomes the "poster". You could add text to it (Click to Play) in a graphic editor app to help your viewers or add text to the page under the image with these instructions.
    Save this new file as poster.mov
    It becomes the src="poster.mov" (source tag in the html code). Set its dimensions to fit your page layout.
    Your "intro movie" will be your href="intro.mov" (href tag in the html code).
    Open it with QuickTime Pro and then open the Movie Properties window. Click on the Presentation tab to see the choices. Automatically close option will close the QuickTime window. Automatically quit option will quit the running QuickTime Player app. This would be a better option as the browser should come back as the "front" application. You also want to check "auto play".
    Use Save As (preserves fast start feature) and name this file intro.mov
    In your html code for the QuickTime files you need to set target="quicktimeplayer" (this launches the QuickTime Player app instead of using the browser plug-in). It may also help if you use the full URL to both files in each tag (http://myserver.com/foldername/intro.mov).
    One of mine as an example. It uses automatically close window:
    http://homepage.mac.com/kkirkster/mycareerfuture/
    View the source code to see the tag structure. My page uses javascript instead of the older object/embed tag code.
    More useful links:
    http://developer.apple.com/internet/ieembedprep.html
    http://www.qtbridge.com/pageot/pageot.html

  • Can't find Part 4 of CC version of David Powers tutorial - help?

    Was happily working away in the David Powers tutorial for Dreamweaver CC. Got through Parts 1 through 3, and started 4. Bookmarked part 4 on my browser. Came back to it this morning, and now that same URL is showing me the CS6 version of the training, which is completely different content. I can not find the URL for Part 4 of the CC version of this training any more... Help?
    (Note the header indicates Dreamweaver CC, but the body of instruction indicates CS6, and the fictional project being built is "Check Magazine" instead of the "Bayside Beat" project of the CC training...)
    http://www.adobe.com/devnet/dreamweaver/articles/first_website_pt4.html

    Hi,
    Thanks for the heads up!
    I'm noticing the link is incorrect for part 4.  I'll check with our documentation team to sort this out. 
    Once I get more details I'll update you once corrected.
    Kind regrards,
    -Sidney

  • OAF Toolbox Tutorial Help - Search

    Hi all
    I'm going through the Toolbox Tutorials in the JDev documentation.
    I've completed the "Hello, World" tutorial with no problems.
    However, when trying to do the "Search" tutorial, I have a problem.
    Task 2: Create Your Page's Model Components, Step 2.1 says the following:
    - Slect TutorialLabs.jpr, right click and select New Business Components Package... from the context menu.
    I am unable to find this option.
    I have also tried to find this in the Gallery, but I can't see it there either.
    I am using JDev for R12.0.0.
    Any help appreciated.
    Alex

    I just had a look at the Jdev. I guess you should go ahead with the ADF Business Components and create the AM, EO, VO.
    My feeling is that because of R12, its called ADF component, but it should correspond to bc4j of 11i. Create a sample AM, EO, VO and test.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Blue Horizon Tutorial Help?

    I just got Final Cut Studio and am having trouble with parts of the Blue Horizon Tutorial trailer. I went through the first section on Final Cut Pro 5 with no problems. When I try to do the Motion or Soundtrack sections I am having trouble sending the files from FCP to these two programs.
    In the File>Send to>Motion it comes up with a dialog box asking what type of project this is that isn't on the DVD tutorial. When I make a choice the program opens but the two clips that I asked to send to Motion are not there. I can not seem to get the two selected clips from FCP to Motion to be able to follow the tutorial.
    With the File>Send to>Soundtrack Pro section whenever I try to give the clip that I am sending a name to save it it come up with a File Unknown error and I can not seem to get past this part.
    Does anyone here know what I am doing wrong with this? Or, has anyone else run into the same situation?
    Thanks for your help.
    MacBook Pro 17"   Mac OS X (10.4.8)  

    New Discussions ResponsesThe new system for discussions asks that after you mark your question as Answered, you take the time to mark any posts that have aided you with the tag and the post that provided your answer with the tag. This not only gives points to the posters, but points anyone searching for answers to similar problems to the proper posts.
    If we use the forums properly they will work well...
    Shane

  • Video Tutorial help

    Please could someone point me to a video tutorial/s for the basics of livetype ?
    thanks in advance
    Peace

    This will help
    http://www.livetypecentral.com/cgi-bin/livetypecentral.cgi/tutorials.html

Maybe you are looking for

  • H:selectOneRadio required true does not work

    Hi, I have a selectOneRadio and it was a required="true" attribute. Some how, it never works. All the other validations in the page work except this one. Any clues?? <h:panelGrid columns="1">      <h:outputText value="Handbook Type " styleClass="outp

  • Mac book pro can detect wifi but not DNS server

    MMy Mac book pro will detect the wifi at school but it won't detect the DNS server meaning that I cannot access the internet! Help!

  • Query variable for InfoObject with texts

    Hello experts, In the BW I have an InfoObject of type NUMC 19 that stores tasks master data and does have texts, we assume that the InfoObject is called Z_TASK. The texts represent the multi lingual task names. I need to build up a query that filters

  • Only half the keyboard works after sleep

    I have a fall 2011 Air running Lion. It has a weird problem: sometimes (maybe 1 out of 10), after waking up from sleeping (closing the case - I haven't tried manually putting it to sleep - only the left hand portion of the keyboard works. At the logi

  • How to delete CR2 files from iPad

    I recently used the camera connection kit to download photos (JPEG and Raw) from my Canon G12 to my iPad.  Since I have gotten home, I have been transferring the photos to iPhoto on my MacBook Pro.  When I try to delete the photos from my iPad, it wi