• KBrown
  • NEWBIE
  • 0 Points
  • Member since 2003

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 7
    Questions
  • 3
    Replies

Your database has some problem, and it's causing our query calls to come back w/ faults!
Why is a query call causing a CREATE TABLE anyhow??

Caused by: java.sql.SQLException: ORA-01658: unable to create INITIAL extent for segment in tablespace APICURSOR
ORA-06512: at "APICURSOR.CREATE_TABLE", line 5
ORA-06512: at line 1

        at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:260)
        at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:169)
        at org.apache.axis.encoding.DeserializationContextImpl.endElement(DeserializationContextImpl.java:1015)
        at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source)
        at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown Source)
        at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
        at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
        at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
        at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
        at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
        at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
        at javax.xml.parsers.SAXParser.parse(Unknown Source)
        at org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:242)
        at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:538)
        at org.apache.axis.Message.getSOAPEnvelope(Message.java:376)
        at org.apache.axis.client.Call.invokeEngine(Call.java:2583)
        at org.apache.axis.client.Call.invoke(Call.java:2553)
        at org.apache.axis.client.Call.invoke(Call.java:2248)
        at org.apache.axis.client.Call.invoke(Call.java:2171)
        at org.apache.axis.client.Call.invoke(Call.java:1691)
        at com.locallogic.connector.salesforce.sforce25.SoapBindingStub.query(SoapBindingStub.java:979)
        at com.locallogic.connector.salesforce.SalesForceConnector25.query(SalesForceConnector25.java:254)

  • March 16, 2004
  • Like
  • 0

im trying to add a web integration link that will open a popup window, obtain some input, and then take some action via the sForce API. i want the salesforce.com frame that created the popup to refresh once i close the popup (so it will show the new values changed via sForce) how can i do this? i tried adding a "Close" hyperlink in my popup with onclick="opener.location.reload();" but got a permissions error.

i also tried opener.location.href="https://na1.salesforce.com/<my opportunity ID>" w. no luck either.

  • December 09, 2003
  • Like
  • 0

i'm using the partner API to learn the structure of entities, as detailed in teh documentation.
i've noticed that currency fields are always coming back as type=double/soapType=double instead of type=currency/soapType=double. in the 2.0 API, these fields (Opportunity.Amount for example) were reported as currency fields. am i missing something?

thanks.

  • December 05, 2003
  • Like
  • 0

does the API 2.5 server support compression? i can't coerse it to compress large XML messages!
i'm using the following server:
https://na1.salesforce.com/services/Soap/u/2.5

HELP!

  • December 05, 2003
  • Like
  • 0

i tried logging in and received an HTTP 301 Moved Permantely error. i re-genreted my WSDL to verify that i'm using the correct port endpoint, and indeed i am!

temporary hiccup, or have the services moved? 

sent:
POST /services/Soap/c/2.5 HTTP/1.1
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.1
Host: www.salesforce.com
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 403
Connection: close
Accept-Encoding: gzip

received:
HTTP/1.1 301 Moved Permanently
Date Fri, 05 Dec 2003 08:13:29 GMT
Server Apache
Location http://www.salesforce.com/us/products/customer-service-support.jsp
Connection close
Transfer-Encoding chunked
Content-Type text/html; charset=iso-8859-1
X-Pad avoid browser bug
(301)Moved Permanently

  • December 05, 2003
  • Like
  • 0

our application stopped working because the describe call output changed this morning.

it's returning malformed xml (recordTypeMappings elements in the display substructure) for the opportunity entity. for example, the <0123000000000ZG> element is rejected by SAX as a bad name:

<0123000000000ZG xsi:type="tns:array">Existing Customer - UpgradeExisting Customer - ReplacementExisting Customer - DowngradeNew Customer

entire "opportunity type" field xml:

