HTTPS using a Multipart Post

I have been given a new requirement to send a zipped file(s) to a client using HTTPS using a Multipart Post.
I have found an example...
DECLARE
  req   utl_http.req;
  resp  utl_http.resp;
  value VARCHAR2(1024);
BEGIN
  req := utl_http.begin_request('http://www.psoug.org');
  resp := utl_http.get_response(req);
  LOOP
    utl_http.read_line(resp, value, TRUE);
    dbms_output.put_line(value);
  END LOOP;
  utl_http.end_response(resp);
EXCEPTION
  WHEN utl_http.end_of_body THEN
    utl_http.end_response(resp);
END;Which obviously returns and displays the HTML content of the URL, however we need to post zipped files in the content. We have been told by someone at Oracle that we can use the UTL_HTTP package to do this but when i search for this all i find is Java.
Can anyone point me in the right direction as to where to start and any code examples would be a great help, i tried posting this in the SQL / PLSQL forum but with no success..
Thanks in advance
Graham.

Hi:
This is tricky one and I have to say that there is not a lot around about it.
The example you have shown is for UTL_HTTP and while you are on the right track, you want HTTPS and that requires, in addition to what you, the use of the Oracle Wallet. The wallet has to be setup on your machine and referenced in your code. Additionally, you need to be quite clear about the data that is being expected by the remote system to which you are sending the POST request.
Here is a code example that I have tried to explain a bit for you. Obviously my code is doing something quite different from what you require but the methodology will be similar:
+++++++++++++++++++++++
create or replace
PROCEDURE ABS_MSG_API
(cab IN VARCHAR2,
booking_ref IN NUMBER)
AS
l_cab VARCHAR2(10);
l_booking_ref NUMBER;
l_uuid VARCHAR2(50);
l_answer integer;
req utl_http.req;
resp utl_http.resp;
value clob;
listing VARCHAR2(400);
BEGIN
l_cab := cab;
l_booking_ref := booking_ref;
listing := 'https://........<site address>;
/* next you must identify the location of your wallet */
utl_http.set_wallet('file:C:\Documents and Settings\administrator\ORACLE\WALLETS','redy2go4it');
utl_http.set_transfer_timeout(60);
dbms_output.put_line(listing);
/* next we start the request. Though a GET here, a POST is the same thing */
req := utl_http.begin_request(listing,'GET','HTTP/1.1');
/* in my case a username and password are passed - think of this at your POST parameters */
utl_http.set_header(req,'Username',xxxx);
utl_http.set_header(req,'Password',xxxxx);
utl_http.set_header(req,'Version','99.99.99');
/* the rest is much like your code already, with some debug capability */
resp := utl_http.get_response(req);
DBMS_OUTPUT.PUT_LINE('Request Method....'||req.METHOD);
DBMS_OUTPUT.PUT_LINE('HTTP Response Status Code: ' || resp.status_code);
DBMS_OUTPUT.PUT_LINE('HTTP Response Reason Phrase: ' || resp.reason_phrase);
DBMS_OUTPUT.PUT_LINE('HTTP Response Version: ' || resp.http_version);
LOOP
utl_http.read_line(resp, value, TRUE);
l_answer := instr(value,'uuid',1,1);
IF l_answer > 0 THEN
l_uuid := substr(value,l_answer+6,36);
dbms_output.put_line('The string is.....'||l_uuid);
END IF;
IF l_answer > 0 THEN
send_dt_message(l_uuid,l_cab,l_booking_ref);
EXIT;
END IF;
END LOOP;
utl_http.end_response(resp);
EXCEPTION
WHEN utl_http.end_of_body THEN
utl_http.end_response(resp);
l_answer := instr(value,'uuid',1,1);
dbms_output.put_line('The value is......'||l_answer);
END ABS_MSG_API;
When you submit a POST, all of the parameters are passed as part of the header. You must determine exactly the information being expected by the remote system.
You can find further information is you search for HTTPS on Ask Tom. There is some useful stuff there.
I use UTL_HTTP for HTTPS requrests all the time. As I said, it is a bit tricky at first, but the key is the Oracle Wallet and then reading the UTL_HTTP documentation that comes on your DB media disc under PLSQL Packaged Procedures.
I hope this helps.
Bruce Clark

