How to pass an xml CDATA in the string element when OSB call a webservice?

How to pass an xml CDATA in the string element when OSB call a webservice?

I have a business service (biz) this route to exploitation of a Web service.

An example of this legacy Web service request:
< soapenv:Envelope xmlns:soapenv = 'http://schemas.xmlsoap.org/soap/envelope/' xmlns: ex = "example" >
< soapenv:Header / >
< soapenv:Body >
< ex: run >
< ex: arg > <! [CDATA [< searchCustomerByDocumentNumber >
< documentNumber > 12345678909 < / documentNumber >
[[< / searchCustomerByDocumentNumber >]] > < / ex: arg >
< / ex: run >
< / soapenv:Body >
< / soapenv:Envelope >

type ex: arg is a string.

How to pass this structure CDATA webservice in OSB?

Steps to resolve this problem:
1 create an XML schema. For example:


elementFormDefault = "unqualified" >


          
               
                    
                         
                         

                    

                    
                         
                    

               

     

     

     
     

With this XSD, XML can be generating:


documentNumber

2 create an XQuery query to create a ComplexType searchCustomerByDocumentNumber. For example:
(: pragma bea: element global-element-return = "searchCustomerByDocumentNumber" location = "searchCustomerByDocumentNumber.xsd" ::))

declare namespace xf = "http://tempuri.org/NovoSia/CreateSearchCustomerByDocumentNumber/";

declare function xf:CreateSearchCustomerByDocumentNumber($documentNumber_as_xs:string)
as {(searchCustomerByDocumentNumber)}

{$documentNumber}

};

declare the variable $documentNumber as XS: String external;

XF:CreateSearchCustomerByDocumentNumber ($documentNumber)

3. in your step in proxy pipeline add to assign the created the XQuery function call from the number of the document of your payload.
Assign to a variable (for example: called searchCustomerByDocumentNumberRequest)

4. create an another Transformation of XQuery (XQ) to create a request to the existing Web service. For example:
{fn - bea: serialize ($searchCustomerByDocumentNumberRequest)}

For more information about xquery Serialize function:
41.2.6 fn - bea: serialize()
You can use the fn - bea: serialize() function if you need to represent an XML document as a string instead of as an XML element. For example, you can share an XML document through an EJB interface and the EJB method takes the string as an argument. The function has the following signature:

FN - bea: serialize($input as item()) as xs: string

Source: http://docs.oracle.com/cd/E14571_01/doc.1111/e15867/xquery.htm

Tags: Fusion Middleware