<value xsi:type="tns:map"><display xsi:type="tns:map"><type xsi:type="xsd:string">picklist</type><values xsi:type="tns:array"><value xsi:type="tns:map"><value xsi:type="xsd:string">Existing Customer - Upgrade</value></value><value xsi:type="tns:map"><value xsi:type="xsd:string">Existing Customer - Replacement</value></value><value xsi:type="tns:map"><value xsi:type="xsd:string">Existing Customer - Downgrade</value></value><value xsi:type="tns:map"><value xsi:type="xsd:string">New Customer</value></value></values><recordTypeMappings xsi:type="tns:map"><0123000000000ZG xsi:type="tns:array"><value xsi:type="tns:map"><value xsi:type="xsd:string">Existing Customer - Upgrade</value></value><value xsi:type="tns:map"><value xsi:type="xsd:string">Existing Customer - Replacement</value></value><value xsi:type="tns:map"><value xsi:type="xsd:string">Existing Customer - Downgrade</value></value><value xsi:type="tns:map"><value xsi:type="xsd:string">New Customer</value></value></0123000000000ZG></recordTypeMappings></display><type xsi:type="xsd:string">string</type><picklistName xsi:type="xsd:string">opportunityType</picklistName><label xsi:type="xsd:string">Opportunity Type</label><length xsi:type="xsd:int">40</length><field xsi:type="xsd:string">type</field></value>

  • November 23, 2003
  • Like
  • 0

Your database has some problem, and it's causing our query calls to come back w/ faults!
Why is a query call causing a CREATE TABLE anyhow??

Caused by: java.sql.SQLException: ORA-01658: unable to create INITIAL extent for segment in tablespace APICURSOR
ORA-06512: at "APICURSOR.CREATE_TABLE", line 5
ORA-06512: at line 1

        at org.apache.axis.message.SOAPFaultBuilder.createFault(SOAPFaultBuilder.java:260)
        at org.apache.axis.message.SOAPFaultBuilder.endElement(SOAPFaultBuilder.java:169)
        at org.apache.axis.encoding.DeserializationContextImpl.endElement(DeserializationContextImpl.java:1015)
        at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source)
        at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndElement(Unknown Source)
        at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(Unknown Source)
        at org.apache.xerces.impl.XMLDocumentFragmentScannerImpl.scanDocument(Unknown Source)
        at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
        at org.apache.xerces.parsers.DTDConfiguration.parse(Unknown Source)
        at org.apache.xerces.parsers.XMLParser.parse(Unknown Source)
        at org.apache.xerces.parsers.AbstractSAXParser.parse(Unknown Source)
        at javax.xml.parsers.SAXParser.parse(Unknown Source)
        at org.apache.axis.encoding.DeserializationContextImpl.parse(DeserializationContextImpl.java:242)
        at org.apache.axis.SOAPPart.getAsSOAPEnvelope(SOAPPart.java:538)
        at org.apache.axis.Message.getSOAPEnvelope(Message.java:376)
        at org.apache.axis.client.Call.invokeEngine(Call.java:2583)
        at org.apache.axis.client.Call.invoke(Call.java:2553)
        at org.apache.axis.client.Call.invoke(Call.java:2248)
        at org.apache.axis.client.Call.invoke(Call.java:2171)
        at org.apache.axis.client.Call.invoke(Call.java:1691)
        at com.locallogic.connector.salesforce.sforce25.SoapBindingStub.query(SoapBindingStub.java:979)
        at com.locallogic.connector.salesforce.SalesForceConnector25.query(SalesForceConnector25.java:254)

  • March 16, 2004
  • Like
  • 0

i tried logging in and received an HTTP 301 Moved Permantely error. i re-genreted my WSDL to verify that i'm using the correct port endpoint, and indeed i am!

temporary hiccup, or have the services moved? 

sent:
POST /services/Soap/c/2.5 HTTP/1.1
Content-Type: text/xml; charset=utf-8
Accept: application/soap+xml, application/dime, multipart/related, text/*
User-Agent: Axis/1.1
Host: www.salesforce.com
Cache-Control: no-cache
Pragma: no-cache
SOAPAction: ""
Content-Length: 403
Connection: close
Accept-Encoding: gzip

received:
HTTP/1.1 301 Moved Permanently
Date Fri, 05 Dec 2003 08:13:29 GMT
Server Apache
Location http://www.salesforce.com/us/products/customer-service-support.jsp
Connection close
Transfer-Encoding chunked
Content-Type text/html; charset=iso-8859-1
X-Pad avoid browser bug
(301)Moved Permanently

  • December 05, 2003
  • Like
  • 0