Similar Messages

  • HTTP Multipart Post

    I have been given a new requirement to send a zipped file(s) to a client using HTTPS using a Multipart Post.
    I have found an example...
    DECLARE
      req   utl_http.req;
      resp  utl_http.resp;
      value VARCHAR2(1024);
    BEGIN
      req := utl_http.begin_request('http://www.psoug.org');
      resp := utl_http.get_response(req);
      LOOP
        utl_http.read_line(resp, value, TRUE);
        dbms_output.put_line(value);
      END LOOP;
      utl_http.end_response(resp);
    EXCEPTION
      WHEN utl_http.end_of_body THEN
        utl_http.end_response(resp);
    END;Which obviously returns and displays the HTML content of the URL, however we need to post zipped files in the content. We have been told by someone at Oracle that we can use the UTL_HTTP package to do this but when i search for this all i find is Java.
    Can anyone point me in the right direction as to where to start and any code examples would be a great help.
    Thanks in advance
    Graham.

    I have been given a new requirement to send a zipped file(s) to a client using HTTPS using a Multipart Post.
    I have found an example...
    DECLARE
      req   utl_http.req;
      resp  utl_http.resp;
      value VARCHAR2(1024);
    BEGIN
      req := utl_http.begin_request('http://www.psoug.org');
      resp := utl_http.get_response(req);
      LOOP
        utl_http.read_line(resp, value, TRUE);
        dbms_output.put_line(value);
      END LOOP;
      utl_http.end_response(resp);
    EXCEPTION
      WHEN utl_http.end_of_body THEN
        utl_http.end_response(resp);
    END;Which obviously returns and displays the HTML content of the URL, however we need to post zipped files in the content. We have been told by someone at Oracle that we can use the UTL_HTTP package to do this but when i search for this all i find is Java.
    Can anyone point me in the right direction as to where to start and any code examples would be a great help.
    Thanks in advance
    Graham.

  • Hi, I am using HP11 and iPlanet web server. When trying to upload files over HTTP using FORM ENCTYPE="multipart/form-data" that are bigger than a few Kilobytes i get a 408 error. (client timeout).

    Hi, I am using HP11 and iPlanet web server. When trying to upload files over HTTP using FORM ENCTYPE="multipart/form-data" that are bigger than a few Kilobytes i get a 408 error. (client timeout). It is as if the server has decided that the client has timed out during the file upload. The default setting is 30 seconds for AcceptTimeout in the magnus.conf file. This should be ample to get the file across, even increasing this to 2 minutes just produces the same error after 2 minutes. Any help appreciated. Apologies if this is not the correct forum for this, I couldn't see one for iPlanet and Web, many thanks, Kieran.

    Hi,
    You didnt mention which version of IWS. follow these steps.
    (1)Goto Web Server Administration Server, select the server you want to manage.
    (2)Select Preference >> Perfomance Tuning.
    (3)set HTTP Persistent Connection Timeout to your choice (eg 180 sec for three minutes)
    (4) Apply changes and restart the server.
    *Setting the timeout to a lower value, however, may    prevent the transfer of large files as timeout does not refer to the time that the connection has been idle. For example, if you are using a 2400 baud modem, and the request timeout is set to 180 seconds, then the maximum file size that can be transferred before   the connection is closed is 432000 bits (2400 multiplied by 180)
    Regards
    T.Raghulan
    [email protected]

  • Getting error while using HTTP connector and calling POST action to a Web API which is deployed as website on Azure

    I have create Logic App under Azure App Services, I am getting
    error while using HTTP connector and calling POST action to a Web API which is deployed as website on Azure.
    Following are the screen shots:
    Login App Connector Diagram:
    hema

    Marking as answered since no response on request for more information - assuming that you found what was wrong in the inputs. Let us know if you're still having trouble.
    http://twitter.com/joshtwist

  • Need help : how to send 3 parameters over http using Java POST

    I am trying to sending some data to agency company over http using Java POST
    They need 3 parameters and some contents like below
    1. Cmd : cmd=_RequestInsertNewLead
    2 Live : False
    3 XMLData : 3C%3Fxml+version%3D%........
    I already have XML done ,but I don't know how to send these guy over http
    is that like
    this.out = new DataOutputStream(os);
    out.writeBytes("Cmd");
    out.writeBytes(" cmd=_RequestInsertNewLead");
    out.writeBytes(" Live ");
    out.writeBytes("False");
    anyone could give help :)

    First of all, are you getting any exception?
    You didn't put much logging information in your code.
    You can also try this.Instead of doing sos.println(".....") try to build the output string using string buffer.
    Like:
    StringBuffer sb = new StringBuffer();
    sb.append("Some output");
    sb.append("More output");
    sos.print(sb.toString());
    sos.flush();Let me know if this works.

  • POST/multipart-POST

    Hi,
    I've been looking at various APIs for sending HTTP POST functions, in particular I'm interested in the different uses between the above 2 methods. The typical line is "if you're sending a file - use multipart".
    Why, do POST methods have a certain maximum size?
    Or, what's the point when I should use POST or multipart-POST?
    Is it typical to just use multipart-POST everywhere?
    Is the trade-off just more overhead?
    Any help on this would be appreciated.

    This is really an HTTP question, not a Java question.

  • HTTP error: could not POST file in XMl spy

    Hello Experts,
      Scenario is : Soap -> XI -> R3 (Proxy).
    I have created a WSDL using the url as :
    http://pfodx100.xyz.dk:52000/XISOAPAdapter/MessageServlet?channel=:BS_Mob:Soap_Sender_Sync_CC
    (I have replaced here actual domain with xyz, also renamed CC, etc. But format for URL used is same as that shown above)
    when checked in XMLSPY, WSDL is valid.
    On sending a soap request to Server from XML spy i get error as :
    HTTP error: could not POST
    '/XISOAPAdapter/MessageServlet?channel=:BS_Mob:Soap_Sender_Sync_CC&amp;version=3.0&amp;Sender.Service=BS_MobileAp&amp;Interface=+http%3A%2F%2Fxyz.dk%2Fmobiletimereg%2Fxyz%5EOutboundInterface_Async" on server 'pfodx100.xyz.dk'
    On testing this URL via Internet Explorer, first I get a warning :
    "There is a problem with this website's security certificate"
    If I select "Continue to this website (not recommended). "
    IE prompts for : User name and PWD. On Entering uname and passward, i get the message as :
    Message Servlet is in Status OK
    Status information:
    Servlet com.sap.aii.af.mp.soap.web.MessageServlet (Version $Id: //tc/xi/NW04S_15_REL/src/_adapters/_soap/java/com/sap/aii/af/mp/soap/web/MessageServlet.java#1 $) bound to /MessageServlet
    Classname ModuleProcessor: null
    Lookupname for localModuleProcessorLookupName: localejbs/ModuleProcessorBean
    Lookupname for remoteModuleProcessorLookupName: null
    ModuleProcessorClass not instantiated
    ModuleProcessorLocal is Instance of com.sap.aii.af.mp.processor.ModuleProcessorLocalLocalObjectImpl0_0
    ModuleProcessorRemote not instantiated
    Please sugest.
    Regards,
    XI Queries.

    Hi,
    Just try this:
    Replace
    <m:ZPSA_CAT2_DATA_MT xmlns:m="http://kmd.dk/mobiletimereg/kmd">
                                     <PERSONAL_ID>12345</PERSONAL_ID>
                                     <DEVICE_TYPE>adff</DEVICE_TYPE>
                                     <PROFILE>UDF</PROFILE>
                                     <RELEASE_DATE>190909</RELEASE_DATE>
                                     <AGENT_OTYPE>String</AGENT_OTYPE>
                                     <AGENT_OBJID>String</AGENT_OBJID>
                                     <TEXT_FORMAT_IMP>String</TEXT_FORMAT_IMP>
                                     <I_CATSRECORDS>
                                                <WORKDATE>String</WORKDATE>
                                                <EMPLOYEENUMBER>String</EMPLOYEENUMBER>
                                                <SEND_CCTR>String</SEND_CCTR>
                                                <SENBUSPROC>String</SENBUSPROC>
                                                <ACTTYPE>String</ACTTYPE>
                                                <PO_NUMBER>String</PO_NUMBER>
                                                <PO_ITEM>String</PO_ITEM>
                                                <SERVICE>String</SERVICE>
                                                <REC_CCTR>String</REC_CCTR>
                                                <REC_ORDER>String</REC_ORDER>
                                                <NETWORK>String</NETWORK>
                                                <ACTIVITY>String</ACTIVITY>
                                                <SUB_ACTIVITY>String</SUB_ACTIVITY>
                                                <CAPA_CATEGORY>String</CAPA_CATEGORY>
                                                <SPLIT>String</SPLIT>
                                                <WORK_CNTR>String</WORK_CNTR>
                                                <WBS_ELEMENT>String</WBS_ELEMENT>
                                                <RECSALEORD>String</RECSALEORD>
                                                <RECITEM>String</RECITEM>
                                                <RECCOSTOBJ>String</RECCOSTOBJ>
                                                <RECBUSPROC>String</RECBUSPROC>
                                                <ABS_ATT_TYPE>String</ABS_ATT_TYPE>
                                                <WAGETYPE>String</WAGETYPE>
                                                <TRIPNO>String</TRIPNO>
                                                <OT_COMP_TYPE>String</OT_COMP_TYPE>
                                                <WORKTAXAREA>String</WORKTAXAREA>
                                                <VALUATION_BASIS>String</VALUATION_BASIS>
                                                <CURRENCY>String</CURRENCY>
                                                <CURRENCY_ISO>String</CURRENCY_ISO>
                                                <EXTRA_PAY_INDIC>String</EXTRA_PAY_INDIC>
                                                <PAYSCALEGROUP>String</PAYSCALEGROUP>
                                                <PAYSCALELEVEL>String</PAYSCALELEVEL>
                                                <BONUSTYPA>String</BONUSTYPA>
                                                <BONUSVALUE>String</BONUSVALUE>
                                                <POSITION>String</POSITION>
                                                <CO_AREA>String</CO_AREA>
                                                <TRANS_CURR>String</TRANS_CURR>
                                                <TRANS_CURR_ISO>String</TRANS_CURR_ISO>
                                                <PRICE>String</PRICE>
                                                <PLANT>String</PLANT>
                                                <CALC_MOTIVE>String</CALC_MOTIVE>
                                                <CATSHOURS>String</CATSHOURS>
                                                <UNIT>String</UNIT>
                                                <ISOCODE_UNIT>String</ISOCODE_UNIT>
                                                <STARTTIME>String</STARTTIME>
                                                <ENDTIME>String</ENDTIME>
                                                <PREVIOUS_DAY>String</PREVIOUS_DAY>
                                                <ALL_DAY_FLAG>String</ALL_DAY_FLAG>
                                                <REM_WORK>String</REM_WORK>
                                                <FCST_FIN_DATE>String</FCST_FIN_DATE>
                                                <FIN_CONF>String</FIN_CONF>
                                                <SHORTTEXT>String</SHORTTEXT>
                                                <PART_CONF>String</PART_CONF>
                                                <EXTSYSTEM>String</EXTSYSTEM>
                                                <EXTAPPLICATION>0</EXTAPPLICATION>
                                                <EXTDOCUMENTNO>String</EXTDOCUMENTNO>
                                                <STATKEYFIG>String</STATKEYFIG>
                                                <QUANTITY>String</QUANTITY>
                                                <UNITQ>String</UNITQ>
                                                <ISO_UNITQ>String</ISO_UNITQ>
                                                <AMOUNT>String</AMOUNT>
                                                <LONGTEXT>String</LONGTEXT>
                                                <FUND>String</FUND>
                                                <FUNC_AREA>String</FUNC_AREA>
                                                <GRANT_NBR>String</GRANT_NBR>
                                                <SEND_FUND>String</SEND_FUND>
                                                <SEND_FUNCTION>String</SEND_FUNCTION>
                                                <SEND_GRANT>String</SEND_GRANT>
                                                <CPR_GUID>String</CPR_GUID>
                                                <CPR_EXTID>String</CPR_EXTID>
                                                <CPR_OBJGUID>String</CPR_OBJGUID>
                                                <CPR_OBJGEXTID>String</CPR_OBJGEXTID>
                                                <CPR_OBJTYPE>String</CPR_OBJTYPE>
                                     </I_CATSRECORDS>
                                     <I_EXTENSION>
                                                <ROW>String</ROW>
                                                <ZZLOEBENUMMER>String</ZZLOEBENUMMER>
                                                <ZZLTXA1>String</ZZLTXA1>
                                                <ZZFRAVAERSTYPE>String</ZZFRAVAERSTYPE>
                                                <ZZKTEXT>String</ZZKTEXT>
                                                <ZZFRAVAERSTYPE2>String</ZZFRAVAERSTYPE2>
                                                <ZZTIMETYPE>String</ZZTIMETYPE>
                                                <ZZKZTXT>String</ZZKZTXT>
                                                <ZZ_EXT_GUID>String</ZZ_EXT_GUID>
                                     </I_EXTENSION>
                                     <I_WORKFLOW_TEXT>
                                                <LINE>String</LINE>
                                     </I_WORKFLOW_TEXT>
                                     <I_LONGTEXT>
                                                <ROW>String</ROW>
                                                <FORMAT_COL>String</FORMAT_COL>
                                                <TEXT_LINE>String</TEXT_LINE>
                                     </I_LONGTEXT>
                                     <KOMMUNEKODE>String</KOMMUNEKODE>
                          </m:ZPSA_CAT2_DATA_MT>
    with the structure taken from the Source of test tab. Also try putting some values in the nodes.
    But i think this is some basis problem. Please do consult with the basis too.
    Regards
    Suraj
    Edited by: S.R.Suraj on Sep 18, 2009 7:52 AM

  • HTTP error: could not POST file

    Hi experts,
    I am working with scenario: WS <-soap-> XI <-rfc-> R3.
    I have created all the stuff in IR, ID, define my WSDL and tested it with Altova, and everything works ok!.
    However, if i use https and 50001 instead of http and 50000 (from the URL), i get following error:
    <i>HTTP error: could not POST file
    Error sending SOAP request</i>
    I have checked that 50001 service is active and i can reach:
    https://<hostname>:<50001>/XISOAPAdapter/MessageServlet?
    Can you guys tell me if i have missed any step in my configuration or in the java visual admin to let this work?
    Please, help me out.
    Best regards,
    david

    Hi David,
    Check if these threads can help you,
    SOAP-Web Service Error
    /community [original link is broken]://Payload of SOAP-Message cannot be read
    Error while calling webservice created in XI
    **Reward points if helpfull**

  • Using UTL_TCP to post xml

    All,
    we were using UTL_HTTP for XML post and retrieve result. It kept running into transfer_timeout trouble (oracle 9.2.*)
    So now we are trying to use UTL_TCP to post xml.
    But I am not sure how the sequence will be.
    I woulc apppreciate if you guys could point me to the right place. All the samples I saw so far are for email or ftp.
    Thanks.
    Steve
    Steve

    UTL_HTTP uses UTL_TCP underneath so using UTL_TCP yourself possibly won't solve the problem. One common reason of transfer-timeout exception is that the length of the POST data is not specified or is incorrect in the content-length header, causing the HTTP server to keep waiting to read more from your side but you have posted the whole data.
    Can you post your codes that use UTL_HTTP here (if possible) and let us take a look?

  • Client call using   XML over Http using HttpClient

    Using HTTPClient while calling HTTPPost method to generate request for external system using XML over http using below code
    client.getState().setCredentials(new AuthScope(ipAddress,portNumber),new UsernamePasswordCredentials(username, password));
         PostMethod method = new PostMethod(url);
         String str = accDoc.toString();
    method.setRequestEntity(new InputStreamRequestEntity(new ByteArrayInputStream(str.getBytes())));
    method.setDoAuthentication( true );                
    int result = client.executeMethod(method);
    server system getting 2 request. first request without basic authentcation details and second request with full auhentication details.
    So unnecessary eatra call without authentication details is going during calling the client program using above code.
    Please let me know which part of the above code is generationg extra call.
    Thanks in advance for your help

    I don't see nothing wrong with your code, there must be something else happening.
    You sure you are not being some proxy server?? but even then you are making a post request so it shouldn't be happening.
    MeTitus

  • I used Share to post a page on FB. Now I'm getting FB notifications whether I'm logged in to FB or not. How do I log out of Share?

    I used Share to post a page on Facebook. Now I'm getting Facebook notifications when I'm logged out of FB. How do I log out of Share, and only log in when I want to use it?

    Hi NimaG!
    It seems like you may need to adjust your notifications settings for Facebook in order to address this issue:
    Mac Basics: Notification Center
    http://support.apple.com/kb/ht5362
    Take care, and thanks for visiting the Apple Support Communities.
    Cheers,
    Braden

  • Send Idoc to AS2 System via HTTP using XI

    Hi,
    We need to send Invoice Idocs as XML files from SAP R/3 system to external AS2 system using XI. The communication will happen over HTTP using certificate. I tried using Plain HTTP adapter , but the message went into error 'ATTRIBUTE_CLIENT'. Why this error ?
    I came across some blogs saying about Seeburger AS2 adapter , but is this the only possible way ?
    Kindly guide.
    Thanks.
    Tushar

    Yes , AS2 adapter is the solution for it.
    Refer all the below threads for AS2 information and configuration which need to do for B2B integration:
    SEEBURGER EDI adapter
    Re: Pls.. Help Needed.. Seeburger Mapping Names..!!
    Re: Seeburger AS2 adapter...
    Re: AS2 Module tab.. Mapping Names for modified Standard Msg types ? ? BIC ??
    AS2 adpater-- Configuration details for both SND and RCV.
    AS2 Sender Adapter -- Need few details.

  • Retrieve online file as CSV via HTTPS using PL/SQL procedure

    Hi all,
    Situation:
    Server A (not ORACLE)_: accesed via URL, generates dynamically a CSV file and returns to the requestor.
    Server B (ORACLE)_: which runs the PL/SQL script. It is the requestor. Read the CSV and store it within ORACLE.
    (1) I want to connect from Server B (ORACLE) to an external URL via HTTPS which generates dynamically the CSV file. Subdomain.domain it is the Server A which contains this CSV file.
    https://dubdomain.domain/csv_generator.php?query=q1
    (2) This file is downloaded to the Server B (ORACLE). A PL/SQL script executed in this machine do the task.
    (3) After that, I load this CSV to an ORACLE table which a common CSV PL/SQL parser.
    Doubts:
    Is it possible to retrieve an online file (a CSV) dynamically created and hosted in a third party server (Not ORACLE) via HTTPS using a PL/SQL procedure executed in a ORACLE server? If the answer is yes, what technology could I use? Any ideas?
    Thanks in advance,
    Yago

    An CSV example in {message:id=10158148}.
    For https, two actions are needed in addition.
    Firstly, the certificate of the https web server needs to be loaded in an Oracle Wallet on your database server. The wallet will have a specific directory location on the server, and will be protected by a password.
    Secondly, the PL/SQL procedure making web call, needs to open the wallet (using <i>UTL_HTTP.set_wallet</i>) using the location and password. Example of that in {message:id=10820182}.

  • I have recently bought iPhone 5. I am using a BSNL post paid 3G sim. I can not activate my BSNL 3G services in my new iPhone 5. Please Help.

    I have recently bought iPhone 5. I am using a BSNL post paid 3G sim. I can not activate my BSNL 3G services in my new iPhone 5. Though they were perfectly fine previously in my old handset i.e. Nokia Lumia 800. Please Help. How do I activate BSNL 3G services in my iPhone 5.

    Since BSNL is not a supported carrier, you need to input Correct APN settings for Cellular data and enable 3G
    Settings >> General >> Network >> Cellular Data Network.
    Check with BSNL website/Wireless Customer care/Engineering. You can use Google as well. Cheers

  • What IDOC message type to use for AP posting

    Hi,
    My User wanted to use the invoice information created for comany A to be input to company B as AP entries. A and B are inter-company,
    Whar IDOC message should I used for AP posting?
    What BAPI function can I used for AP Posting?

    Hi,
    Lets try the below things for AP posting.
    Idoc type : invoic02
    Message type : invoic
    Process code : INVF
    BAPI for posting : BAPI_ACC_GL_POSTING_POST{ Try to explore some more if possble, for AP posting in my case we are separtaing the data based on posting key ex: 31 }
    BR,
    Rajani

Maybe you are looking for

  • BI Templates Missing in this Project Server 2013 On-Line Installation

    Hi, In a Project Server 2013 On-Line install over here, I do not see any language packs or templates within the Business Intelligence Center (PWA 2013 On-Line > Reports > Site Contents > Templates)?  There are no files in this directory whatsoever! Y

  • Report Navigation / Drill Down

    I am anticipating building an OBI report based on the following scenario: I have a database table with 15 columns. Column 1 is a product number. Column 2 is a unique lot number. Column 3 is a period name. Columns 4 - 15 are months JAN - DEC. This wil

  • Why am I having this problem importing photos from iPhone to iPhoto?

    I'm getting the error: Error downloading image. iPhoto cannot import your photos because there was a problem downloading an image. when I "Import All..." from my iPhone. Trying to import individual images I get The following file cannot be imported.

  • How to Migrate EJB Webservice from NW 7.0 to 7.3

    Hi, We have upgraded nw portal from 7.0 to 7.31. 1.how to migrate 7.0 ejb webservice to 7.3? 2.how to test webservice in portal 7.3. i did not find webservice perspective in nwds 7.3. please suggest how to acheive . Regards Srinivas

  • PSE 7 Downloader won't store photos on network drive

    I'm running PSE7 on a Windows XP Media Center SP2 machine. Both my PSE catalog and my actual image files are located on a drive mounted as drive letter P: from a NAS device. This configuration worked great in PSE5. PSE7 doesn't seem to have any troub