Intermedia/XML Support...PLEASE ORANET

Is there someone out there who can provide some real world examples of performing this simple task....
I have an XML document, I want to feed it into 8i and search by content using the tags...
Remember my XML document has over 100 tags,
do I have to sit their and do an ADD_FIELD_SECTION for every tag....If not, where is this documented...
Thanks for helping us Dummies....

What follows is the content of the aforementioned demo file.
It sets up the tables, types, and object views for the XSQL Insurance Claim Demo (that you try try live on our OTN demo site at http://technet.oracle.com/tech/xml/demo/demo1.htm )
The intermedia-related part starts at the line that reads: ctx_ddl.drop_preference()
In this example, an insurance claim
has a "DamageReport" which is an
XML Document fragment. The intermedia
stuff at the end shows how to
setup an XML searching index on
the <CAUSE> and <MOTIVE> tags in
this "DamageReport" document fragment.
Hope this helps.
set scan off
set echo on
set termout on
REM
REM $Author: smuench $
REM $Date: 1999/11/27 14:48:10 $
REM $Source: C:\\cvsroot/xsql/src/demo/insclaim.sql,v $
REM $Revision: 1.3 $
REM
drop synonym claim;
drop table settlement_payments;
drop view insurance_claim_view;
drop table insurance_claim;
drop view policy_view;
drop table policy;
drop view policyholder_view;
drop table policyholder;
drop type insurance_claim_t;
drop type settlements_t;
drop type payment;
drop type policy_t;
drop type policyholder_t;
drop type address_t;
create type address_t as object( Street varchar2(80), City Varchar2(80), State VARCHAR2(80),
Zip NUMBER );
create type policyholder_t as object( CustomerId number,
FirstName varchar2(80),
LastName varchar2(80),
HomeAddress address_t);
create type policy_t as object(
policyID number,
primaryinsured policyholder_t);
create type payment as object(
PayDate DATE,
Amount NUMBER,
Approver VARCHAR2(8));
create type settlements_t as table of payment;
create type insurance_claim_t as object (
claimid number,
filed date,
claimpolicy policy_t,
settlements settlements_t,
damageReport varchar2(4000) /* XML */
create table policyholder( CustomerId number,
FirstName varchar2(80),
LastName varchar2(80),
HomeAddress address_t,
constraint policyholder_pk primary key (customerid) );
insert into policyholder values ( 1044, 'Paul','Astoria',
ADDRESS_T('123 Cherry Lane','SF','CA','94132'));
insert into policyholder values ( 1045, 'Martina','Boyle',
ADDRESS_T('55 Belden Place','SF','CA','94102'));
create or replace force view policyholder_view of policyholder_t
with object OID (customerid)
as select customerid, firstname, lastname, homeaddress
from policyholder;
create table policy(
policyid number,
primarycustomerid number,
constraint policy_pk primary key (policyid),
constraint customer_fk foreign key (primarycustomerid) references policyholder
insert into policy values ( 8895, 1044 );
insert into policy values ( 9054, 1045 );
create or replace force view policy_view of policy_t
with object OID (policyid)
as select p.policyid,
(SELECT value(phv)
from policyholder_view phv
WHERE phv.customerid = p.primarycustomerid) as primaryinsured
from policy p;
create table insurance_claim(
claimid number,
filed date,
claimpolicy number,
damageReport varchar2(4000) /* XML */,
constraint insurance_claim_pk primary key (claimid),
constraint policy_fk foreign key (claimpolicy) references policy
insert into insurance_claim values (77804, '01-JAN-99',8895,
'The insured''s <VEHICLE>car</VEHICLE> broke through the guard rail and '&#0124; &#0124;
'plummeted into a ravine. The cause was determined to be <CAUSE>faulty '&#0124; &#0124;
'brakes</CAUSE> Amazingly there were no casualties.');
insert into insurance_claim values (12345, '11-MAR-98',8895,
'Officer George Lumden clocked the insured going 98 miles per hour in a '&#0124; &#0124;
'45 zone. He wrote up the offender for an <CAUSE>excess speed</CAUSE> '&#0124; &#0124;
'violation. Insured claims damage was done before he exceeded the speed '&#0124; &#0124;
'limit.');
insert into insurance_claim values (90998, '18-JUN-97',9054,
'San Francisco Fire Department arrived on scene at 9:08pm i n response '&#0124; &#0124;
'to an anonymous call. Fire went to four alarms. Fire Chief Rodriguez '&#0124; &#0124;
'immediately suspected <CAUSE>arson</CAUSE> based on clues left at the '&#0124; &#0124;
'scene.');
insert into insurance_claim values (11876, '20-APR-98',9054,
'<SUSPECT>Colonel Mustard</SUSPECT> underwent DNA testing and was '&#0124; &#0124;
'confirmed as the killer. The insured''s wife was '&#0124; &#0124;
'<CAUSE>murdered</CAUSE> with a candlestick in the library.');
create table settlement_payments(
claimid number,
PayDate DATE,
Amount NUMBER,
Approver VARCHAR2(8),
constraint claim_fk foreign key (claimid) references insurance_claim
insert into settlement_payments values (77804,'05-JAN-99',7600,'JCOX');
insert into settlement_payments values (12345,'15-MAR-98',1800,'MFOX');
insert into settlement_payments values (12345,'23-MAR-98',7800,'ULOWE');
insert into settlement_payments values (90998,'01-JUL-97',1500,'JCOX');
insert into settlement_payments values (11876,'05-JAN-99',7600,'JCOX');
create or replace force view insurance_claim_view of insurance_claim_t
with object OID (claimid)
as select c.claimid,c.filed,
(SELECT value(pv)
from policy_view pv
WHERE pv.policyid = c.claimpolicy),
CAST(MULTISET(SELECT PAYMENT(sp.paydate,sp.amount,sp.approver) as Payment
from settlement_payments sp
WHERE sp.claimid = c.claimid) AS settlements_t),
c.damagereport
from insurance_claim c;
commit;
begin
ctx_ddl.drop_preference('Demo');
end;
begin
ctx_ddl.create_preference('Demo', 'basic_lexer');
ctx_ddl.set_attribute ('Demo', 'index_themes', '0');
ctx_ddl.set_attribute ('Demo', 'index_text', '1');
ctx_ddl.create_section_group('demo_xml', 'xml_section_group');
ctx_ddl.add_zone_section('demo_xml', 'CAUSE', 'CAUSE');
ctx_ddl.add_zone_section('demo_xml', 'MOTIVE', 'MOTIVE');
end;
create index ctx_xml_i on insurance_claim(damagereport)
indextype is ctxsys.context
parameters('LEXER Demo SECTION GROUP demo_xml');
create synonym claim for insurance_claim_view;
null

Similar Messages

  • Intermedia, XML and brasilian portuguese

    I'm trying to store XML documents into Clob columns of tables and indexing that documents with InterMedia XML support.
    But even the most quick example does not work with my language, that is brazilian portuguese. I'm not interested in the topic search, but I just don't know how to create the index to my language and search by tags.
    Looking in the docs, I tryed the following options:
    1 create a preference with stemmer null:
    execute ctx_ddl.create_preference('NULLWORD_PREF','BASIC_WORDLIST');
    execute ctx_ddl.set_attribute('NULLWORD_PREF','STEMMER','NULL');
    2 create auto sequencer
    ctx_ddl.create_section_group('auto', 'AUTO_SECTION_GROUP');
    3. create the index, with NULL filter
    create index testeXml on myDocs ( doc )
    indextype is ctxsys.context
    parameters ('Filter CTXSYS.NULL_FILTER Wordlist NULLWORD_PREF section group auto');
    But it not works.
    Does Interbase work with non-english databases ? If no, How can I use it with my language ?

    I succeded using INDEX_THEMES NO lexical preference.
    Thanks

  • Error while using XML Iview, please contact your system administrator.

    Hello everybody,
    I have already posted a detailed message for the XML iview problem sometime back but havent got any reply so far. All the replies had come from users who are also facing the same problem. I am trying to use a XML iview for fetching RSS feeds from one of the internet source, i have entered the proper URL and selected the proper RSS to XHTMLB transformer also and have entered the proxy settings in the http service and enabled it and restarted it also, but again when i am previewing the Iview its giving me the error <b>"Error while using XML Iview, please contact your system administrator."</b>. I am using
        Area           Version
        J2EE Engine    6.40 PatchLevel 98256.313
        Portal         6.0.14.0.0
    , can someone tell me whether its a bug in sp14 or i am missing something while creating this XML Iview. Expecting a proper reply.
    Thanks in advance,
    Regards,
    Sarabjeet.

    Hi Sarabjeet,
    The XML iView uses server-side fetching, so if you are having problems with a regular URL iView in server-side fetching mode, so the problem with the XML iVIew probably has to do with the proxy settings.
    And since you got a 407 error, it seems there is an issue with proxy settings or the proxy server, as mentioned in this description of 407 error:
    The HTTP 407 code only applies to users who are accessing the Internet behind a proxy server. This is common in government and corporate workplaces. The 407 code indicates that your computer must first authenticate itself with your company's proxy server. Check with your IT department or computer support group as to the exact reason why you may be getting this error. It may be possible that the proxy server does not allow downloads of specific files (exe, cab, com). You can also verify that your proxy server settings are valid.
    I will check if I can find out any more specific info.
    Daniel

  • I am a OS10.7.4 user. yesterday i bought a Lacie external hard disk but error message appear said " You cant open the applicant LaCie setup assistant because PowerPC applicants are no longer support". please help me how to connect my mac with Lacie??

    i am a OS10.7.4 user. yesterday i bought a Lacie external hard disk but error message appear said " You cant open the applicant LaCie setup assistant because PowerPC applicants are no longer support". please help me how to connect my mac with Lacie??

    You do not need the Setup Assistant; in fact, you do not need any software on an external hard drive. I have two LaCie's; I erased the drive as soon as I plugged it in. You will need to format it anyway because most hard drives come Windows formatted. So, if you only want to use it with the Mac, highlight it in Disk Utility and choose Mac OS Extended (Journaled) as the format and the GUID Partition scheme under Options. While doing that, it will erase the drive (and get rid of the LaCie software) - once finished, your drive is ready to use for Time Machine or any other backup plans you have for it.

  • IPhone 3G little cracking case... Any Support, please?

    Dear Folks,
    This is my third post regarding my iPhone 3G because the 2 previous ones were deleted by one Apple Moderator (I hope that this one is not because I need help, and I don't know where to find it, please).
    In fact, several days ago, after take out my nice protective Belkin Black silicon cover, and take a look around the plastic bottom cover, I discovered it! I was suffering the same cracking case that other user suffered! My beloved iPhone had a hairline casing crack between the earphone jack and the silver trim!... (Although I never drop it and I treated it like a newborn) (I never took so much care with an electronic daily-use device... but I wanted to have it so shiny like the box unpacking first day).
    I am in Belgium, so the only Support can be done by the local Mobile telecommunications, but they told me that this kind of defect is not covered by the Apple iPhone 3G Warranty because none kind of Plastic Breakages are not covered, then they ignore me,... but I need to put in contact with Apple Customer Support, please.
    Do you know how I can put in contact Apple Support to receive some help for my in Warraty Time period iPhone 3G, please?
    Thanks by your help.
    Best regards.
    P.D. I know that the Apple employees read and manage this forum,... so, Could you show me the way, please?

    1) Why I cannot reach Apple for this issue with my mobile phone, if for an iPod Touch I can trough their web directly?
    No one here can answer Apple's policy directly. Terms of use forbid us on the right to guess it, and the vast majority of posters don't have any direct affiliation with Apple. If you don't like it, you can always post feedback here:
    http://www.apple.com/contact/feedback.html
    2) Why I have to pass through MOBISTAR (Belgium) and I cannot contact directly with Apple? This is damaging the image of Apple, which is more shiny and worldwide than MOBISTAR.
    The government likely has certain agreements with certain phone carriers who can contract the airwaves. That's the way it is here. Unfortunately it has allowed monopolies to develop, and create untenable situations for the consumers. When certain monopolies contract out their phone service, they end up picking the manufacturers who they think will give the best contract for the carrier, regardless of how the consumer squelches.
    3) How many users suffer this issue without complaints thinking that is their fault when it is not?
    That's impossible to tell. Apple does not publish lemon figures, and certainly it is hard to tell how much of it is due to abuse by users, and how much is design defect, because many consumers go out there and blame Apple when they've let their dogs eat their phones. I'm not saying that you did, but those not careful with their phones are creating a situation where others have to pay. This is why there are insurance companies for cell phones separate of the warranty.
    Message was edited by: a brody
    Message was edited by: a brody

  • Adobe Support:  Please Read, New Flash Not Working

    Adobe, please read this.  My Flash player is not working and I would be happy to help you troubleshoot.  I have a completely fresh install of Windows XP on a Dell Laptop and the new Flash Player is not working.  I am in the tech field so I will understand most of your requests...Here is my situation.
    The problem began just after Christmas when I returned home from holidays and tried to watch videos, which I do all the time for both work and pleasure.  Videos would not play in a watchable manner...I could hear audio but video was completely choppy and unwatchable.  I researched and researched and implemented many suggestions but to no avail.  Thus, I COMPLETELY rebuilt my system from scratch.  (I needed to do this anyway since it had been 2 years.)
    After the rebuild, on a completely fresh install of XP on a Dell D410 laptop (that was playing all videos just fine a week ago), I installed Firefox, went to youtube which prompted me to install Flash, and then had the exact same problem that I had before the complete reinstall of everything.  There are scarecely any variables here other than the Dell Laptop, a standard Windows XP SP2 build, Firefox and Flash.
    I think I have narrowed this problem down to two things.  One, the new version of Flash.
    It's choppy on youtube AND it's choppy on megavideo, the other place where I watch a lot videos.
    I then tried on IE, which also prompted for the new version of flash, and also had the same problem.  Chrome--same result.
    However, this problem cannot be a universal problem with Flash otherwise nobody would be able to watch any videos onlline.
    This leads me to the second problem, which a complete hypothesis but it seems to be the only thing left:  my Dell laptop.
    I have noticed that some of the other folks with reported problems, who mention their system type, are also using Dell laptops.  Mine is an older d410, but as I said, it was running every video just fine up until a week or so ago when all of the sites forced me to install the new version of Flash.  Most Dell laptops use a common video driver set and this is what is leading me to this conclusion.
    So, could this be a problem with the new Flash and Dell laptops (or systems that use a common video driver)? As a reference point, my "display adapter" says "Mobile Intel (R) 915GM/GMS,910GML Express Chipset Family".
    Viewing videos is part of my job (and entertainment) and I cannot do anything right now.
    Someone out there...please hlep.  Adobe, where are you?  We are here providing you with all of the information that you need....

    Thank you for this response.  Apparently, Adobe does not provide support since this is a free product.
    However, Adobe, I need your help.
    In summary, I have a fresh build of Windows XP, SP2 on a Dell D410 and the Flash player does not work.  This affects at least 50% of the sites I visit.  Right now, I simply have the Flash Player uninstalled and can surf the net rapidly.  Once I install it, I am back to a crawl and still cannot affectively watch any videos (they all have extreme video choppiness but the audio is fine).
    I need your help, Adobe.  Everything was working fine until 2 weeks ago.  It is unfair of you to distribute a product like this, force everyone to use it, and have it not work for some of us.
    So far, this free product has cost me hundreds of dollars as a good part of my job is reviewing videos.
    Many have suggested that I buy a new computer to fix the problem.
    Is this really necessary?
    Adobe, I am a man in need...please help me...
    (PS:  I am not the only one.  I have also entered my problem here http://www.google.pl/support/forum/p/youtube/thread?tid=6039f438d085295f&hl=en&fid=6039f43 8d085295f00047c7e3182b625 to no avail.
    And I have done more research than you can imagine.  Here are a number of sites where people are reporting problems with Flash:
    Streaming videos are choppy all the sudden.... - CPUs - CPU-Components How do I resolve choppy/jerky video in Firefox? - YouTube Help Videos are choppy, Audio distorted. - YouTube Help DIYnot.com > Youtube stopped working "JavaScript turned off" youtube is not working - YouTube Help Flash sound stopped working. | Ask MetaFilter Anyone have problems with Youtube freezing? - Software - Non-Gaming - Discussion Forum | Eurogamer YouTube videos freeze after a second - Google Chrome Help My Comments on Video Problem Flash Player 10 memory leak!!   Graphics - Customized computer manufacturer graphics driver is detected AfterDawn.com: Guides: How to play FLV files Adobe Forums: Adobe Support: Please Read, New Flash... Adobe Forums: Flash Stopped working
    Obviously, I have still not found an answer to my problem.  Please help me.
    Thx,
    Richard)

  • XML Parsing in Java Stored Proc--Oracle XML Support Installation?

    I am working with a third party product that is having difficulty running a java stored proc that is parsing a supplied XML file. The proc basically looks like:
    import java.io.IOException;
    import javax.xml.parsers.DocumentBuilder;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.FactoryConfigurationError;
    import javax.xml.parsers.ParserConfigurationException;
    import org.w3c.dom.Document;
    import org.xml.sax.SAXException;
    InputStream is = getXMLAsInputStream(xml);
    try {
    DocumentBuilderFactory factory =
    DocumentBuilderFactory.newInstance();
    DocumentBuilder builder = factory.newDocumentBuilder();
    Document document = builder.parse( is );
    ... parse the document ....
    catch (FactoryConfigurationError e) {
    // unable to get a document builder factory
    We are running on 9.2.0.6, HP-UX 64-bit. At first, when we would attempt to run the proc, a database hang would occur; now after attempting to install using loadjava jars for xerces2.6: ORA-29532: Java call terminated by uncaught Java exception:
    javax.xml.parsers.FactoryConfigurationError: Provider
    org.apache.xerces.jaxp.DocumentBuilderFactoryImpl not found)
    The vendor says that the errors we are getting when running are not due to any dependency on xerces or jre1.4, and that we need to "install Oracle XML support", but I'm not certain what this means (I cannot find any documentation on what to install). I believe that there are jars that need to be loaded into the database to support the XML parsing, as jre1.3 does not include built-in XML support, and Oracle 9.2.0.6 uses jre1.3.
    So...does anyone have any thoughts as to how to resolve the missing references? Is there a way to "install Oracle XML support", or is it to install the necessary jars?
    Thanks,
    Candi

    Candi,
    The following resources should be of help:
    Oracle9i Database Release 2 (9.2) Documentation Library
    In particular, check out the following:
    Java Developer's Guide
    Java Stored Procedures Developer's Guide
    XML API Reference - XDK and Oracle XML DB
    XML Database Developer's Guide - Oracle XML DB
    XML Developer's Kits Guide - XDK
    If that doesn't help, then try the following:
    OracleJVM and Java Stored Procedures
    XML Technology Center
    Good Luck,
    Avi.

  • Hi support please help me to sync my ipod and iphone 5 . Since i have installed new itunes version 12 , i am not able to sync to transfer data to my devices through itunes.  I think there is some issue with tunes new version .kindly support ASAP.  Ra

    Hi support please help me to sync my ipod and iphone 5 . Since i have installed new itunes version 12 , i am not able to sync to transfer data to my devices through itunes.
    I think there is some issue with tunes new version .kindly support ASAP.
    Rachna khanna
    [email protected]

    you might need to buy a new cable from the apple store.

  • XML support in SAP 4.6

    Hi all !
    I'm looking for information about XML support in SAP 4.6c.
    I have to implement a data exchange mechanism between SAP and web application written in Java. Whole idea looks simple: Java application send an XML document through RFC and ABAP program should parse this document. When document is parsed, program performs an action and receives single or multiple objects. Those objects have to be converted to XML and sent back to Java app.
    Is there any XML parser available in 4.6C. Is there any mechanism which serialize/deserialize ABAP Objects to/from XML.
    Thank you for any help and hints.
    Tomek

    Hi again !
    I need to convert an OBJECT INSTANCE. e.g.
    CLASS student DEFINITION.
    PUBLIC SECTION.
    METHODS:constructor
    IMPORTING
    i_name TYPE c
    i_indeks TYPE n,
    introduce_yourself
    EXPORTING
    e_name TYPE c.
    PRIVATE SECTION.
    DATA: name(30) TYPE c,
    indeks(10) TYPE n.
    ocena LIKE ys_ocena,
    tabela_ocen TYPE TABLE OF ys_ocena.
    ENDCLASS.
    I have to convert a single INSTANCE of this class to XML and send it as a XML stream (or XML formated content in internal table) in return value of function module called through RFC.
    As you can see - this class contains some variables and an internal table. For me, a best solution would be to provide this class instance as a parameter and get a XML formated data.
    I have a SAP system and Web Application written in Java. Comunications between them is provided by RFC (JCo). SAP application and Web Application communicate by exchanging a XML documents. Since, SAP part is using Abap Objects - i have to convert object to/from XML.
    Thanks for all your help.
    Tomek

  • I just updated my iPhone 5 from virgin mobile to ios7, and upon the normal setup i find that i my sim card is not being read; apparently now it isn't supported. please someone help me.

    I just updated my iPhone 5 from virgin mobile to ios7, and upon the normal setup i find that i my sim card is not being read; apparently now it isn't supported. please someone help me.

    my iphone is and has been locked to one carrier. all i've done is a software update to ios7, like all the other updates since i bought the phone when it was released. same carrier, same sim card. :/

  • Could someone from support please post a credible fix for the fact that the Dreamweaver preview feature hasn't worked since FF3.6 came out, and still won't work in FF3.6.10

    Ever since FF3.6 came out there has been an issue with the Dreamweaver preview feature. As a result, I uninstalled 3.6 and am hanging out with 3.5.9 until this issue is resolved. Every time a new version of Firefox comes out I do a Google search to see if the issue has been resolved. I just did another search, and as of 9/23/10 with FF3.6.10 this issue is still not resolved. Could Firefox Support please provide a credible article about resolving this issue. People have been posting about it for years, and the only useful advice I have seen is for people to go back to 3.5.9 !?
    I am currently working with Mac OS10.4.11, and DW CS3, but I have seen people post about having this issue with Mac OS10.5 and DW CS4 and other configurations, so the problem seems pretty universal.

    A Dreamweaver CS user came up with a fix for Dreamweaver: <br />
    http://solutions.marketingmedley.com/
    There is a $5.00 fee for that Dreamweaver fix. That website and the fix are not associated with Mozilla in any manner. Support for that fix is provided by that that website via email.

  • I want to display the number of Passed / failed tests in Testtand xml report , please help me

    Hi, I want to display the number of Passed / failed tests in Testtand xml report , please help me.
    My requirement is later i should be able to display these number of passed/failed test in report header too.
    Solved!
    Go to Solution.

    I have attached a sequence to give you an idea of how to get the Result count (I didn't check it's working ), I have used "SequenceFilePostResultListEntry" callback to calculate the Result Count,
    and the Result Count is passed to the "ModifyReportHeader" through File Globals,  where you can edit the XML file to show it in the Repot (follow the link in my previous post).
    Hope this helps
    AshwiN,
    Attachments:
    Get Result Count.seq ‏8 KB

  • I can't connect to iTune Store nor to radios, with the aid of iTune,check for updates, these last two from aid, but if you communicate with support.Please the answers in spanish.

    I can't connect to iTune Store nor to radios, with the aid of iTune,check for updates, these last two from aid, but if you communicate with support.Please the answers in spanish.

    Back up all data.
    Unlock the Network preference pane, if necessary, by clicking the lock icon in the lower left corner and entering your password. Cllck Advanced, open the DNS tab, and change the server addresses to the following:
              8.8.8.8
              8.8.4.4
    That's Google DNS. Click OK, then Apply.
    In Safari, select
              Safari ▹ Preferences... ▹ Privacy ▹ Remove All Website Data
    and confirm. If you’re using another browser, empty the cache. Test. Any difference?
    Notes:
    1. If you lose Internet access after making the above change to your network settings, delete the Google servers in the  Network preference pane, then select the TCP/IP tab and click Renew DHCP Lease. That should restore the original DNS settings; otherwise restore them yourself. Remember that you must click Apply in order for any changes to take effect.
    2. I don't use Google DNS myself, though I have tested it, and I'm not recommending it or any other DNS provider; the server addresses are offered merely for testing purposes. There may be privacy and technical issues involved in using that service, which you should investigate personally before you decide whether to keep the settings. Other public DNS services exist.

  • XML support in AI

    Hi,
    I know there's XML support for InDesign but what abt AI? What I need to do is XML coding and tagging. Anyone?

    Look at the public API on the SDK - http://www.adobe.com/devnet/illustrator/sdk/
    In particular:
    AIArtSuite - Get/Set XMP metadata for an art object.
    AIDocumentSuite - Get/Set XMP metadata for a document object.
    AIAssetMgmtSuite - Simple XMP metadata manipulation.
    And AIXMPDataFieldMap - the structure used to update XMP metadata.

  • My app market isn't reconising my bank account details, it say for assistence contact support please help

    my app market isn't reconising my bank account details when i try and purchase a app , it say for assistence contact support please help

    To Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

Maybe you are looking for