SOAP-ERROR: Parsing Schema: element has both 'type' attribute and subtype

Hi,
i have created web service link which deals with calling a Pl/sql procedure with the help of DBAdapter in jdev 10.1.3.4 .here i am trying to insert a row in tables.my webservice is working fine from BPEL console
my collegue who is working on PHP is trying to access the the wsdl link with the help of Appcelator and php
code for php
<?php
//include("general.php");
$wsdl_url = 'http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/CreateRepairOrder/1.0/CreateRepairOrder?wsdl';
//$wsdl_url = 'http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl';
$client = new SoapClient($wsdl_url,array('trace' => 1,'exceptions' => 0));
print_r($client);
exit;
class CreateOrderNd
var $PARTY_ID="";
var $CUST_ACCOUNT_ID="";
var $INVENTORY_ITEM_ID="";
var $SERIAL_NUMBER="";
var $UNIT_OF_MEASURE="";
var $QUANTITY="";
var $ITEM_CROSS_REFERENCE="";
var $PROBLEM_DESCRIPTION="";
function CreateOrderNd($PartyNam,$AccountId,$ItemId_requestdata,$SerialNumber_requestdata,$uom_requestdata,
$quantity_requestdata,$ItemCrossReference_requestdata,$ProblemDescription_requestdata)
$this->PARTY_ID=$PartyName;
$this->CUST_ACCOUNT_ID=$AccountId;
$this->INVENTORY_ITEM_ID=$ItemId_requestdata;
$this->SERIAL_NUMBER=$SerialNumber_requestdata;
$this->UNIT_OF_MEASURE=$uom_requestdata;
$this->QUANTITY=$quantity_requestdata;
$this->ITEM_CROSS_REFERENCE=$ItemCrossReference_requestdata;
$this->PROBLEM_DESCRIPTION=$ProblemDescription_requestdata;
$parm = new CustomerNd($PartyName_requestdata,$AccountId_requestdata,$ItemId_requestdata,$SerialNumber_requestdata,$uom_requestdata,
$quantity_requestdata,$ItemCrossReference_requestdata,$ProblemDescription_requestdata);
$parm = new CustomerNd('Bus%','');
$parm = new CreateOrderNd(4429,1608,6761,'0722AB05','Ea',1,'abc123','Network error');
$ret=$client->process($parm);
print_r($ret);
?>
when she/he access it they are facing a error
SOAP-ERROR: Parsing Schema: element has both 'type' attribute and subtype
and some times it will give
Warning: SoapClient::SoapClient(http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl) http://function.SoapClient-SoapClient: failed to open stream: HTTP request failed! in C:\xampp\htdocs\DepotExtensions\version9\app\services\CreateOrderNd.class.php on line 6
Warning: SoapClient::SoapClient() http://function.SoapClient-SoapClient: I/O warning : failed to load external entity "http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl" in C:\xampp\htdocs\DepotExtensions\version9\app\services\CreateOrderNd.class.php on line 6
Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl' in C:\xampp\htdocs\DepotExtensions\version9\app\services\CreateOrderNd.class.php on line 6

