Problem to get whole payload?

Hi Guys,
I need to call JDBC adapter so that I need to send the complete source XML payload as a string in just one element and not mapping each element with input variables of the store procedure.
So i developed the java mapping like this
import java.io.*;
import javax.xml.parsers.ParserConfigurationException;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
import com.sap.aii.mapping.api.StreamTransformation;
import com.sap.aii.mapping.api.StreamTransformationConstants;
public class Create_JDBC_Structure
     extends DefaultHandler
     implements StreamTransformation {
          public void setParameter(Map map) {
     public void execute(InputStream iStream, OutputStream oStream)
          throws StreamTransformationException {
          // TODO Auto-generated method stub
          this.out = oStream;
          try {
               DefaultHandler handler = this;
               SAXParserFactory factory =
SAXParserFactory.newInstance();
               SAXParser saxParser = factory.newSAXParser();
               saxParser.parse(iStream, handler);
          } catch (Exception e) {
               e.printStackTrace();
     public void startDocument() throws SAXException {
          // TODO Auto-generated method stub
          strbfr_FirstFields.append("<Statement>");
          strbfr_FirstFields.append("<ref_bod_put action=\"\">");
          strbfr_FirstFields.append("<table></table>");
          strbfr_FirstFields.append("<param1 type=\"\"></param1>");
          strbfr_FirstFields.append("<param2 type=\"\"></param2>");
          strbfr_FirstFields.append("<param3 type=\"\"></param3>");
          strbfr_FirstFields.append("<param4 type=\"\"></param4>");
          strbfr_FirstFields.append("<param5 type=\"\"></param5>");
          strbfr_FirstFields.append("<param6 type=\"\"></param6>");
          strbfr_FirstFields.append("<param7 type=\"\"></param7>");
          strbfr_FirstFields.append("<param8>");
     public void startElement(
          String namespaceURI,
          String localName,
          String qName,
          Attributes atts)
          throws SAXException {
               ifNewRec = true;
          if (ifNewRec) {
               if (!(qName.equals("Records"))) {
                    strbfr_LastField.append("&lt;");
                    strbfr_LastField.append(qName);
                    if (qName.equals("SITELEVEL")) {
                         strbfr_LastField.append(" " +
atts.getQName(0) + "=");
strbfr_LastField.append(atts.getValue(0));
                    if (qName.equals("DATETIME")) {
                         strbfr_LastField.append(" " +
atts.getQName(0) + "=");
strbfr_LastField.append(atts.getValue(0));
                    if (qName.equals("AMOUNT")) {
                         strbfr_LastField.append(" " +
atts.getQName(0) + "=");
strbfr_LastField.append(atts.getValue(0));
                    if (qName.equals("DATE_TIME")) {
                         strbfr_LastField.append(" " +
atts.getQName(0) + "=");
strbfr_LastField.append(atts.getValue(0));
                    if (qName.equals("AMOUNT1")) {
                         strbfr_LastField.append(" " +
atts.getQName(0) + "=");
strbfr_LastField.append(atts.getValue(0));
                    if (qName.equals("OPERAMT")) {
                         strbfr_LastField.append(" " +
atts.getQName(0) + "=");
strbfr_LastField.append(atts.getValue(0));
                    if (qName.equals("QUANTITY")) {
                         strbfr_LastField.append(" " +
atts.getQName(0) + "=");
strbfr_LastField.append(atts.getValue(0));
                    if (qName.equals("CCA_GLACCT")) {
                         strbfr_LastField.append(" " +
atts.getQName(0) + "=");
strbfr_LastField.append(atts.getValue(0));
                    strbfr_LastField.append("&gt;");
               } else {
strbfr_LastField.append("&lt;!DOCTYPE SYNC_ITEM_005&gt;");
strbfr_LastField.append("&lt;");
strbfr_LastField.append("SYNC_ITEM_005");
strbfr_LastField.append("&gt;");
     public void characters(char[] arg0, int arg1, int arg2)
          throws SAXException {
          if (ifNewRec) {
               strbfr_LastField.append(data);
     public void endElement(String namespaceURI, String localName, String
qName)
          throws SAXException {
          //          echoText();
          if (ifNewRec) {
               if (!(qName.equals("Records"))) {
                    strbfr_LastField.append("&lt;/");
                    strbfr_LastField.append(qName);
                    strbfr_LastField.append("&gt;");
               } else {
strbfr_LastField.append("&lt;/");
strbfr_LastField.append("SYNC_ITEM_005");
strbfr_LastField.append("&gt;");
          if (qName.equals("Records")) {
               strbfr_LastField.append("</param8>");
               strbfr_LastField.append("</ref_bod_put>");
               strbfr_LastField.append("</Statement>");
               ifNewRec = false;
     public void endDocument() throws SAXException {
          // TODO Auto-generated method stub
                    outputxml.append("<?xml version=\"1.0\"
encoding=\"UTF-8\"?>");
          outputxml.append(
               "<ns0:JDBC_MT
xmlns:ns0=\"http://ccamatil.com/amatil_c_ccaml/ptp/\">");
          outputxml.append(strbfr_LastField.toString());
          outputxml.append("</ns0:JDBC_MT>");
          print(outputxml.toString());
     private void print(String str) {
          try {
               out.write(str.getBytes());
               out.flush();
               out.close();
          } catch (IOException e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
          } catch (NullPointerException e) {
               e.printStackTrace();
     String data = null;
     private OutputStream out;
     private StringBuffer outputxml = new StringBuffer();
     private boolean ifNewRec = false;
     private int int_No_Rec;
     private StringBuffer strbfr_LastField = new StringBuffer();
     private StringBuffer strbfr_FirstFields = new StringBuffer();
     private Hashtable ht = new Hashtable();
so what are the changes i have to make to get whole payload as a sting
Thans In advance.
Rishi

public void execute(InputStream in, OutputStream out) {
          DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
          DocumentBuilder parser;
          try {
               parser = factory.newDocumentBuilder();
               // Erstellen eines DOM-Dokuments durch parsen des InputStream
               Document domDOC = parser.parse(in);
               // Ausgabe des Dokuments
               System.out.println(domDOC.getDocumentElement());
          } catch (ParserConfigurationException e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
          } catch (SAXException e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
          } catch (IOException e) {
               // TODO Auto-generated catch block
               e.printStackTrace();
     }// public void execute(InputStream in, OutputStream out) {
Regards Mario
Edited by: Mario Müller on Jul 31, 2008 7:13 AM
Edited by: Mario Müller on Jul 31, 2008 7:13 AM

Similar Messages

  • Problem while trying to get task payload in java client.

    Hi,
    I am working on worklist application in 10.1.3 and trying to get task payload in java client.
    In BPEL proces, assigning a XML as following:
    <copy>
    <from expression="bpws:getVariableData('inputVariable','payload','/client:ErrorHandlerBPELProcessRequest/client:inputXML')"/>
    <to variable="initiateTaskInput" part="payload"
    query="/taskservice:initiateTask/task:task/task:payload"/>
    </copy>
    And in java client:
    Element payload = (Element)task.getPayloadAsElement();
    String xml = payload.getNodeValue();
    Result is a null value for xml. I am able to see the input XML is assigned to task payload in BPEL console and payload object is as "oracle.xml.parser.v2.XMLElement@13ae670"
    I also tried with getPayload() which returns oracle.bpel.services.workflow.task.model.AnyTypeImpl object.
    Any help is appreciated.
    Thanks,
    -Vidya

    Hi,
    Thanks for the reply.
    When I checked for childnodes also, it is showing zero childnodes.
    I had tried with both getTaskQueryService().getTaskDetailsById() method and getTaskQueryService().getTaskVersionDetails() to get details about task.
    I am able to fetch all other details except payload which has been assgined in BPEL process. I don't know why payload is not available.
    Following is input for intiatetask:
    <initiateTaskInput>
    -<part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="payload">
    -<initiateTask xmlns="http://xmlns.oracle.com/bpel/workflow/taskService">
    -<task xmlns="http://xmlns.oracle.com/bpel/workflow/task">
    <title>OAG XML</title>
    <payload>
         <SyncPurchaseOrder releaseID="9.0" xmlns:ccf="http://www.oracle.com/XSL/Transform/java/com.myorg.integration.xpathfunctions.xsl.LookupFunctions" xmlns:ns1="http://www.openapplications.org/oagis/9" xmlns="http://www.openapplications.org/oagis/9">
         <ns1:ApplicationArea>
         <ns1:Sender>
              <ns1:LogicalID>
                                       LogicalID
                                       OAG Server Name</ns1:LogicalID>
              <ns1:ComponentID schemeAgencyName="'Jabil'">RR
                                  </ns1:ComponentID>
              <ns1:TaskID schemeAgencyName=" ">Inbound Order Event</ns1:TaskID>
              <ns1:ReferenceID>129537</ns1:ReferenceID>
              <ns1:ConfirmationCode>Never</ns1:ConfirmationCode>
         </ns1:Sender>
         <ns1:CreationDateTime>1969-12-31T18:59:50-05:00</ns1:CreationDateTime>
         <ns1:BODID>RR~4556839~129537</ns1:BODID>
         </ns1:ApplicationArea>
         <ns1:DataArea>
         <ns1:Sync/>
         <ns1:PurchaseOrder>
              <ns1:PurchaseOrderHeader>
              <ns1:DocumentID>
              <ns1:ID>4556839</ns1:ID>
              <ns1:VariationID schemeName="Version" schemeID=""/>
              </ns1:DocumentID>
              <ns1:Note status="Comments">test Rr inbound header notes</ns1:Note>
              <ns1:DocumentReference type="Contract">
              <ns1:DocumentID>
                   <ns1:ID>OSS1</ns1:ID>
              </ns1:DocumentID>
              </ns1:DocumentReference>
              <ns1:DocumentReference type="OrderProcessType">
              <ns1:DocumentID>
                   <ns1:ID>POI</ns1:ID>
              </ns1:DocumentID>
              </ns1:DocumentReference>
              <ns1:DocumentReference type="clientRefNo1">
              <ns1:DocumentID>
                   <ns1:ID>TEST CLIENT REF1</ns1:ID>
              </ns1:DocumentID>
              </ns1:DocumentReference>
              <ns1:DocumentReference type="clientRefNo2">
              <ns1:DocumentID>
                   <ns1:ID>TEST CLIENT REF2</ns1:ID>
              </ns1:DocumentID>
              </ns1:DocumentReference>
              <ns1:Status>
              <ns1:Code>Released</ns1:Code>
              </ns1:Status>
              <ns1:Party role="TradingPartner">
              <ns1:PartyIDs>
                   <ns1:ID schemeID="Primary">HPOSS</ns1:ID>
              </ns1:PartyIDs>
              </ns1:Party>
              <ns1:SupplierParty>
              <ns1:PartyIDs>
                   <ns1:ID schemeID="SupplierEBU"/>
              </ns1:PartyIDs>
              </ns1:SupplierParty>
              <ns1:SupplierParty>
              <ns1:PartyIDs>
                   <ns1:ID schemeID="SupplierEBU"/>
              </ns1:PartyIDs>
              </ns1:SupplierParty>
              <ns1:ShipToParty>
              <ns1:PartyIDs>
                   <ns1:ID schemeID="ShipToEBU">WMXAMS_HP KITTING</ns1:ID>
              </ns1:PartyIDs>
              </ns1:ShipToParty>
              <ns1:PaymentTerm type="Primary">
              <ns1:Term>
                   <ns1:ID schemeID="Primary"/>
              </ns1:Term>
              </ns1:PaymentTerm>
              <ns1:UserArea/>
              </ns1:PurchaseOrderHeader>
              <ns1:PurchaseOrderLine>
              <ns1:LineNumber>1</ns1:LineNumber>
              <ns1:Note status="Comments">TEST LINE1 NOTES</ns1:Note>
              <ns1:Status>
              <ns1:Code/>
              <ns1:ReasonCode>BACKLIGHT INOPERATIVE</ns1:ReasonCode>
              <ns1:Reason>TEST LINE1 NOTES</ns1:Reason>
              </ns1:Status>
              <ns1:Item>
              <ns1:ItemID agencyRole="Primary">
                   <ns1:ID>71BI2532101</ns1:ID>
              </ns1:ItemID>
              <ns1:Classification type="ShipFromOwnerEBU">
                   <ns1:Codes>
                   <ns1:Code listID="Primary" sequence="1">JGS AMSTERDAM</ns1:Code>
                   </ns1:Codes>
              </ns1:Classification>
              <ns1:Classification type="Priority">
                   <ns1:Codes>
                   <ns1:Code listID="Primary" sequence="1">High</ns1:Code>
                   </ns1:Codes>
              </ns1:Classification>
              <ns1:Specification type="Warehouse">
                   <ns1:Property sequence="1">
                   <ns1:NameValue name="esb"/>
                   </ns1:Property>
              </ns1:Specification>
              <ns1:Specification type="stkLoc">
                   <ns1:Property sequence="1">
                   <ns1:NameValue name="esb"/>
                   </ns1:Property>
              </ns1:Specification>
              <ns1:Specification type="Bin">
                   <ns1:Property sequence="1">
                   <ns1:NameValue name="esb"/>
                   </ns1:Property>
              </ns1:Specification>
              <ns1:Specification type="ItemsToAdd">
                   <ns1:Property>
                   <ns1:NameValue name="esb" type="SerialNumber">101</ns1:NameValue>
                   </ns1:Property>
              </ns1:Specification>
              </ns1:Item>
              <ns1:Quantity>1</ns1:Quantity>
              <ns1:UnitPrice>
              <ns1:Amount currencyID="USD">2.3</ns1:Amount>
              <ns1:PerQuantity>1</ns1:PerQuantity>
              </ns1:UnitPrice>
              <ns1:RequiredDeliveryDateTime>2007-02-22T18:00:00-05:00</ns1:RequiredDeliveryDateTime>
              <ns1:ShipToParty>
              <ns1:PartyIDs>
                   <ns1:ID schemeID="Primary">WMXAMS_HP KITTING</ns1:ID>
                   <ns1:ID schemeID="ShipToOwnerEBU">JGS AMSTERDAM</ns1:ID>
              </ns1:PartyIDs>
              <ns1:Location type="Warehouse">
                   <ns1:ID>WMXAMS_HP KITTING</ns1:ID>
              </ns1:Location>
              <ns1:Location type="StockLocation">
                   <ns1:ID>SL1</ns1:ID>
              </ns1:Location>
              <ns1:Location type="bin">
                   <ns1:ID>Bin1</ns1:ID>
              </ns1:Location>
              <ns1:Location type="Condition">
                   <ns1:ID>Workable</ns1:ID>
              </ns1:Location>
              </ns1:ShipToParty>
              <ns1:UserArea>
              <cl:myorg.SyncPurchaseOrder.PurchaseOrderLine.UserArea xmlns:cl="http://www.myorg.com/oagis">
                   <cl:Party role="ShipFrom">
                   <cl:ID/>
                   </cl:Party>
                   <cl:ShipByDate>2007-02-22T18:00:00-05:00</cl:ShipByDate>
                   <cl:ItemDetail>
                   <cl:SubInventory>
                        <cl:SubInventoryQuantity>1</cl:SubInventoryQuantity>
                        <cl:SubInventoryStatus>AVL</cl:SubInventoryStatus>
                   </cl:SubInventory>
                   </cl:ItemDetail>
                   <cl:Flex/>
              </cl:myorg.SyncPurchaseOrder.PurchaseOrderLine.UserArea>
              </ns1:UserArea>
              </ns1:PurchaseOrderLine>
              <ns1:PurchaseOrderLine>
              <ns1:LineNumber>2</ns1:LineNumber>
              <ns1:Note status="Comments">TEST LINE2 NOTES</ns1:Note>
              <ns1:Status>
              <ns1:Code/>
              <ns1:ReasonCode>BATTERY DRAINS TOO QUICKLY</ns1:ReasonCode>
              <ns1:Reason>TEST LINE2 NOTES</ns1:Reason>
              </ns1:Status>
              <ns1:Item>
              <ns1:ItemID agencyRole="Primary">
                   <ns1:ID>71BI2532101</ns1:ID>
              </ns1:ItemID>
              <ns1:Classification type="ShipFromOwnerEBU">
                   <ns1:Codes>
                   <ns1:Code listID="Primary" sequence="1">JGS AMSTERDAM</ns1:Code>
                   </ns1:Codes>
              </ns1:Classification>
              <ns1:Classification type="Priority">
                   <ns1:Codes>
                   <ns1:Code listID="Primary" sequence="1">High</ns1:Code>
                   </ns1:Codes>
              </ns1:Classification>
              <ns1:Specification type="Warehouse">
                   <ns1:Property sequence="1">
                   <ns1:NameValue name="esb"/>
                   </ns1:Property>
              </ns1:Specification>
              <ns1:Specification type="stkLoc">
                   <ns1:Property sequence="1">
                   <ns1:NameValue name="esb"/>
                   </ns1:Property>
              </ns1:Specification>
              <ns1:Specification type="Bin">
                   <ns1:Property sequence="1">
                   <ns1:NameValue name="esb"/>
                   </ns1:Property>
              </ns1:Specification>
              <ns1:Specification type="ItemsToAdd">
                   <ns1:Property>
                   <ns1:NameValue name="esb" type="SerialNumber">101</ns1:NameValue>
                   </ns1:Property>
              </ns1:Specification>
              </ns1:Item>
              <ns1:Quantity>1</ns1:Quantity>
              <ns1:UnitPrice>
              <ns1:Amount currencyID="USD">2.5</ns1:Amount>
              <ns1:PerQuantity>1</ns1:PerQuantity>
              </ns1:UnitPrice>
              <ns1:RequiredDeliveryDateTime>2007-02-22T18:00:00-05:00</ns1:RequiredDeliveryDateTime>
              <ns1:ShipToParty>
              <ns1:PartyIDs>
                   <ns1:ID schemeID="Primary">WMXAMS_HP KITTING</ns1:ID>
                   <ns1:ID schemeID="ShipToOwnerEBU">JGS AMSTERDAM</ns1:ID>
              </ns1:PartyIDs>
              <ns1:Location type="Warehouse">
                   <ns1:ID>WMXAMS_HP KITTING</ns1:ID>
              </ns1:Location>
              <ns1:Location type="StockLocation">
                   <ns1:ID>SL1</ns1:ID>
              </ns1:Location>
              <ns1:Location type="bin">
                   <ns1:ID>Bin1</ns1:ID>
              </ns1:Location>
              <ns1:Location type="Condition">
                   <ns1:ID>Workable</ns1:ID>
              </ns1:Location>
              </ns1:ShipToParty>
              <ns1:UserArea>
              <cl:myorg.SyncPurchaseOrder.PurchaseOrderLine.UserArea xmlns:cl="http://www.myorg.com/oagis">
                   <cl:Party role="ShipFrom">
                   <cl:ID/>
                   </cl:Party>
                   <cl:ShipByDate>2007-02-22T18:00:00-05:00</cl:ShipByDate>
                   <cl:ItemDetail>
                   <cl:SubInventory>
                        <cl:SubInventoryQuantity>1</cl:SubInventoryQuantity>
                        <cl:SubInventoryStatus>AVL</cl:SubInventoryStatus>
                   </cl:SubInventory>
                   </cl:ItemDetail>
                   <cl:Flex/>
              </cl:myorg.SyncPurchaseOrder.PurchaseOrderLine.UserArea>
              </ns1:UserArea>
              </ns1:PurchaseOrderLine>
         </ns1:PurchaseOrder>
         </ns1:DataArea>
         </SyncPurchaseOrder>
    </payload>
    <taskDefinitionURI>http://localhost:80/orabpel/default/ErrorHandlerBPEL/1.0/SimpleUserActivity/SimpleUserActivity.task
    </taskDefinitionURI>
    <creator/>
    <ownerUser/>
    <ownerGroup/>
    <priority>3
    </priority>
    <identityContext/>
    <userComment/>
    <attachment/>
    -<processInfo>
    <domainId>default
    </domainId>
    <instanceId>590085
    </instanceId>
    <processId>ErrorHandlerBPEL
    </processId>
    <processName>ErrorHandlerBPEL
    </processName>
    <processType>BPEL
    </processType>
    <processVersion>1.0
    </processVersion>
    </processInfo>
    <systemAttributes/>
    <systemMessageAttributes/>
    <titleResourceKey/>
    <callback/>
    <identificationKey/>
    </task>
    </initiateTask>
    </part>
    </initiateTaskInput>
    Thanks,
    -Vidya

  • Getting the payload from a faulted process

    I'm using the fault framework and I need to know how to get the payload from the faulted process. I have a custom java logger that uses the locator API, but I'm finding out that this will only work if the process has been persisted to the dehydration store. Is there another way to get the payload? I know I can use checkpoint/wait within the bpel process to force dehydration but I'm looking for another alternative

    The problem is the cube instance table has not been populated yet for the instance. So from a faulted instance that has NOT been dehydrated to cube instance, how will I get to the invoke_message table, or how will I get the payload from the faulted instance.
    I'm able to get the document fine when the cube_instance table is populated, my problem is sometimes the instance has not been dehydrated and cube_instance is not available. So from a faulted instance how will I get to the invoke_message table without using the cube_instance table

  • Function to get message payload by MESSAGE_ID

    Hello Experts,
    Can you please give me the name of the function to get message payload by MESSAGE_ID?
    I was trying to call SXMB_SELECT_MESSAGES, but it returnes just technical info about message (like sender, receiver, etc), but not the payload.
    Thanks in advance for your answers!

    Akshay, but the main (original) problem still remains: How I can get an access to System Error description (Connection timeout, Connction refused, etc)?
    If I will build a custom Alert in my UDF and then will call SALERT_CREATE to raise an Alert, than how will I fill the Alert Body with Alert Description?
    I can have either the "native" Alert, containing just the Alert Description or "custom" Alert, containing some business data. But I need both.
    So is there any way to access the System Error description in mapping?

  • I still have problems with getting my website online. I have defined my server. Then I did the test and there was a connection via FTP. I put my files on the external server and there is a connection with the external server. But when I check to see my we

    I still have problems with getting my website online. I have defined my server. Then I did the test and there was a connection via FTP. I put my files on the external server and there is a connection with the external server. But when I check to see my website online (with Firefox, Explorer, Chrome browser) I always get the message 'Forbidden, You don't have permission to access / on this server.' Can somebody help me please? I have to get my website online..Thank you!

    Hello Els,
    it's well known, that in all these cases you describe I'm not a friend of a detailed Troubleshooting (I see Nancy#s smile already).
    To be able to be independent in all this things It is one of the reasons why I prefer an external FTP program. The difficulties with which you have to fight encourage me in this opinion, not least because we always search for experts, we don't charge a "jack of all trades".
    To manage several websites or to upload my files and sometimes for the opposite way, for a necessary download from my server or to use a "a site-wide synch", I'm using FileZilla. It simply looks easier for me to keep track of all operations precisely and generate or reflect easily the desired tree structure.
    Above all, FileZilla has a feature (translation from my German FileZilla) called "compare file list". Here it's possible to use file size or modification time as a criterion. There is also the possibility to "hide identical files", so that only these files which you want to redact remain visible.
    And even if it means you have to install a new program, I am convinced that there is an advantage. Here is the link to get it and where you can read informations about how it works:
    http://filezilla-project.org/ and http://wiki.filezilla-project.org/Tutorial#Using_the_site_manager
    Mac: Mac OS X (Use: Show additional download options)
    http://filezilla-project.org/download.php
    Of course, you also need all the access data to reach your server and for MIME issues, you should contact your web host/provider.
    Good luck!
    Hans-Günter
    P.S.
    Since I use two screens, the whole thing became even more comfortable.

  • Hi, I have a problem with getting my apple Id working for me. It's been 2 months since it happened and Apple failed to act. I can tell my story proerly, but am not sure, you guys can help, so I just copy my message to them today, I am trying to get it acr

    Hi, I have a problem with getting my apple Id working for me. It's been 2 months since it happened and Apple failed to act. I can tell my story proerly, but am not sure, you guys can help, so I just copy my message to them today, I am trying to get it across all the places around to pay their attention. This is a desperate move, so if you are not the right people to help me to get my message accross, may be you can advise where can I go.
    Thank you, and sorry for the language.
    Vitas Dijokas
    I am sorry to say that, but your security makes my life miserable – it’s been 2 months since my Apple ID account got stuck, and since then I cannot update 37 applications (to date), i.e. most of my applications. Half of them I bought. I also paid for iCloud, and it is not working. I paid money and I am stuck with old applications and no iCloud. Your security *****. Your service ***** too. It took your service 1 month to finally understand why this happened to me, and it took me tens of emails to you and 3 hours of telephone conversation to find out the reason for my problem. And the problem is still not fixed. NOT FIXED. You just leave your customer – the one who paid you money and spent so much time with you trying to help you help me – and nothing. You tell me:  “Vitas, Stick your stinky iphone in your *** and enjoy life, we do not care!” *************.
    It is ******* outrageous, and you should know that,  guys. Get into the ******* database and correct the bug. Get someone in the partners-telephone carriers company (it is Orange as carreer and Cellcom as seller of the phone)  authorized to Identify me in personal encounter in one of the branches in Israel (where I live) and make sure it is really me, and get the ******* system accept my password and let me use my phone.
    Otherwise **** off. None of my friends will get my advise to buy an iphone or any of apple products. And I think you should be very attentive to cases like this, guys. Do your work for the money we pay, or disappear. There are many others eager to take your place, and if the problem is not fixed I will eventually go to the others. My patience is lost, and as soon as I can afford another phone I will change it. AND I WILL TRY TO GIVE BAAAAAD PUBLICITY TO APPLE – I am threatening here, so ACT NOW.
    Vitas Dijokas

    Well, it seems waiting is not my strong suit..! I renamed a javascript file called recovery to sessionstore. This file was in the folder sessionstore-backups I had copied from mozilla 3 days ago, when my tabs were still in place. I replaced the sessionstore in mozilla's default folder with the renamed file and then started mozilla. And the tabs reappeared as they were 3 days ago!
    So there goes the tab problem. But again when I started mozilla the window saying "a script has stopped responding" appeared, this time the script being: chrome//browser/contenttabbrowser.xml2542
    If someone knows how to fix this and make firefox launch normally, please reply! Thank you

  • I know many have this issue but i can't find a solution to the problem. i get message saying insuffisiant disk space in the volume iPhoto library and i have plenty of space available. i have the new macbook pro with retina display.

    I know many have this issue but i can't find a solution to the problem. i get message saying insuffisiant disk space in the volume iPhoto library and i have plenty of space available. i have the new macbook pro with retina display. i have never seen this message before and i have 2 other macbooks and have had many other also. i am assuming this is a problem with the new macbook retina. does anyone know the exact fix to this issue? i have seen many sugestions to try to fix this issue but none have solved the issue for anyone that i can find in the Apple Support Community. thank for looking into this in advance.
    ******A true apple fan********

    Actually your suggestions are the ones that i have tried. i have seen that you have tried to help others with this issue and the only one that i could find that said they found the problem said that it was an ilife update issue and it fixed it and i have no available updates. i know it has to do with something in photo stream because it happens when i create a new library and it is loading the photos but i get the message before i reach the maximum 1000 photos. so i've tried updating, new library(first backing up photos and then deleting them from iPhoto), reinstalling OSX many times, running disc utilities. I called Apple the first day i had this issue and i was the first person to call them for support with the retina display and i actually had it escalated to a senior advisor and we thought we fixed the problem but we did not. i am pretty fluent in dealing with troubleshooting these type of issues and this is the first time i'm reaching out to the community. i figured now that the retina has been out some time now that there would be an obvious answer to this issue. thanks for the quick reply.
    Bebers5

  • Problem in getting the database connection from a connection pool

    Hai All,
    I am facing a problem in getting the database connection from a connection pool created on weblogic server 8.1.
    I am using the Oracle database 8.1.7.
    I have configured my connection pool, datasource and JNDI in weblogic.
    In my java program i have the following code to retrieve the connection.
    import java.sql.*;    
    import java.util.Hashtable;
    import javax.naming.Context;
    import javax.naming.InitialContext;
    class jdbcshp1 {
        public static void main(String[] args) {
         Connection connection = null;
         try {
               Hashtable ht = new Hashtable();
               ht.put(Context.INITIAL_CONTEXT_FACTORY,"weblogic.jndi.WLInitialContextFactory");  // Wanna get rid of this.
               ht.put(Context.PROVIDER_URL,"t3://localhost:7001"); // wanna get rid of this.
               // Get a context for the JNDI look up
               Context ctx = new InitialContext(ht);
            javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup ("myjndi1");
              //Create a connection object
              connection = ds.getConnection();
         The above code is working fine but, the two ht.put statements are creating problem.
    The problem is, after converting the application into WAR file it can be deployed
    on any machine or different port on same machine. My application fails if its deployed on
    weglogicserver which is at different port.
    Is there any way that i can get rid of those ht.put statements or any other way to solve the problem.
    any help is appreciated.
    Thanks in advance
    Pooja.

    Hai All,
    Firstly, thanks for ur reply.
    Even i have seen some code which uses context constructor with out any parameter and works fine.
    i dont understand why its not working for my code.
    When i remove those ht.put code and use context constructor with out any parameter, it giving an error.
    Context ctx = new InitialContext();
    javax.sql.DataSource ds = (javax.sql.DataSource) ctx.lookup ("ocjndi");
    connection = ds.getConnection();The error is as follows:
    javax.naming.NoInitialContextException: Need to specify class name in environment or system property, or as an applet parameter, or in an application resource file: java.naming.factory.initial
    the above error is forcing me to include those code but if the port number is changed the code will not work. Plz let meknow if some setting have to be made.
    I appreciate all ur valuable help.
    Thanks once again.
    Pooja.

  • Logon Problems? Get support is not working in Portal logon Page

    Hi Experts,
    I have created A Role and assigned Logon_help action to it and assigned the Role to Anonymous group.
    So i have Logon Problem? Get Support link on Portal Logon Screen. When i click on it, i was asked to provide userid and email id.
    I have entered them. i got a message the my userid is reset and sent to my mail. but havent received any mail, and the password is changed which have to log in as admin and reset the password. 
    Help me this regards.
    Thank you
    Siva

    you might not have correctly configured your mail servers....
    refer below link
    http://help.sap.com/saphelp_nw70/helpdata/en/89/c5fd430b63c74bbdfaa5f2ec9bb20b/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/44/0761cea5c610b3e10000000a11466f/frameset.htm

  • Anyone know when Apple will bring out a patch to fix the volume problem you get on mac mini after downloading OS 10.8.5

    Anyone know when Apple will bring out a patch to fix the volume problem you get on mac mini after downloading OS 10.8.5?

    Only Apple knows the answer to whether or not there is a verified problem and if so when will a fix be released.  As is their custom, Apple does not talk about these things and the rules of these communities prohibit speculation about future udates or upgrades. It is probably safe to say if a fix is deemed necessary it will be called OS X 10.8.6.

  • Just moved my email from entourage to Mail. Having real problems with getting my signatures to work properly. When adding in a small company logo, windows computers only receive signature as an attachment. Am sending email as Rich Text. Any ideas on a fix

    Just moved my email from Entourage to Mail. Having real problems with getting my signatures to work properly despite sending email as Rich Text.
    When adding in a small company logo to the signature, PC's / windows computers only receive signature and logo as attachments.
    I've tried all possible fixes I can find including getting a PC user to format the logo but no joy. Has anyone experienced this and any ideas on a fix gratefully received.

    Send it as html so the signature is an image source URL

  • Problem in getting parameter value from selection screen in web dynpro abap

    Hi,
    I am facing problem in getting parameter value from selection screen.
    Please find my code below:
    DATA LT_PAR_ITEM TYPE IF_WD_SELECT_OPTIONS=>TT_SELECTION_SCREEN_ITEM.
    FIELD-SYMBOLS:<FS_PAR_ITEM> LIKE LINE OF LT_PAR_ITEM,
                                 <FS_OBJ_USAGE>    TYPE REF TO data.
      WD_THIS->M_HANDLER->GET_PARAMETER_FIELDS( IMPORTING ET_FIELDS = LT_PAR_ITEM ).
      LOOP AT LT_PAR_ITEM ASSIGNING <FS_PAR_ITEM>.
        CASE <FS_PAR_ITEM>-M_ID.
          WHEN `OBJ_USAGE`.
             ASSIGN <FS_PAR_ITEM>-M_VALUE->* TO <FS_OBJ_USAGE>.      
    [ Here, sy-subrc is 4,  <FS_OBJ_USAGE> is not assigning.]
        ENDCASE.
      ENDLOOP. 
    So, can any one solve this problem.
    Thanks in advance,
    Radhika

    Hi Radhika,
    Try using GET_RANGE_TABLE_OF_SEL_FIELD...
    Please Refer below code..
       DATA: NODE_FLIGHTS TYPE REF TO IF_WD_CONTEXT_NODE.
      DATA: RT_CARRID TYPE REF TO DATA.
      DATA: ISFLIGHT TYPE TABLE OF SFLIGHT.
      DATA: WSFLIGHT TYPE SFLIGHT.
      FIELD-SYMBOLS: <FS_CARRID> TYPE TABLE.
    Retrieve the data from the select option
      RT_CARRID = WD_THIS->M_HANDLER->GET_RANGE_TABLE_OF_SEL_FIELD( I_ID = 'S_CARR_ID' ).
    Assign it to a field symbol
      ASSIGN RT_CARRID->* TO <FS_CARRID>.
      CLEAR ISFLIGHT. REFRESH ISFLIGHT.
      SELECT * INTO CORRESPONDING FIELDS OF TABLE ISFLIGHT FROM SFLIGHT
                           WHERE CARRID IN <FS_CARRID>.
      NODE_FLIGHTS = WD_CONTEXT->GET_CHILD_NODE( NAME = `FLIGHTS` ).
      NODE_FLIGHTS->BIND_ELEMENTS( ISFLIGHT ).
    Thanks,
    Regards,
    Kiran

  • My dvd player will not let me change regions, it just quits when i do, now its stuck on region 1. Any thoughts how i can solve this problem or get round it in some way?

    My dvd player will not let me change regions, it says i have one more chance to change it, then it just quits when i do, now its stuck on region 1. Any thoughts how i can solve this problem or get round it in some way?

    Usually if you have some kind of hardware failure there is some beeping during POST or most motherboards now have LED indicators to produce and error message based on the type of failure
    So if its bad memory, not place properly, mismatched, processor not inserted properly, mismatched voltage or voltage connector not present etc it beeps or generates the error id.
    Power supplies can be tested for failure. There are some walk throughs for testing just them with a switch, paperclip or a jumper (I'd suggest not doing this if you are not familiar with the dangers of electricity).
    Memory can be tested with memory diagnostics programs like Memtest+
    Processors can overheat if the proper precautions have not been taken usually you will get a POST beep or error code for that.
    If the motherboard has no response then do the basics first:
    Check power connectors and power supply. Once you determine that is not the case move on to other items like graphics cards in all the way or memory.

  • If I report a problem and get a "you can't get

    If I report a problem and get a "you can't get your money back", is that the end or has the matter been sent to support for a look?
    What I did:
    I have family share and I found Xcom there with the cloud download symbol, I tapped it and it said "you can't download this", about how specific it was. I tapped it again and it started downloading, never asked for password (to my memory). Later I get an email stating that I had been charged for the game. I submitted a problem and got a fast response, "you can't get your money back". Now, is that it? Or has the matter been forwarded to Apple? If I am not happy, and it hasn't been forwarded where do I turn?

    It's Apple who told you no. That's it unless you want to try calling Apple Care.

  • Problems with getting my Ipod Touch to work on my Sony Bravia or any TV

    I am having problems with getting videos or movies to play on my Sony Bravia HDTV or any TV. I have a first generation Ipod Touch and I have the Apple AV Composite Cables and all I get is sound for both TV's that I tried. I read one post where some guy had a faulty Ipod that wouldn't work. Does anyone know how of something hidden or special that needs to be done or how did they fix the problem if they had the same one? Thank, ejcarlson

    Check connection, if you have a case on your Ipod the connection may not be good enough.

Maybe you are looking for