Ipod as hard disk - Why am I not able to see the whole file?

I'm using my 80 gig 5th gen ipod as a hard disk for the first time. I've dragged a 32 KB text file to the ipod. When I scroll though the file all is great...but I'm not able to see the whole file? It's like I get one page and that's all. Any ideas to help me?

Do you mean the Notes function? If so, the file size per note is, I believe, 4k. Therefore, you'd need to break up a 32k file into several parts or it will be truncated.

Similar Messages

  • HT1918 why i am not able to see the none option in the payment link?

    why i am not able to see the none option in the payment link?

    Did you create a new account using an email address not used with Apple before?
    Maybe your county does not allow a None.
    I am in the US and created a None account using those instructions.

  • Not able to see the TPZ files

    Hi,
    Please help.
    I am facing a problem while transporting a request to Production environment. I am using File Level Transport. When I create a transport file, it is successfully created in development system's /export location. Basis team moves the file production system's /import directory.
    But here I am not able to see the imported  tpzfile via Tool->import design objects , in Production environment.

    Hi,
    Please find below from sap help.
    After a successful import, the Integration Builder moves the imported TPZ files into the directory <systemDir>/xi/repository_server/importedFiles. The support package stack of imported software component versions is displayed on the Details tab page for the relevant software component version in the Integration Builder. If an error occurs, this information is important for support. Take one of the following precautions to retain the overview of the imported XI content:
    ●      If the release and the support package stack are clear from the file name of the TPZ file, simply leave the files in the directory importedFiles (see above).
    If a file with the same file name already exists in the directory importedFiles, the Integration Builder adds the date and time of the import to the file name of the imported export file. This enables you to check which file was imported last.
    ●      After a successful import, you can keep the packed files, from whose naming convention you can derive the support package stack. Move them into the directory importedFiles, for example.
    If version conflicts occur during the import, you can process and resolve them in the Enterprise Services Builder. In the case of corrupt export objects, you can force the import and skip objects that cannot be imported. The import is then incomplete and references to objects that are not imported are lost.
    Regards,
    Venkata S Pagolu

  • I am not able to see the trace files for SQL query

    Hello, I am using windows vista OS.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE 10.2.0.3.0 Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    SQL>
    I enabled the trace as below
    alter system set timed_statistics=TRUE
    alter system set sql_trace=TRUE
    After this, I ran sql query from scott as below.
    select count(*) from emp;
    After this, i checked in user dump directory. The trace files are generating... But this sql code is not appearing in the trace files...
    Am i missing anything... Any help is appreciated.
    Thanks

    This may happen when the trace file is not completely closed.You may try again doing like this,
    alter session set sql_trace=true;
    select * from emp;
    alter session set sql_trace=false;After this,disconnect and exit from your session as well. This should close the file completely and you should be able to see your command in it.
    HTH
    Aman....

  • Why am i not able to see the exception message?

    i wrote an 'instead of insert' trigger on a view.
    and there are some exception situations in which the insertion should be stopped. my trigger works correctly. i mean it implements its purpose. however, the message i am taking after the trigger execution is not satisfying. ( i am using iSQL*Plus as the editor.)
    here is my trigger: (after trigger there is some extra explanation below.)
    CREATE OR REPLACE TRIGGER DemandOfCourses_T1_II
    INSTEAD OF INSERT ON DemandOfCourses
    REFERENCING NEW AS NEW OLD AS OLD
    FOR EACH ROW
    DECLARE
         cpc NUMBER;
         currentNum NUMBER;
    stud1 NUMBER;
         stud2 NUMBER;
         prec     NUMBER;
    exc1 EXCEPTION;
    exc2 EXCEPTION;
    BEGIN
         SELECT capacity
         INTO cpc
         FROM LimitedCourse
         WHERE course = :NEW.course;
         IF cpc IS NULL THEN
              cpc := 1000;
         END IF;
         SELECT COUNT(course)
    INTO currentNum
    FROM Registered
    WHERE course = :NEW.course;
         SELECT COUNT(student)
         INTO stud1
         FROM Registered
         WHERE student = :NEW.student
         AND course = :NEW.course;
         SELECT COUNT(student)
         INTO stud2
         FROM WaitingFor
         WHERE student = :NEW.student
         AND course = :NEW.course;
         SELECT COUNT(hp.preCourse)
         INTO prec
         FROM HasPrereq hp
         WHERE hp.course = :NEW.course
         AND hp.preCourse NOT IN (SELECT course FROM CourseResult WHERE student = :NEW.student);
         IF (prec = 0) THEN
         IF (stud1 = 0) AND (stud2 = 0) THEN
         IF (currentNum = cpc) THEN
              INSERT INTO WaitingFor
              VALUES (:NEW.student, :NEW.course, SYSDATE);
         ELSE
              INSERT INTO Registered
              VALUES (:NEW.student, :NEW.course);
         END IF;
         ELSE
         RAISE exc1;
         END IF;
         ELSE
         RAISE exc2;
         END IF;
         EXCEPTION
         WHEN exc1 THEN
              RAISE_APPLICATION_ERROR (-20002, 'Already registered for this course.');
         WHEN exc2 THEN
              RAISE_APPLICATION_ERROR (-20003, 'First the prerequesite course(s) must be taken.');
         WHEN NO_DATA_FOUND THEN
              NULL;
    END;
    for eample, if i want to insert the row below:
    INSERT INTO DemandOfCourses VALUES (100005, 'BAK127', 'REGISTERED');
    -- 100005 : STUDENT ID
    -- BAK127 : COURSE CODE
    -- REGISTERED : SITUATION
    when i run this insert comment, i receive this result:
    1 row created.
    Actually, it should not insert anything. and it is not inserting anything. i mean, it is working correctly. however, i want it to write my exception message: "-20003, 'First the prerequesite course(s) must be taken.'"
    why cannot i see my expected exception message?
    all the data and structure is certainly true. if you have a question about them, i can answer.
    by the way, i will catch this exception from my java code. what should i do in this situation?
    any help will be appreciated.
    regards

    Hi,
    i don't understand your logic.
    See, I added output to trace the counters value :
    SQL> drop table courses cascade constraints;
    Table dropped.
    SQL> CREATE TABLE Courses (
      2  code VARCHAR2(15),
      3  name VARCHAR2(40) NOT NULL,
      4  credit NUMBER(2) CHECK (credit BETWEEN 1 AND 20),
      5  PRIMARY KEY (code)
      6  );
    Table created.
    SQL>
    SQL> drop table LimitedCourse;
    Table dropped.
    SQL> CREATE TABLE LimitedCourse (
      2  course VARCHAR2(15),
      3  capacity NUMBER(3) NOT NULL,
      4  PRIMARY KEY (course),
      5  FOREIGN KEY (course) REFERENCES Courses(code)
      6  );
    Table created.
    SQL>
    SQL> drop table Registered;
    Table dropped.
    SQL> CREATE TABLE Registered (
      2  student NUMBER(6),
      3  course VARCHAR2(15),
      4  PRIMARY KEY (student, course),
      5  --FOREIGN KEY (student) REFERENCES Students(studentID),
      6  FOREIGN KEY (course) REFERENCES Courses(code)
      7  );
    Table created.
    SQL>
    SQL> drop table WaitingFor;
    Table dropped.
    SQL> CREATE TABLE WaitingFor (
      2  student NUMBER(6),
      3  course VARCHAR2(15),
      4  regisDate TIMESTAMP NOT NULL,
      5  PRIMARY KEY (student, course),
      6  --FOREIGN KEY (student) REFERENCES Students(studentID),
      7  FOREIGN KEY (course) REFERENCES Courses(code)
      8  );
    Table created.
    SQL>
    SQL> drop table HasPrereq ;
    Table dropped.
    SQL> CREATE TABLE HasPrereq (
      2  course VARCHAR2(15),
      3  preCourse VARCHAR2(15),
      4  PRIMARY KEY (course, preCourse),
      5  FOREIGN KEY (course) REFERENCES Courses(code),
      6  FOREIGN KEY (preCourse) REFERENCES Courses(code)
      7  );
    Table created.
    SQL>
    SQL>
    SQL> drop table CourseResult;
    Table dropped.
    SQL> CREATE TABLE CourseResult (
      2  student NUMBER(6),
      3  course VARCHAR2(15));
    Table created.
    SQL>
    SQL> CREATE OR REPLACE VIEW DemandOfCourses (student, course, situation) AS
      2  (SELECT student, course, 'REGISTERED' FROM Registered)
      3  UNION
      4  (SELECT student, course, 'WAITING' FROM WaitingFor);
    View created.
    SQL>
    SQL> INSERT INTO Courses VALUES ('EDA242', 'MATHEMATICS 1', 5);
    1 row created.
    SQL>
    SQL> INSERT INTO LimitedCourse VALUES ('EDA242', 15);
    1 row created.
    SQL>
    SQL>
    SQL> CREATE OR REPLACE TRIGGER DemandOfCourses_T1_II
      2  INSTEAD OF INSERT ON DemandOfCourses
      3  REFERENCING NEW AS NEW OLD AS OLD
      4  FOR EACH ROW
      5  DECLARE
      6   cpc NUMBER;
      7   currentNum NUMBER;
      8   stud1 NUMBER;
      9   stud2 NUMBER;
    10   prec NUMBER;
    11   exc1 EXCEPTION;
    12   exc2 EXCEPTION;
    13 
    14  BEGIN
    15 
    16  SELECT capacity
    17  INTO cpc
    18  FROM LimitedCourse
    19  WHERE course = :NEW.course;
    20  dbms_output.put_line('cpc '||cpc);
    21 
    22  IF cpc IS NULL THEN
    23   cpc := 1000;
    24  END IF;
    25 
    26 
    27  SELECT COUNT(*)
    28  INTO currentNum
    29  FROM Registered
    30  WHERE course = :NEW.course;
    31  dbms_output.put_line('currentNum '||currentNum);
    32 
    33  SELECT COUNT(*)
    34  INTO stud1
    35  FROM Registered
    36  WHERE student = :NEW.student
    37  AND course = :NEW.course;
    38  dbms_output.put_line('stud1 '||stud1);
    39 
    40  SELECT COUNT(*)
    41  INTO stud2
    42  FROM WaitingFor
    43  WHERE student = :NEW.student
    44  AND course = :NEW.course;
    45  dbms_output.put_line('stud2 '||stud2);
    46 
    47 
    48  SELECT COUNT(*)
    49  INTO prec
    50  FROM HasPrereq hp
    51  WHERE hp.course = :NEW.course
    52  AND hp.preCourse NOT IN (SELECT course FROM CourseResult WHERE student = :NEW.student);
    53  dbms_output.put_line('prec '||prec);
    54 
    55 
    56  IF (prec = 0) THEN
    57   IF (stud1 = 0) AND (stud2 = 0) THEN
    58    IF (currentNum = cpc) THEN
    59     dbms_output.put_line('IF_1');
    60     INSERT INTO WaitingFor
    61     VALUES (:NEW.student, :NEW.course, SYSTIMESTAMP);
    62    ELSE
    63     dbms_output.put_line('ELSE_1');
    64     INSERT INTO Registered
    65     VALUES (:NEW.student, :NEW.course);
    66    END IF;
    67   ELSE
    68    dbms_output.put_line('ELSE_2');
    69    RAISE exc1;
    70   END IF;
    71  ELSE
    72   dbms_output.put_line('ELSE_3');
    73   RAISE exc2;
    74  END IF;
    75 
    76  EXCEPTION
    77  WHEN exc1 THEN RAISE_APPLICATION_ERROR (-20002, 'Already registered for this course.');
    78  WHEN exc2 THEN RAISE_APPLICATION_ERROR (-20003, 'First the prerequesite course(s) must be taken
    79  WHEN NO_DATA_FOUND THEN dbms_output.put_line('NO_DATA_FOUND');
    80  END;
    81  /
    Trigger created.
    SQL>
    SQL> INSERT INTO DemandOfCourses VALUES (100005, 'EDA242', 'REGISTERED');
    cpc 15
    currentNum 0 --here all count are 0, also you insert...
    stud1 0
    stud2 0
    prec 0
    ELSE_1
    1 row created.
    SQL> INSERT INTO DemandOfCourses VALUES (100005, 'EDA242', 'REGISTERED');
    INSERT INTO DemandOfCourses VALUES (100005, 'EDA242', 'REGISTERED')
    ERROR at line 1:
    ORA-20002: Already registered for this course. --For the second time, you have your excetion...
    ORA-06512: at "SCOTT.DEMANDOFCOURSES_T1_II", line 73
    ORA-04088: error during execution of trigger 'SCOTT.DEMANDOFCOURSES_T1_II'
    SQL> Nicolas.

  • I am not able to see the valeus in the report on multiprovider.

    Hi Gurus,
    I have loaded an infoobject Document currency0DOC_CURRCY into DSO and assigned a constant "USD" to it and I am able to see that value in DSO through the display data.
    Later I moved the DSO into multiprovider by loading the 0DOC_CURRCY in to multiprovider and wrote a query on it.
    But I am not able to see the values for 0DOC_CURRCY in the report.
    Why I am not able to see the valeus in the report which is executing on the multiprovider.
    PLs help me with a solution.

    Hi,
    First step is to checck the data in the ODS.
    Second is, You use Identify Characteristics and Select Key Figures to make InfoObject assignments between MultiProviders and InfoProviders.
    If this is checked you 70 % of the job is Over in your creating multiprovider.
    For more information
    http://help.sap.com/saphelp_sm40/helpdata/en/cf/bc734190ba137de10000000a155106/content.htms
    santosh

  • How to view .shtml files locally? I have added "Open in Browser" but still not able to see the local .shtml file.

    I have added Open in browser add ons in Firefox browser, but still not able to see the .shtml files on local machine.
    Can any one please tell me how to view .shtml files in Firefox?

    SHTML files are regular HTML files that make use of Server-Side Includes. In some server configurations, the special file extension is required to instruct the server to parse the file for SSI code.
    If Firefox doesn't recognize the file type, it is likely the MIME type is incorrect.
    Try this Addons
    *https://addons.mozilla.org/en-US/firefox/addon/open-in-browser/

  • TS4009 storage upgrade to iPod appears to be activated, but still not able to 'use' the extra capacity.  Device will not allow extra downloads..?

    storage upgrade to iPod appears to be activated, but still not able to 'use' the extra capacity.  Device will not allow extra downloads..?

    Welcome to the Apple Community.
    Purchasing additional iCloud storage will not give you additional storage on your device.

  • HT201364 why am I not able to download the mavericks system... I just bought my computer right now.

    Why am I not able to download the mavericks system? I just bought my computer right now.

    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273
    Call AppleCare.
    Best.

  • Why am i not able to see images on some web sites, using safari 5.1.7. I have enabled the tab to display images.

    Does anyone know why I am not able to see images on some web sites using safari 5.1.7?
    I have enabled the apperance tab to display images.

    Safari 5.0.1 or later: Slow or partial webpage loading, or webpage cannot be found

  • Why I am not able to see upgrade to windows 10 app in Aspire V3 572g ?

    My system is up to date with all updates in windows 8.1. Why I am not able to see windows 10 upgrade app?

    Grab windows 10 from here:https://www.microsoft.com/en-us/software-download/windows10

  • Why users are not able to see certain printers even though they are in the Airgroup server table

    Q: Why users are not able to see only certain printers even though they are in the Airgroup server table ?
    A: In certain scenarios  we may notice  printers come up under the server /cache entries on the controller.
    However when an airgroup user does search for printer, they may not see all the printers, certain printers may be not visible .
    This is because the service IDs sent by the user in the MDNS query are not broadcast by these printers 
    In the below capture the Ipad sends query for service id "_universal_sub_ipp_tcplocal" and "_universal_sub_ipps_tcplocal" and hence the controller will 
    respond with the printers that broadcasts these service ids.
    Non–Visible printer : 
    _printer._tcp.local                                                              PTR                         IN     7200  10.125.30.223  5820.05  Wed Mar 18 13:24:26 2015
    _pdl-datastream._tcp.local                                               PTR                         IN     7200  10.125.30.223  6112.25  Wed Mar 18 13:24:26 2015
    _ipp._tcp.local                                                                     PTR                         IN     7200  10.125.30.223  5888.15  Wed Mar 18 13:24:26 2015
    _http._tcp.local                                                                    PTR                         IN     7200  10.125.30.223  6293.88  Wed Mar 18 13:24:26 2015
    NPIED487E.local                                                                  A                             IN     240   10.125.30.223  194.43   Wed Mar 18 13:24:26 2015
    hp LaserJet 4250 [ED487E]._printer._tcp.local                     SRV/NBSTAT                  IN     240   10.125.30.223  209.87   Wed Mar 18 13:24:26 2015
    hp LaserJet 4250 [ED487E]._printer._tcp.local                     TXT                         IN     240   10.125.30.223  205.14   Wed Mar 18 13:24:26 2015
    hp LaserJet 4250 [ED487E]._printer._tcp.local                     TXT                         IN     240   10.125.30.223  197.18   Wed Mar 18 13:24:26 2015
    hp LaserJet 4250 [ED487E]._printer._tcp.local                     TXT                         IN     240   10.125.30.223  196.42   Wed Mar 18 13:24:26 2015
    hp LaserJet 4250 [ED487E]._printer._tcp.local                     TXT                         IN     240   10.125.30.223  208.15   Wed Mar 18 13:24:26 2015
    hp LaserJet 4250 [ED487E]._pdl-datastream._tcp.local              SRV/NBSTAT                  IN     240   10.125.30.223  207.35   Wed Mar 18 13:24:26 2015
    hp LaserJet 4250 [ED487E]._pdl-datastream._tcp.local              TXT                         IN     240   10.125.30.223  200.64   Wed Mar 18 13:24:26 2015
    hp LaserJet 4250 [ED487E]._ipp._tcp.local                         SRV/NBSTAT                  IN     240   10.125.30.223  209.44   Wed Mar 18 13:24:26 2015
    Visible-printer :
    _printer._tcp.local                                                                         PTR         IN     4500  10.125.26.29   3745.82  Wed Mar 18 13:24:51 2015
    _universal._sub._ipp._tcp.local                                                PTR         IN     4500  10.125.26.29   3694.14  Wed Mar 18 13:24:51 2015
    _ipp._tcp.local                                                                                PTR         IN     4500  10.125.26.29   3628.81  Wed Mar 18 13:24:51 2015
    _pdl-datastream._tcp.local                                                          PTR         IN     4500  10.125.26.29   3616.14  Wed Mar 18 13:24:51 2015
    _http._tcp.local                                                                              PTR         IN     4500  10.125.26.29   3793.56  Wed Mar 18 13:24:51 2015
    XRX9C934E25C52D.local                                                                A           IN     120   10.125.26.29   355.03   Wed Mar 18 13:24:51 2015
    Xerox WorkCentre 3615 (25:C5:2D)._printer._tcp.local         SRV/NBSTAT  IN     120   10.125.26.29   130.45   Wed Mar 18 13:24:51 2015
    Xerox WorkCentre 3615 (25:C5:2D)._printer._tcp.local         TXT         IN     4500  10.125.26.29   3670.33  Wed Mar 18 13:24:51 2015
    Xerox WorkCentre 3615 (25:C5:2D)._ipp._tcp.local             SRV/NBSTAT  IN     120   10.125.26.29   389.55   Wed Mar 18 13:24:51 2015
    Xerox WorkCentre 3615 (25:C5:2D)._ipp._tcp.local             TXT         IN     4500  10.125.26.29   3640.60  Wed Mar 18 13:24:51 2015
    Xerox WorkCentre 3615 (25:C5:2D)._pdl-datastream._tcp.local  SRV/NBSTAT  IN     120   10.125.26.29   210.97   Wed Mar 18 13:24:51 2015
    In order to learn other printers we may need to use specific app provided by printer vendor on the client or configure the printers to send these service IDs.

    The net 451 issues made it not work after a while but it affected the entire RWW site not just remote access:
    http://blogs.technet.com/b/sbs/archive/2014/01/13/troubleshooting-an-unexpected-error-occurred-message-when-using-remote-web-access-to-connect-to-computers.aspx
    Careful if you try and uninstall it, you'll need to put back net 4.0 and reconfigure some stuff.
    Did it ever work?  
    Make sure the users have installed the certificate they need and turn on compatibility mode in IE (also make sure IE isn't locked down and disabling activeX).:
    https://technet.microsoft.com/en-us/library/dd701173%28v=ws.10%29.aspx?f=255&MSPPError=-2147217396
    -- Al

  • I am not able to see the new drive

    I have a Sun Blade 2500 with SUN 5.9 OS installed.I have on hard disk drive in it and now i attached another drive in this system but i am not able to see the new drive when i run the below command
    bash-2.05# echo | format
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
    0. c0t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@4/sd@0,0
    Specify disk (enter its number): Specify disk (enter its number):
    ==============================================
    Although i can see two drives in the output of below command:
    bash-2.05# iostat -E |grep Size
    Size: 73.40GB <73400057856 bytes>
    Size: 73.40GB <73400057856 bytes>
    Size: 0.00GB <0 bytes>
    Edited by: 842294 on Apr 6, 2011 4:40 AM

    Resolved
    bash-2.05# cfgadm -c configure c0
    bash-2.05# echo | format
    Searching for disks...done
    AVAILABLE DISK SELECTIONS:
    0. c0t0d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@4/sd@0,0
    1. c0t1d0 <SUN72G cyl 14087 alt 2 hd 24 sec 424>
    /pci@1d,700000/scsi@4/sd@1,0
    Specify disk (enter its number): Specify disk (enter its number):

  • BI Publisher: not able to see the xml data after creating a data model

    I am learning BI publisher and trying to create a report data model
    I created a new data model from the report tab, use query builder, able to see the results. Then i save it and try to launch XML view from clicking View .
    I am getting unexpected exception, not able to see the XML view .
    in the server console i got servlet exception, here is one of the line
    com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303
    Edited by: joysaha123 on Mar 17, 2010 6:07 PM

    Hi karthik
    Thanks for your response
    Actually iam a beginner in java coding hence struggling to come up with the things
    I tried putting your code and onserver side i see it is returning 09:12:17,234 INFO [STDOUT] [root: null]
    actually the same program i wrote in java
    and the same method i was calling from the main
    and it is working fine and the xml document is getting displayed one important thing to be noted here is that the factory.newDocumentBuilder().parse(new File(filename));is returing XmlDocument
    and the printing takes place
    but the in same method public static Document parseXMLFile(String filename, boolean b) in servlet
    the line factory.newDocumentBuilder().parse(new File(filename)); is returning DeferredDocumentImpl
    and this creating problem , had it returned XmlDocument
    i would have printed the elements one one
    but as it is returning deferredimpl
    iam unable to print the elements
    could you please tell me why factory.newDocumentBuilder().parse(new File(filename)); is returning DeferredDocumentImpl
    in servlets but in plain java pogram it is returing XmlDocument
    Thanks
    Bhanu

  • Not able to read the wsdl file from server Premature EOF encounter

    Hi All,
    I am facing issue while accessing a web Service from server. Here is the clear view about it.
    I created a simple SyncBpel process in a composite and deployed in to the server and it is working fine. Later i created a new Asyn bpel process in a composite and in the external reference i dragged a web Service and imported the wsdl url from server of the SyncBpel and wired the Asynbpel process to webserive .
    Now here i am facing peculiar behavior which i am not able to trace it out.
    1) For the first time when i import the url of syncBpel from the server i am not facing any error and it is working fine as expected but when i close the Jdeveloper and open it i am not able to user the web Service and it is saying as "Not able to read the wsdl file from server Premature EOF encounter"
    2)When i close and open the Jdeveloper i can see the url of the wsdl which imported in webserver is changing from http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel/bpelsync_client_ep?WSDL to http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel/BPELsync.wsdl
    3)when I open and see the url http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel/bpelsync_client_ep?WSDL I can see the soap address as *<soap:address location="http://stcfmw03.satyam.com:8021/soa-infra/services/Tarak/synchronousBpel!1.0*soa_5cfb8416-c106-40a2-a53b-9054bbe04b9c/bpelsync_client_ep"/>*
    I don’t understand why the soap end contains “*soa_5cfb8416-c106-40a2-a53b-9054bbe04b9c” and this kind of url for soap address is coming to all the bpel process which I am deploying in the server.
    I checked the in Jdeveloper where webproxy is uncheck and the server is also up but still I am facing issue of reading the error.
    Can someone please help in resolving the issue.
    I am using SOA 11g 11.1.1.5 and Jdeveloper 11.1.1.5
    Many thanks.
    Tarak
    Edited by: user11896572 on Jan 17, 2012 5:22 PM

    Hi,
    Setting default from the jdeveloper -
    During composite deployment from Jdeveloper (wizard driven), you will be given an option to choose the version of the composite and there will also be an option for you to choose if the composite needs to be deployed as default.
    Setting default from the em console -
    After deploying a composite, login to the em console and click on the composite that you want to set as default, and you will find a tab - "Set as Default". please note that this tab will not be seen, if the composite is already set as default.
    Refer -
    http://docs.oracle.com/cd/E12839_01/integration.1111/e10226/soacompapp_mang.htm
    8.2 Managing the State of Deployed SOA Composite Applications
    Thanks

Maybe you are looking for