Hi,
i have created web service link which deals with calling a Pl/sql procedure with the help of DBAdapter in jdev 10.1.3.4 .here i am trying to insert a row in tables.my webservice is working fine from BPEL console
my collegue who is working on PHP is trying to access the the wsdl link with the help of Appcelator and php
code for php
<?php
//include("general.php");
$wsdl_url = 'http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/CreateRepairOrder/1.0/CreateRepairOrder?wsdl';
//$wsdl_url = 'http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl';
$client = new SoapClient($wsdl_url,array('trace' => 1,'exceptions' => 0));
print_r($client);
exit;
class CreateOrderNd
var $PARTY_ID="";
var $CUST_ACCOUNT_ID="";
var $INVENTORY_ITEM_ID="";
var $SERIAL_NUMBER="";
var $UNIT_OF_MEASURE="";
var $QUANTITY="";
var $ITEM_CROSS_REFERENCE="";
var $PROBLEM_DESCRIPTION="";
function CreateOrderNd($PartyNam,$AccountId,$ItemId_requestdata,$SerialNumber_requestdata,$uom_requestdata,
$quantity_requestdata,$ItemCrossReference_requestdata,$ProblemDescription_requestdata)
$this->PARTY_ID=$PartyName;
$this->CUST_ACCOUNT_ID=$AccountId;
$this->INVENTORY_ITEM_ID=$ItemId_requestdata;
$this->SERIAL_NUMBER=$SerialNumber_requestdata;
$this->UNIT_OF_MEASURE=$uom_requestdata;
$this->QUANTITY=$quantity_requestdata;
$this->ITEM_CROSS_REFERENCE=$ItemCrossReference_requestdata;
$this->PROBLEM_DESCRIPTION=$ProblemDescription_requestdata;
$parm = new CustomerNd($PartyName_requestdata,$AccountId_requestdata,$ItemId_requestdata,$SerialNumber_requestdata,$uom_requestdata,
$quantity_requestdata,$ItemCrossReference_requestdata,$ProblemDescription_requestdata);
$parm = new CustomerNd('Bus%','');
$parm = new CreateOrderNd(4429,1608,6761,'0722AB05','Ea',1,'abc123','Network error');
$ret=$client->process($parm);
print_r($ret);
?>
when she/he access it they are facing a error
SOAP-ERROR: Parsing Schema: element has both 'type' attribute and subtype
and some times it will give
Warning: SoapClient::SoapClient(http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl) http://function.SoapClient-SoapClient: failed to open stream: HTTP request failed! in C:\xampp\htdocs\DepotExtensions\version9\app\services\CreateOrderNd.class.php on line 6
Warning: SoapClient::SoapClient() http://function.SoapClient-SoapClient: I/O warning : failed to load external entity "http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl" in C:\xampp\htdocs\DepotExtensions\version9\app\services\CreateOrderNd.class.php on line 6
Fatal error: SOAP-ERROR: Parsing WSDL: Couldn't load from 'http://sfhyd1.softforce.com:8888/orabpel/DepotExtnDev/UpdateROStatus1/1.0/UpdateROStatus1?wsdl' in C:\xampp\htdocs\DepotExtensions\version9\app\services\CreateOrderNd.class.php on line 6