Similar Questions

  • How to stop messages that appear on the screen locked when they arrive?

    How to stop messages that appear on the screen locked when they arrive?

    Settings > Notifications > Messages > turn off display on the lock screen. -AJ

  • Using CS4 Flach and action script 2.0 how to move a specific frame in the main timeline when a movie clip instance come at the end of his chronology?

    Using CS4 Flach and action script 2.0 how to move a specific frame in the main timeline when a movie clip instance come at the end of his chronology?

    code on the last frame of your movieclip instance:

    _root.gotoAndStop ('whatever_frame');  will work unless this swf is loaded into another swf.  in this case, you must use a relative path to the main timeline (for example, _parent or _parent._parent etc.).

  • How to insert an XML document to the database table

    Here's one my XML document example I want to import into database

    Example XML Document
    <? XML version = "1.0"? >
    rowset <>
    < ROW >
    < DEPTXML department_id = "10" >
    SALES of < DEPARTMENT_NAME > < / DEPARTMENT_NAME >
    < EMPLIST >
    < EMP_T EMPLOYEE_ID = "30" >
    Scott < LAST_NAME > < / LAST_NAME >
    < / EMP_T >
    < EMP_T EMPLOYEE_ID = "31" >
    Marie < LAST_NAME > < / LAST_NAME >
    < / EMP_T >
    < / EMPLIST >
    < / DEPTXML >
    < / ROW >
    < ROW >
    < DEPTXML department_id = "20" >
    < DEPARTMENT_NAME > ACCOUNTING < / DEPARTMENT_NAME >
    < EMPLIST >
    < EMP_T EMPLOYEE_ID = "40" >
    John < LAST_NAME > < / LAST_NAME >
    < / EMP_T >
    < EMP_T EMPLOYEE_ID = "41" >
    Jerry < LAST_NAME > < / LAST_NAME >
    < / EMP_T >
    < / EMPLIST >
    < / DEPTXML >
    < / ROW >
    < / LINES >
    ********End***********

    Table in which I want to import this file

    hr_new_emp
    (
    department_id number,
    department_name varchar2 (50).
    Number of employe_id
    last_name varchar2 (50)
    )

    If your XML code is in a file, the easiest is to load as a CLOB in the file (google search will give you lots of results to load a file into a CLOB, so I won't detail it here). Once you have it as a CLOB you can fairly easily convert that XMLTYPE for example

      v_xml := XMLTYPE(v_clob);
    

    (assuming that v_xml is declared as XMLTYPE and v_clob is declared as a CLOB)

    Once you have it as an XMLTYPE that is simple to use XMLTABLE to break the XML into its components using SQL...

    SQL> ed
    Wrote file afiedt.buf
    
      1  with t as (select xmltype('
      2  
      3  
      4  
      5  SALES
      6  
      7  
      8  Scott
      9  
     10  
     11  Mary
     12  
     13  
     14  
     15  
     16  
     17  
     18  ACCOUNTING
     19  
     20  
     21  John
     22  
     23  
     24  Jerry
     25  
     26  
     27  
     28  
     29  ') as xml from dual)
     30  --
     31  -- END OF TEST DATA
     32  --
     33  select x.department_id, x.department_name, y.employee_id, y.last_name
     34  from t
     35      ,xmltable('/ROWSET/ROW'
     36                passing t.xml
     37                columns department_id   number       path '/ROW/DEPTXML/@DEPARTMENT_ID'
     38                       ,department_name varchar2(30) path '/ROW/DEPTXML/DEPARTMENT_NAME'
     39                       ,emplist         xmltype      path '/ROW/DEPTXML/EMPLIST'
     40               ) x
     41      ,xmltable('/EMPLIST/EMP_T'
     42                passing x.emplist
     43                columns employee_id     number       path '/EMP_T/@EMPLOYEE_ID'
     44                       ,last_name       varchar2(30) path '/EMP_T/LAST_NAME'
     45*              ) y
    SQL> /
    
    DEPARTMENT_ID DEPARTMENT_NAME                EMPLOYEE_ID LAST_NAME
    ------------- ------------------------------ ----------- ------------------------------
               10 SALES                                   30 Scott
               10 SALES                                   31 Mary
               20 ACCOUNTING                              40 John
               20 ACCOUNTING                              41 Jerry
    

    ... and once you have selected the data as it is quite easy to use an INSERT statement around it to insert data into a table, as in a regular INSERT... Select...

    If you are dealing with large amounts of data or a more complex XML structure, you can consider using an XML schema to shred the data in tables.

    Example here...

    Re: XML processing in oracle file

    And you can also load XML data easily by using the function XDB (WebDAV) to Oracle. Details in the Oracle documentation for that or you could find help in the forum XML DB, which also has a FAQ detailing the different methods how to load XML shred data...

    DB XML FAQ

  • How to pass parameters to Date on the data model

    Hi all
    I try to pass parameters of date on the data model and unable to pull all the data. When I tried hard-coded in the SQL query, it works. Here is the data model, can I pass parameters directly to the dataquery?
    I searched a lot but couldn't find it. Any help is greatly appreciated.

    <? XML version = "1.0" encoding = "WINDOWS-1252"? >
    < name of dataTemplate = "AIMS_VDIS_VALIDATION_REPORT" description = 'Invalid records in the GOALS and for the given date VDIS' version = "1.0" >
    < Parameters >
    < name of the parameter = "p_start_date" dataType = "date" / >
    < name of the parameter = "p_end_date" dataType = "date" / >
    < / Parameter >
    < dataQuery >
    < SQLStatement instance name = "T4" >
    <! [CDATA [SELECT pgw_custom. Account_Validate (acct_new) invalid,
    acct_new,
    DECODE (pgw_custom. Account_Validate (acct_new), 0, 'ACCOUNT OF OBJECTIVES not VALID', 'VALID OBJECTIVES ACCOUNT') message
    Of
    (SELECT DISTINCT SUBSTR (acct, 1, 3) |) JE_CAP | SUBSTR(ACCT,8) acct_new
    Of
    (SELECT the jav.jav_hours hours,
    ACCT GCC.concatenated_segments,
    GCC.code_combination_id ccid,
    $ (bua.hourly_rate * jav.jav_hours);
    CASE WHEN (um.class2 IN (' a ',' B', 'C', d ', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', ',' n, 'O', 'P', 'Q', 'R', 't')) THEN '3201'
    WHEN (um.class2 IN ('Z', "ZA", "ZA1', 'W', 'U', 'V', 'X', 'Y',"ZA2","ZB","ZC","ZD", the from ')) THEN '3301 '."
    END je_cap
    OF pgw_custom.jems_aims_vehicle jav,.
    Apps.mtl_generic_dispositions mg/d,
    Apps.gl_code_combinations_kfv gcc,
    mfour.unit_main@m4prg01 uh,.
    BUA mfour.bill_unit_acct@m4prg01
    WHERE jav.jav_glaccount = mgd.segment1 AND
    MGD.distribution_account = gcc.code_combination_id AND
    JAV.jav_vehicle = um.unit_no AND
    UM.unit_id = bua.unit_id AND
    JAV.jav_project IS NULL AND
    JAV.jav_task IS NULL AND
    JAV.jav_charge_date BETWEEN: p_start_date AND: p_end_date AND
    GCC.detail_posting_allowed = 'Y' AND
    GCC.enabled_flag = 'Y' AND
    NVL (gcc.end_date_active, TO_DATE('31-DEC-4720','DD-MON-YYYY')) > = SYSDATE AND
    SUBSTR (bua.billing_code, 1, 1) = "I" AND
    ((bua.eff_dt < = (SELECT date_fin)))
    OF apps.gl_periods
    WHERE period_name = (SELECT TO_CHAR(:p_end_date,'MON-RRRR') FROM DUAL)) AND
    BUA.end_dt IS NULL)
    OR
    (bua.end_dt >(SELECT start_date)
    OF apps.gl_periods
    WHERE period_name = (SELECT TO_CHAR(:p_end_date,'MON-RRRR') FROM DUAL)))
    ORDER BY valid, acct_new]] >
    < / sqlStatement >
    < / dataQuery >

    < dataStructure >
    < group name = "G_ACCTS" source = "T4" >
    < element name = "VALID" value = "valid" / >
    < element name = "NEW_ACCOUNT" value = "acct_new" / >
    < element name = "MESSAGE" value = "message" / >
    < / Group >
    < / dataStructure >
    < / dataTemplate >

    the parameter name must be

    p_start_date
    p_end_date

    And when the report is run, a value must be selected in the settings. Try this default sysdate.

  • How to get 2 xml (brother) of the tag even time and merge them

    How to get 2 xml(Sibling tag) content at the same time and merge them and find the value of the result in the indesign file with page number

    As

    account <>

    < a > This is a text < /A >

    a-123 < B > < /B >

    < / documents >

    First of all, we need to tag A and B value as:

    It is a text - a-123 and then get this form of text from indesign doc page number

    Help, please

    Try this,

    var root = app.activeDocument.xmlElements[0];
    var aTag = root.evaluateXPathExpression("//Record/A");
    var bTag = root.evaluateXPathExpression("//Record/B");
    for(i=0; i
    

    Vandy

  • How to pass an 'unknown location' then the connection to internet? DIAGS say that there is an intellectual property issue.

    I have a problem with tent to connect to internet. I'm using 7 Ultimate and I continue stuck to "identify the location" when connecting to my wireless router. I have no problem with access to the internet directly when I connect my computer to the server, the router is connected to. It seems that it is a problem of communication between my computer and the router.

    I had internet well this router before but now it seems not work. I tried everything suggested previously, including reinstalling drivers and poking my router using the diag.

    I need major help.

    Hi DucoGranger,

    1. don't you make changes on the computer before this problem?

    2. What antivirus application do you use on the computer?

    If your computer has a wireless network card, Windows will automatically detect the networks wireless in range of your computer. You can see a list of wireless networks that Windows has detected in connect to a network. If Windows doesn't detect a network that you think is in range of your computer, it could be for the following reasons.

    a. your computer's wireless switch is turned off.

    b. your computer is too far from the access point or wireless router.

    c. the access point or wireless router is disabled or is not working properly.

    d. There is interference with other devices.

    e. Windows is not configured to connect to the right type of network.

    f. the router or access point is busy.

    g. the network you're looking for is defined on only broadcasts do not its network name (SSID).

    h. your network administrator is blocking access to certain networks.

    I would suggest trying the following steps and check if it helps.

    Method 1:
    I suggest you try the procedure described in the article and see if it helps.

    How to reset the Protocol Internet (TCP/IP)
    http://support.Microsoft.com/kb/299357

    Method 2:
    If the problem persists, I suggest you try the procedure described in the article and check.

    Solve problems, find wireless networks
    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-problems-finding-wireless-networks

    (This article also applies to Windows 7)

    Method 3:

    Temporarily disable the security software.

    http://Windows.Microsoft.com/en-us/Windows7/disable-antivirus-software

    Note: Antivirus software can help protect your computer against viruses and other security threats. In most cases, you should not disable your antivirus software. If you do not disable temporarily to install other software, you must reactivate as soon as you are finished. If you are connected to the Internet or a network during the time that your antivirus software is disabled, your computer is vulnerable to attacks.

    Check out the link for more information.

    Windows wireless and wired network connection problems
    http://Windows.Microsoft.com/en-us/Windows/help/wired-and-wireless-network-connection-problems-in-Windows

    Back to us for any problem related to Windows. We will be happy to help you.

  • How to pass in HTML format in the compose window

    I have normally compose messages in plain text and sign them digitally. However, on occasion, I would like to include a photo, so I want to switch to HTML format. The only way I found to do this is to change the account setting before inserting a composition window. I'd rather go to HTML for just this message, and do it from the compose window. Have a missed a feature that makes it somewhere?

    Hold down the SHIFT key when you click on write, reply, or forward, and the format of the message will be opposite the one defined in the account settings.

    If HTML is the default, you can change the Format of delivery under Options in the entry window, but you can't do the same thing if the default is plain text.

  • How to parse a comma delimited by the string in BPEL 11.1.1.4

    I have the MyTag element in xml. I get value for MyTag as Eng, [email protected] (separated by commas) in the BPEL workflow.

    I need to parse this string separated by commas in BPEL and extract

    Eng AND [email protected]


    How can I do this in BPEL? What is the process?

    Hello

    If you get the value like Eng, [email protected] and say that tempVariable Eng, [email protected] data. So, here you go...

    substring-after (bpws:getVariableData('tempVariable'), ','), use it in the Expression Builder on the side of the copy operation and that assign to the variable (variable database entry). This will give you [email protected]

    substring-before (bpws:getVariableData('tempVariable'), ','), use it in the Expression Builder on the side of the copy operation and that assign to the variable (variable database entry). This will give you in English

    I hope this helps...

    Thank you
    N

  • Loading the XML file with the missing elements dynamically by ODI

    Hi guys,.

    I have the XML with two nodes Employee and address below. On a daily basis, sometimes the address element might not come from the source xml file, but my interface has columns mapped to the elements of the address, and that is why it may fail because of the source element is not found in the file or data could not get charged because the State 'and' in the sql query that is generated between the employee and address elements.  Is there a way where I can load the data dynamically where I can search in the file only for items (used) present and dynamically loading data only for these items?

    XML file:

    <? XML version = "1.0" encoding = "UTF-8"? >

    < EMP >

    < Empsch >

    < employee >

    < EmployeeID 12345 > < / EmployeeID >

    < original > t < / initials >

    John < name > < / LastName >

    DOE < FirstName > < / name >

    < / employee >

    < address >

    < > 12345 as WorkPhone < / as WorkPhone >

    < WorkAddress > test 234 < / WorkAddress >

    < / address >

    < / Empsch >

    < / EMP >

    Thank you

    Fabien Tambisetty

    I managed to solve it by using left outer joins, and in referring to the structure of the table of the XSD

  • Does anyone know how to reach someone by phone about the first Elements 10 resettlement?

    Does anyone know how to reach a human by phone at Adobe about the first Elements 10 resettlement?

    Thank you!

    https://helpx.adobe.com/photoshop-elements/kb/preference-file-locations-photoshop-elements .html,

    http://www.photokaboom.com/photography/learn/Photoshop_Elements/troubleshooting/1_delete_p references_file.htm

  • How to insert a meta tag in the head element in the topic htm files?

    (I use RoboHelp 9, but also tried to RoboHelp 11 with exactly the same results).

    Our application requires the WebBrowser control to run in IE9 compatibility mode. This means that when launching Help (chm), the Help Viewer will also use IE9 compatibility mode, as it runs in the same process. As Chm files are intended to be read in IE7 compatibility mode, this causes issues with the layout of the help topic.  We found that, to solve this problem, each topic needs the following meta tag in the head element:

    < meta http-equiv = "X-UA-Compatible" content = "IE = EmulateIE7" / >

    Our help system consists of thousands of files htm/subject, of course, we can not do it manually. In order to have it inserted automatically, so I need to edit the parent file that generates the theme files. I tried to find this file, but no luck. Does anyone know how to do this?

    Willam are not available right now, but I can offer another method. Find a tag that may be in all your subjects and use it as a find.

    Replace with your label followed

    First backup.

    See www.grainge.org for creating tips and RoboHelp

    @petergrainge

  • Binding XML schema to the repetitive elements - what am I doing wrong?

    I managed to successfully link a schema to a form of basic and apart from a few problems of active player, it works as expected.

    My next project is to do the same thing but with a form that contains repeating subforms.

    I wrote my diagram and validated and everything seems fine.  When I connect it to shape if it makes certain fields behave in strange ways.

    The form consists of three sections.  The first is a unique subform to repeat fields.  Two of the pieces is a table with the repetition of lines, and the third part is a collection of fields with the Add/Remove button using the instance manager script.

    When I bind these fields and add lines, I get strange results.  In the second part by pressing the Add button copies the entire line rather than create a new one.  Changing the value of a line of others change.

    In the third part, I can create entirely new subforms by using the Add button, but the this.parent.index + 1; script stops working.

    Anyone know why this is happening and how can I solve it?

    The pattern is below:

    < xsd: element name = "RemoteWorking" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "PartZero" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "RequireAddHardWare" / >
    < xsd: element name = "RequireRemoteWork" / >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >

    < xsd: element name = "PartOne" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "Name" / >
    < xsd: element name = "FirstName" / >
    < xsd: element name = "User name" / >
    < xsd: element name = "JobTitle" / >
    < xsd: element name = "Role" / >
    < xsd: element name = "LineManager" / >
    < xsd: element name = "Direction" / >
    < xsd: element name = "PersonnelCategory" / >
    < xsd: element name = "CONumber" / >
    < xsd: element name = "TelephoneNumber" / >
    < xsd: element name = "BuildingCode" / >
    < xsd: element name = "NuméroBureau" / >
    < xsd: element name = "WorkingHours" / >
    < xsd: element name = "AltContact" / >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >

    < xsd: element name = "PartTwo" maxOccurs = "unbounded" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "AdditionalHardware" maxOccurs = "unbounded" / >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >

    < xsd: element name = "PartThree" maxOccurs = "unbounded" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "ARTICLEREQUIS" / >
    < xsd: element name = "Program" / >
    < xsd: element name = "CostCentre" / >
    < xsd: element name = "BusinessCase" / >
    < xsd: element name = "Device" / >
    < / xsd: SEQUENCE >
    < xsd: attribute name = "ItemNo" type = "xsd: Integer" use = "required" / >
    < / xsd: complexType >
    < / xsd: element >

    < xsd: element name = "PartFour" >
    < xsd: complexType >
    < xsd: SEQUENCE >
    < xsd: element name = "Unit" / >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >
    < / xsd: SEQUENCE >
    < / xsd: complexType >
    < / xsd: element >
    < / xsd: Schema >

    The binding expressions must indicate that you have more than one section of PartTwo. To do this you need to add a [*] binding expressions that use the PartTwo node. If you want to keep just bind the subform that contains the information of PartTwo th to the PartTwo node, and then add the [*] at the end of the expression. Then al children of this node will get expressions such as $. Name of the node to which it refers.

    Hope that helps

    Paul

  • How to get a paragraph that contains the string selected in FDK?

    Hello

    I am writing a program that extracts content of the paragraph that contains a selection string. This program runs in the interaction point menu. When the user click on the menu item. The process as follows:
    1. find a chain on a document, for example: F_ApiFind ("ABC").
    2. the F_ApiFind ("ABC") API returns the F_TextRangeT structure.
    3. the string "ABC" has been highlighted on the document.

    Here's my question:
    How can I write code to locate an object ID paragraph (pgfId) that contains the string (or object) 'ABC '?.
    As the 'ABC' object belongs to the current paragraph, how can I get section ID (pgfId) and then get the content of the entire paragraph
    without a loop through FP_FirstFlowInDoc, FP_FirstTextFrameInFlow, FP_FirstPgf and FP_NextPgfInFlow.

    Thank you very much for you help,

    Thai Nguyen

    Hi thai,

    Paragraph ID is returned as part of the structure of F_TextRangeT, as the Member "objId". Let's say you have:

    F_TextRangeT tr;

    ... then:

    TR = F_ApiFind (...);

    On an action to search with success, "tr" will contain the pgfId of the paragraph. I'm assuming you're looking for a string that is entirely contained in a paragraph, in which case two ways contains the ID of the paragraph:

    tr.beg.objId

    TR.end objId

    If you want to retrieve all the text in the paragraph after the search, you could do something like: (attention, incomplete code!)

    F_TextItemsT ti;

    F_TextRangeT tr;

    F_ObjHandleT docId.

    ...

    TR = F_ApiFind (...);

    TR. Beg.offset = 0;

    TR.end.Offset = FV_OBJ_END_OFFSET;

    TI = F_ApiGetTextForRange (docId, & b, FTI_String);

    .. After that the text of the paragraph will be included in the ti TextItems structure. Navigate through this structure can be difficult and I will renounce any discussion about it for now unless you need more help. There is good information in the developer reference as to its use.

    Russ

  • How to assign a value of the element from page to main page in the column element when Cre

    I have a form build on table T1. The T1 has a primary key defined (T1PK) and four other columns (C1 - C4). I have a form in this table. This form accepts the values of C1 to C4 and displayis an extra point, is not based on columns of T1 - P1_DUMMY. The form for T1PK element has the value "hidden and protected.
    When creating the form, I wanted that the value of the primary key (T1PK) will be obtained through existing trigger. I want to use the value stored in the page called "P1_DUMMY" for P1_T1PK.

    No matter what I do, I always get this error when I hit the button 'CREATE' on the page of the form:

    ORA-01400: cannot insert NULL into ('DEV'. "" T1 ". ("' T1PK")

    The Create button is a condition not to show if the the P1_T1PK page element is NULL. I created page rendering process, the process of transformation of page like this bock of PL/SQL:

    : P1_T1PK: =: P1_DUMMY

    But I still get ORA-01400. The form has the P1_DUMMY as display only, not not to store the State, so I can see that the P1_DUMMY element has the value I want (2).

    How to assign the value stored in P1_DUMMY in P1_T1PK when I click on the button CREATE on this form?

    Thank you for your time.

    Daniel

    Hello
    The belief question is the way in which the calculation is being defined. You are not using the &. rating (dot ampersand) in PL/SQL and SQL.

    Try this.

    1 define the calculation on P1_T1PK of Type calculation of value of the element
    2. on the next page to load textarea, enter P1_DUMMY. No. colon or &
    3. give appropriate conditions

    Kind regards

Maybe you are looking for

  • iOS 10 no locked out the flashlight and timer on screen

    In the previous version, I could pull up to the bottom of the screen locked and the timer and the flashlight were some of my options, as well as the brightness and change setting, if you're going on a plane.  I don't see how more intuitively.  The gr

  • Mac Plus spec battery?

    I would try and throw some old Mac advantages. Some had removed batteries. I would try to get my hands on a couple of good batteries, but I'm not sure of the specification other than alkaline batteries, 4.5V. Can someone help me? The size, the diamet

  • Connect with Apple

    I want to contact the company apple of Pentecost, but my country had no apple store What to do! ??? Apple have mail address? please me hellp

  • Apple music search is more to come

    Hello I have the trial version of the apple's music. Does not stop until 2/13. Until a couple of days I could find 'any apple music' and all my search would leap upward. Now, I'm looking for the same artist and nothing shows. I use the iPhone 6 more

  • Z10 SavingText Messages BlackBerry

    Is it possible to record text messages (I don't mean to BBM, just normal text messages) in a file iin order to print or at least save on a computer for printing?