Similar Messages

  • "SOAP-ERROR: Parsing Schema: unexpected complexType in complexType"

    Hi, I am trying to access cca service through wsdl by php. but when i am trying to create messageprovider object, that time i got error something like "SOAP-ERROR: Parsing Schema: unexpected <complexType> in complexType" . Please help me to resolve for this error.

    hi,
    just do not use WS-Policy. To achieve this change the WSDL-URL fed to the constructor from
    ... wsdl11/ws_policy/document?sap-client=123
    to
    ... wsdl11/standard/document?sap-client=123
    and it works.
    have fun,
    anton

  • Error: adobe acrobat elements has encountered a problem and needs to close

    When I right-click to Convert to PDF or Convert to PDF and EMail for .xls, .xlsx, .doc, .docx, .pptx, .ppt, .pub, and .igx items (what I've tried so far), I get the following error: "Adobe acrobat elements has encountered a problem and needs to close".  It works fine on .bmp .tif, .txt, .htm, and .jpg (what I've tried so far).  I am not having problems printing to Adobe to convert, nor am I having problems creating a PDF within a program, and I'm not having problems converting from IE.  I am using Windows XP Professional, Microsoft 2007, and IE 7.  My Adobe product is Adobe Acrobat X Pro Version 10.1.2.  What can I do to resolve this problem?  Thanks.

    No, I don't have an older version.  I did a search on my C drive for anything that has a name of Acrobat Elements and came up with the following: (I'm hoping you can see this)

  • Error Parsing schema file - BMECat

    Hello,
    we are on MDM-SRM Catalog 3.0 (MDM 7.1.4.134) and using BMECat XML Files for uploading.
    We have created a XML Schema entry in the repository with reference to the Schema File bmecat_new_catalog_1_2.xsd. When we select Type XML Schema and the relevant Schema Defintion in der MDM Import Manager selection we get an error:
    "Error parsing schema file C:
    ....TempXMLSchema[1].xsd at 42, 39: Unknown base type dtString for type S5."
    Did anyone get this error too or has an idea what to do?
    Best regards
    Florian Mödder

    Hi Florian,
    It seems you have already raised an SAP Message for this issue, if it is resolved I suggest you update the resolution here in case anyone else encounters the same issue!
    In any case, please close the thread of the issue is resolved.
    Regards,
    Jason

  • RMAN-06466: error parsing configuration string (CONFIGURE DEVICE TYPE DISK

    Hi All
    Windows 2003 and 10.2.0.4
    I get the following message when executing show all; connected to rman
    (I have used grid control 11g for the first configuration of rman. Not sure if it has an impact.)
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    CONFIGURE CONTROLFILE AUTOBACKUP OFF;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F';
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of show command at 09/22/2011 16:04:11
    RMAN-12010: automatic channel allocation initialization failed
    RMAN-06466: error parsing configuration string (CONFIGURE DEVICE TYPE DISK BACKUP TYPE TO BACKUPSET PARALLELISM 1;)
    RMAN-01005: syntax error: found "backup": expecting one of: "clear, parallelism"
    RMAN-01007: at line 1 column 28 file: Configuration Row
    RMAN>
    Reading the manual Database Backup and Recovery Basics
    I should be able to configure it like this
    RMAN> CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01005: syntax error: found "backup": expecting one of: ";"
    RMAN-01007: at line 1 column 42 file: standard input
    Anyone that can help me with this ?
    Appreciate your feedback.
    Thanks
    Magnus

    What happens if you type "CONFIGURE DEVICE TYPE DISK CLEAR;" ?

  • Create Web Service Proxy -  Union Schema Element has not been implemented

    Create Web Service Proxy
    Validation Failed:
    WSDLException: faultCode=INVALID_WSDL: unsupported XML Schema feature(Union Schema Element has not been implemented)
    WSDL source: http://personal.inet.fi/cool/sports/misc/FlatWSDL/SOAPFrontGetShowBalanceJMS.wsdl

    Looks like this was a false alarm. There were some issues with the message schema.
    Sorry for the confusion.

  • When I open iTunes, I receive an error that reads "iTunes has encountered a problem and needs to close.  Sorry for the convenience."  When I click to see the error, it reads "AppName: itunes.exe      AppVer: 10.5.2.11      ModName: msvcr80.dll"  Why ?

      When I open iTunes, I receive an error that reads "iTunes has encountered a problem and needs to close.  Sorry for the convenience."  When I click to see the error, it reads "AppName: itunes.exe  AppVer: 10.5.2.11  ModName: msvcr80.dll"  Why ?  I am overly frustrated.  Please help.  Not exactly sure which operating system I have.  It is a dell laptop with xp.
    AppName: itunes.exe AppVer: 10.5.2.11 ModName: msvcr80.dll
    ModVer: 8.0.50727.6195 Offset: 00026b72
       AppName: itunes.exe AppVer: 10.5.2.11 ModName: msvcr80.dll
    ModVer: 8.0.50727.6195 Offset: 00026b72

    Well I was able to successfully revert back to iTunes8. Here's my steps:
    1. In Add/Remove Programs I deleted all Apple products (iTunes, QuickTime, Safari, Bonjour, etc.)
    2. I then check C:\Program Files\ and made sure all folders were deleted (QuickTime, etc.)
    3. I then ran a Registry Cleaner program to make sure all entries from Apple products were removed.
    4. I then rebooted my PC
    5. I then downloaded iTunes8.0.2 from here: http://www.apple.com/downloads/macosx/apple/ipod_itunes/itunes802forwindows.html
    6. After it installed it said it could use my iTunes library file because it was created with a newer version. So I re-created my library by following these steps: http://support.apple.com/kb/HT1451
    It took some time but iTunes is now back up and running. And I have all my playlists, etc. I haven't tried to sync anything yet. I'm just thrilled to have my iTunes back!

  • Error code: MobileMe Services has encountered a problem and needs to close - I get this message everytime i open Outlook and it slows down opening?  This problem started when itunes updated

    Error code: MobileMe Services has encountered a problem and needs to close
    I get this mesage everytime i open Outlook and it slows down opening. This problem started when itunes updated. What do I do to solve this?

    Hi turingtest2 (you pass, BTW):  Thanks for the speedy reply.  MobileMe doesn't appear in the list of programs which can be uninstalled.  I tried the link you suggest: http://support.microsoft.com/mats/Program_Install_and_Uninstall but when I tried to "Run Now", I get the error message:  " Troubleshooting cannot continue because an error has occurred... etc.... [code 80072F8F]"  So googled this error & found a tool called (80072f8f) Repair Tool   -  I'm leery to download yet more stuff from non-microsoft sites -- any recommendations?

  • After downloading the latest iTunes update, when I open Outlook on my pc, I am getting an error meaasage that MoblieMe has encountered a problem and needs to close.  What's up with this?

    After downloading the latest iTunes update, when I open Outlook on my pc, I am getting an error message that MobileMe has encountered a problem and needs to close.  What's up with this?

    You're welcome.
    tt2

  • An error occur indesign.exe has encountered a problem and needs to close.

    I am having trouble with adobe indesign CS5. Each time I opened my document an error occur indesign.exe has encountered a problem and needs to close. It got send report and don't send report to Microsoft. I have already used google web as a help and nothing came up. I have already tried to uninstall and re-install it but still same issue occured. Other Adobe products such as Adobe Dreanweaver CS5 and Adobe Flash CS5 work fine.I would greatly appreciated if you can walk me through. Thanks.

    Windows error reports are too vague to help us much. Did you get an error number?
    Is this happening now every time you start ID? That would likely mean the recovery data is damaged. You can find the InDesign Recovery folder in your user profile. This folder is probably hidden, so you'll need to set Windows Explorer to show hidden and system files, then look in the same directory as the location of InDesign Defaults, which you can find for your version of Windows in the information in this link: Replace Your Preferences
    Once you find the InDesign Recovery folder, either rename or empty it, then ID should start normally. If you file crashes again when you try to open it from the file menu please tell us as much information as you can.

  • When i turn on itunes, it crashes automatically with the error message saying "itunes has encountered a problem and needs to close." I've tried reinstalling itunes but its the same. CAN SOMEONE PLEASE HELP!!!

    when i turn on itunes, it crashes automatically with the error message saying "itunes has encountered a problem and needs to close." I've tried reinstalling itunes but its the same. CAN SOMEONE PLEASE HELP!!!

    Try:
    iOS: If you can't back up or restore from a backup in iTunes

  • I have elements on both my iMac and mac book. On my mac book i can't hold down left click on the pad and on the right hand side move tools i.e. clone, erase tools etc

    i have elements on both my iMac and mac book. On my mac book i can't hold down left click on the pad and on the right hand side move tools i.e. clone, erase tools etc

    Please post Photoshop Elements related queries over at
    http://forums.adobe.com/community/photoshop_elements

  • Error parsing document index: invalid character in attribute value

    Hi,
    I am working on an eBook with iBook Author. Once in a while, after I finish working, and want to reopen my eBook a few hours or days after I get the error:
    'title' could not be opened
    Error parsing document index: invalid character in attribute value
    I have to go back to an old backup I always do before quitting.
    What is the reason of this error message and anyw ay to fix/repair it on a version I just saved?
    Thanks,
    JP.

    Hello,
    I have the same error, but for me the above solution did not work.
    Did I understand correctly? This is what I did:
    1. I changed the extension of the IBA file in ZIP
    2. I unzipped the file
    3. in the folder with the unzipped book I have changed the file index.xml in index.html
    4. I zipped it all back (in a ZIP file)
    5. I renamed the extension ZIP archive in IBA
    6. I tried to open the book and I got  the error that there was no index.xml file
    7. I changed the extension of the IBA and in ZIP
    8. I unzipped the file again
    9. I changed back index.xml to index.html and I zipped it back (compressed it)
    10. I renamed the extension ZIP archive in IBA
    11. I opened the book
    Is this correct?
    The problem is that I am still receiving the same error message: Error parsing document index: invalid character in attribute value
    Did I do something wrong?
    If you can help I would be very greatfull, I worked hard on this book and it is the only backup that I have saved.
    Thank you!

  • Can I install one copy (license) of Elements on both my Macbook and my Windows PC?

    Can I install one copy (license) of Elements on both my Macbook and my Windows PC? The software comes with both disks.

    Interesting. After posting this question I had an "Online Chat" with Adobe. I was told that the license allows up to two installations on the same operating system but not one of each. After hearing this I found the clause in the agreement that stated this.
    Obviously I do not believe that this is a customer focused policy.

  • Can I use one licensed copy of Elements on both a PC and a Mac?

    Can I use one licensed copy of Elements on both a PC and a Mac?

    Thanks for the reply.
    I'll be buying a boxed version which says it comes with CD's for both platforms.
    The Mac doesn't get used very often for photo editing, but it would be nice to have that option.

Maybe you are looking for

  • Sequence Settings for "Apple Lossless" codec !?!?

    Help, I am editing a project and the material was delivered to me in the "Apple Lossless, stereo, 44100 khz DV, 720x480 (640x480), millions Is there a Sequence settings I can use to edit this without having to render it in the timeline ?!? Many thank

  • Static variable behaviour in memory

    Hi, My question is : When you compile a java code, does the static variable gets the memory allocated while creating the byte code or is it on run time that a static variable gets the memory allocation and then it is shared for all instances. Thanks

  • Rotation Problem... I need it to stay positive!!

    Hello everyone. I think what I have on my hands is a little trigonometry problem but I'm not sure because I never listened in math class. Here is the file I am referencing: http://pixel8media.com/help/index.html I'm trying to make the yellow arrow ro

  • How do I turn off the ANNOYING text hover in the flash builder 4 editor

    I love Flash Builder 4, but one thing really bugs me about it: the hover tool tip that pops up when you hover over a class in your code. I am climbing the walls trying to find a way to disable this content assist text hover. I don't need it and it is

  • Why can't I choose smart blur or lens blur?  iMac-27.

    Cannot select smart blur or lens blur.  Just signed up for creative cloud for artistic editing and Blur seems essential.