How to have an Oracle procedure send and receive the value of a java program.

The procedure below is the place within a package. This "get_extract_ready_headers" procedure to select the columns store_number, terminal_number, tran_number, tran_date, cust_id in the REX_HEAD_EXTRACT of source table. This information is selected in a ref cursor The data were field cust_id which is encrypted. How can I change the get_extract_ready_headers procedure and accomplish 2 things?

1. make this procedure the "cust_id" reading the table source and send the value of a Java program "getheaderinfo" (this java program decrypts the cust_id field).
2. when we get the value unencrypted to the Java program, make the procedure to accept this decrypted value and use it to update the CUST_ID to the table TRAN_HEAD table value target. I use Oracle 11.2.0.2 and TOAD 10.5.1.3.





-The code of procedure
PROCEDURE get_extract_ready_headers (p_records OUT SYS_REFCURSOR)
IS
BEGIN
   OPEN p_records FOR 
   SELECT store_number, terminal_number, tran_number, tran_date, cust_id FROM REX_HEAD_EXTRACT;
      
END;
-Table Structure for the table source REX_HEAD_EXTRACT
CREATE TABLE REX_HEAD_EXTRACT
(
  REX_SEQ_NBR         NUMBER(20),
  REVISION_NUMBER         NUMBER,
  DAY                     NUMBER(3),
  RESA_TRAN_SEQ_NO        NUMBER(20),
  BUSINESS_DATE           DATE,
  TRAN_SEQ_NBR            NUMBER(12),
  ORG_NUMBER              NUMBER,
  STORE_NUMBER            NUMBER,
  TRAN_DATE               DATE,
  TERMINAL_NUMBER         NUMBER,
  TRAN_NUMBER             NUMBER,
  TRAN_TIME               DATE,
  BATCH_NUMBER            VARCHAR2(8 BYTE),
  BATCH_TYPE              VARCHAR2(4 BYTE),
  TRAN_TYPE               VARCHAR2(4 BYTE),
  SUB_TRAN_TYPE           VARCHAR2(4 BYTE),
  CLERK_CODE              VARCHAR2(15 BYTE),
  TRAN_TAXABLE_AMOUNT     NUMBER(12,2),
  TRAN_TAX_TOTAL          NUMBER(12,2),
  TRAN_GROSS_TOTAL        NUMBER(12,2),
  COUP_TOTAL              NUMBER(9,2),
  MKD_TOTAL               NUMBER(9,2),
  EMPLOYEE_NUMBER         VARCHAR2(15 BYTE),
  EMPLOYEE_NAME           VARCHAR2(40 BYTE),
  TRAN_ALTTAXABLE_AMOUNT  NUMBER(12,2),
  TRAN_ALTTAX_TOTAL       NUMBER(12,2),
  SALE_AMOUNT             NUMBER(9,2),
  RETURN_AMOUNT           NUMBER(9,2),
  RETURNED_AMOUNT         NUMBER(9,2),
  NETCASH                 NUMBER(12,2),
  TENDER_CODE             VARCHAR2(4 BYTE),
  MULT_RCPT               VARCHAR2(1 BYTE),
  SPLIT_TENDER            VARCHAR2(1 BYTE),
  RTN_WITH_PURCHASE       VARCHAR2(1 BYTE),
  RTN_WITH_RCPT           VARCHAR2(1 BYTE),
  REASON_CODE             VARCHAR2(4 BYTE),
  PASSWORD                VARCHAR2(10 BYTE),
  RINGTIME                DATE,
  CUST_NUMBER             VARCHAR2(12 BYTE),
  CUST_ID                 VARCHAR2(50 BYTE),
  ZIP_CODE                NUMBER,
  POSTAL_CODE             VARCHAR2(9 BYTE),
  PV_TIME_LAPSE           NUMBER,
  ORIG_STORE_NBR          NUMBER,
  ORIG_TRAN_DATE          DATE,
  ORIG_TRAN_TYPE          VARCHAR2(4 BYTE),
  ORIG_TERM_NBR           NUMBER,
  ORIG_TRAN_NBR           NUMBER,
  ORIG_SALE_AMT           NUMBER(12,2),
  ORIG_TENDER_CODE        VARCHAR2(4 BYTE),
  ORIG_CLERK_CODE         VARCHAR2(15 BYTE),
  PREV_TRAN_TYPE          VARCHAR2(4 BYTE),
  PREV_SUB_TRAN_TYPE      VARCHAR2(4 BYTE),
  GIFT_REGISTRY_ID        VARCHAR2(25 BYTE),
  NO_OF_ITEMS             NUMBER,
  TAX_EXEMPT_ID           VARCHAR2(18 BYTE),
  TRAN_RINGTIME           NUMBER,
  AUDITED                 VARCHAR2(1 BYTE),
  BATCH_VERSION           NUMBER(9,2),
  BATCH_SOURCE            VARCHAR2(5 BYTE),
  CREATE_DATE             DATE,
  CREATE_ID               VARCHAR2(32 BYTE),
  CREATE_PROC             VARCHAR2(32 BYTE),
  MOD_DATE                DATE,
  MOD_ID                  VARCHAR2(32 BYTE),
  MOD_PROC                VARCHAR2(32 BYTE),
  TERMINAL_GROUP          NUMBER,
  USER_DEF_1              NUMBER,
  USER_DEF_2              NUMBER,
  USER_DEF_3              NUMBER,
  USER_DEF_4              NUMBER(12,2),
  USER_DEF_5              NUMBER(12,2),
  USER_DEF_6              NUMBER(12,2),
  USER_DEF_7              VARCHAR2(50 BYTE),
  USER_DEF_8              VARCHAR2(50 BYTE),
  USER_DEF_9              VARCHAR2(50 BYTE),
  MANAGER_NUMBER          VARCHAR2(15 BYTE),
  MANAGER_REASON_CODE     VARCHAR2(10 BYTE),
  MANAGER_SWIPED          VARCHAR2(1 BYTE),
  PHONE_NO                NUMBER(11),
  KCPOS_KTH_USER_101      NUMBER,
  KCPOS_KTH_USER_102      NUMBER,
  KCPOS_KTH_USER_103      NUMBER,
  KCPOS_KTH_USER_104      NUMBER,
  KCPOS_KTH_USER_105      NUMBER,
  KCPOS_KTH_USER_106      NUMBER,
  KCPOS_KTH_USER_107      NUMBER,
  KCPOS_KTH_USER_108      NUMBER,
  KCPOS_KTH_USER_109      NUMBER,
  KCPOS_KTH_USER_110      NUMBER,
  KCPOS_KTH_USER_201      NUMBER(12,2),
  KCPOS_KTH_USER_202      NUMBER(12,2),
  KCPOS_KTH_USER_203      NUMBER(12,2),
  KCPOS_KTH_USER_204      NUMBER(12,2),
  KCPOS_KTH_USER_205      NUMBER(12,2),
  KCPOS_KTH_USER_206      NUMBER(12,2),
  KCPOS_KTH_USER_207      NUMBER(12,2),
  KCPOS_KTH_USER_208      NUMBER(12,2),
  KCPOS_KTH_USER_209      NUMBER(12,2),
  KCPOS_KTH_USER_210      NUMBER(12,2),
  KCPOS_KTH_USER_301      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_302      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_303      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_304      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_305      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_306      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_307      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_308      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_309      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_310      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_401      DATE,
  KCPOS_KTH_USER_402      DATE,
  KCPOS_KTH_USER_403      DATE,
  DISC_TOTAL              NUMBER(9,2)
)

CREATE INDEX REX_HEAD_EXTRACT_NDX ON REX_HEAD_EXTRACT
(REX_SEQ_NBR, REVISION_NUMBER, STORE_NUMBER, TRAN_DATE, TERMINAL_NUMBER, TRAN_NUMBER)
-Create table DDL for the target TRAN_HEAD table
CREATE TABLE NAVISTOR.KCPOS_TRAN_HEADER_BASE
(
  TRAN_SEQ_NBR            NUMBER(12),
  ORG_NUMBER              NUMBER,
  STORE_NUMBER            NUMBER,
  TRAN_DATE               DATE,
  TERMINAL_NUMBER         NUMBER,
  TRAN_NUMBER             NUMBER,
  TRAN_TIME               DATE,
  BATCH_NUMBER            VARCHAR2(8 BYTE),
  BATCH_TYPE              VARCHAR2(4 BYTE),
  TRAN_TYPE               VARCHAR2(4 BYTE),
  SUB_TRAN_TYPE           VARCHAR2(4 BYTE),
  CLERK_CODE              VARCHAR2(15 BYTE)     NOT NULL,
  TRAN_TAXABLE_AMOUNT     NUMBER(12,2),
  TRAN_TAX_TOTAL          NUMBER(12,2),
  TRAN_GROSS_TOTAL        NUMBER(12,2),
  COUP_TOTAL              NUMBER(9,2),
  MKD_TOTAL               NUMBER(9,2),
  EMPLOYEE_NUMBER         VARCHAR2(15 BYTE),
  EMPLOYEE_NAME           VARCHAR2(40 BYTE),
  TRAN_ALTTAXABLE_AMOUNT  NUMBER(12,2),
  TRAN_ALTTAX_TOTAL       NUMBER(12,2),
  SALE_AMOUNT             NUMBER(9,2),
  RETURN_AMOUNT           NUMBER(9,2),
  RETURNED_AMOUNT         NUMBER(9,2),
  NETCASH                 NUMBER(12,2),
  TENDER_CODE             VARCHAR2(4 BYTE),
  MULT_RCPT               VARCHAR2(1 BYTE),
  SPLIT_TENDER            VARCHAR2(1 BYTE),
  RTN_WITH_PURCHASE       VARCHAR2(1 BYTE),
  RTN_WITH_RCPT           VARCHAR2(1 BYTE),
  REASON_CODE             VARCHAR2(4 BYTE),
  PASSWORD                VARCHAR2(10 BYTE),
  RINGTIME                DATE,
  CUST_NUMBER             VARCHAR2(12 BYTE),
  CUST_ID                 VARCHAR2(50 BYTE) ENCRYPT USING 'AES256' NO SALT,
  ZIP_CODE                NUMBER,
  POSTAL_CODE             VARCHAR2(9 BYTE),
  PV_TIME_LAPSE           NUMBER,
  ORIG_STORE_NBR          NUMBER,
  ORIG_TRAN_DATE          DATE,
  ORIG_TRAN_TYPE          VARCHAR2(4 BYTE),
  ORIG_TERM_NBR           NUMBER,
  ORIG_TRAN_NBR           NUMBER,
  ORIG_SALE_AMT           NUMBER(12,2),
  ORIG_TENDER_CODE        VARCHAR2(4 BYTE),
  ORIG_CLERK_CODE         VARCHAR2(15 BYTE),
  PREV_TRAN_TYPE          VARCHAR2(4 BYTE),
  PREV_SUB_TRAN_TYPE      VARCHAR2(4 BYTE),
  GIFT_REGISTRY_ID        VARCHAR2(25 BYTE),
  NO_OF_ITEMS             NUMBER,
  TAX_EXEMPT_ID           VARCHAR2(18 BYTE),
  TRAN_RINGTIME           NUMBER,
  AUDITED                 VARCHAR2(1 BYTE),
  BATCH_VERSION           NUMBER(9,2),
  BATCH_SOURCE            VARCHAR2(5 BYTE),
  CREATE_DATE             DATE,
  CREATE_ID               VARCHAR2(32 BYTE),
  CREATE_PROC             VARCHAR2(32 BYTE),
  MOD_DATE                DATE,
  MOD_ID                  VARCHAR2(32 BYTE),
  MOD_PROC                VARCHAR2(32 BYTE),
  TERMINAL_GROUP          NUMBER,
  USER_DEF_1              NUMBER,
  USER_DEF_2              NUMBER,
  USER_DEF_3              NUMBER,
  USER_DEF_4              NUMBER(12,2),
  USER_DEF_5              NUMBER(12,2),
  USER_DEF_6              NUMBER(12,2),
  USER_DEF_7              VARCHAR2(50 BYTE),
  USER_DEF_8              VARCHAR2(50 BYTE),
  USER_DEF_9              VARCHAR2(50 BYTE),
  MANAGER_NUMBER          VARCHAR2(15 BYTE),
  MANAGER_REASON_CODE     VARCHAR2(10 BYTE),
  MANAGER_SWIPED          VARCHAR2(1 BYTE),
  PHONE_NO                NUMBER(11),
  KCPOS_KTH_USER_101      NUMBER,
  KCPOS_KTH_USER_102      NUMBER,
  KCPOS_KTH_USER_103      NUMBER,
  KCPOS_KTH_USER_104      NUMBER,
  KCPOS_KTH_USER_105      NUMBER,
  KCPOS_KTH_USER_106      NUMBER,
  KCPOS_KTH_USER_107      NUMBER,
  KCPOS_KTH_USER_108      NUMBER,
  KCPOS_KTH_USER_109      NUMBER,
  KCPOS_KTH_USER_110      NUMBER,
  KCPOS_KTH_USER_201      NUMBER(12,2),
  KCPOS_KTH_USER_202      NUMBER(12,2),
  KCPOS_KTH_USER_203      NUMBER(12,2),
  KCPOS_KTH_USER_204      NUMBER(12,2),
  KCPOS_KTH_USER_205      NUMBER(12,2),
  KCPOS_KTH_USER_206      NUMBER(12,2),
  KCPOS_KTH_USER_207      NUMBER(12,2),
  KCPOS_KTH_USER_208      NUMBER(12,2),
  KCPOS_KTH_USER_209      NUMBER(12,2),
  KCPOS_KTH_USER_210      NUMBER(12,2),
  KCPOS_KTH_USER_301      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_302      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_303      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_304      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_305      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_306      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_307      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_308      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_309      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_310      VARCHAR2(50 BYTE),
  KCPOS_KTH_USER_401      DATE,
  KCPOS_KTH_USER_402      DATE,
  KCPOS_KTH_USER_403      DATE,
  DISC_TOTAL              NUMBER(9,2),
  RTA_RTN_AUTCOD          VARCHAR2(4 BYTE),
  RTA_RTN_COMMID          NUMBER,
  RTA_RTN_EVNTID          NUMBER,
  RTA_RTN_QTY             NUMBER,
  RTA_RTN_RCPT_SCAN       VARCHAR2(1 BYTE),
  RTA_RTN_REFUND_AMT      NUMBER(9,2),
  RTA_RTN_TYPE_CODE       VARCHAR2(4 BYTE),
  RTA_RTN_WITH_RCPT       VARCHAR2(1 BYTE),
  RTA_RTN_COUNT           INTEGER,
  SDEDVAL1                VARCHAR2(50 BYTE)
)
-Samples
REX_SEQ_NBR,REVISION_NUMBER,DAY,RESA_TRAN_SEQ_NO,BUSINESS_DATE,TRAN_SEQ_NBR,ORG_NUMBER,STORE_NUMBER,TRAN_DATE,TERMINAL_NUMBER,
TRAN_NUMBER,TRAN_TIME
478,1,11,12024005,6/11/2012,,1,692,6/11/2012,155,5,6/11/2012 12:57:17 PM,
479,1,11,12024006,6/11/2012,,1,692,6/11/2012,155,6,6/11/2012 2:01:51 PM,
480,1,11,12024007,6/11/2012,,1,692,6/11/2012,155,7,6/11/2012 2:47:10 PM

Then you describe two stored procedures separated. One that has an OUTPUT parameter which is a SYS_REFCURSOR (that you posted initially). And will need you a second procedure that takes as a parameter IN the decrypted CUST_ID and whatever: key (s) is required for the UPDATE is generated.

Justin

Tags: Database

Similar Questions

  • Cannot send and received the error windows live mail 3219

    Cannot send and received the message of error windows live mail 3219 how remedy

    You use a hosted Microsoft e-mail address.

    Microsoft doesn't want you using a program like WLM.  I know, they created it, but they changed their minds.  They want to be able to use their webmail system so that they can put ads in your face and you profile by reading your emails.  They try to get you migrated to Windows 10 and the e-mail program integrated here.

    Most of my clients with addresses hosted Microsoft migrated far by pulling on the other non-Microsoft like Gmail or Yahoo mail addresses.

    WLM will work perfectly with these addresses.  Well more than half of my computer 150 customer use WLM 2011 version and it works very well.

  • How to use windows 8 to send and receive faxes

    Dear Sirs,

    My computer is running in the windows operating system 8.

    Could you help me put up my computer so that I can use it to send and receive faxes.

    Thank you.

    Kind regards

    Yoon Choy Loo

    Hi Yoon Choy Loo,

    Thanks for posting in Microsoft Communities.

    After your description, I understand that you need help setting up the windows 8 in order to send and receive faxes. Let me help you with it.

    Please follow the steps below to configure the fax:

    1. Hold the Windows key + C and type Fax and press ENTER.
    2. The Fax Configuration Wizard starts. Click Next.
    3. On the sender information page, type the information that you want to appear on your fax cover page. You don't have to fill in all the boxes. Then, click Next.
    4. The Fax Configuration Wizard displays the Select Device page to send or receive faxes. If you want to be able to receive incoming faxes, check the box to receive. If the telephone line you logged on to your computer is for faxes only, click on answer automatically after. If you want to manually answer incoming faxes, click Manual answer. Then, click Next.
    5. On the page of the Subscriber Identification (TSID), type the information you want in the TSID box. In general, it is a company name or your name and fax number. Click Next.
    6. On the page of the Subscriber called (CSID), type your information in the CSID box. The CSID that you enter is displayed on the fax machine of the origin of the fax. This number allows you to confirm that you send the fax to the right recipient. The CSID is usually the same as the TSID. Click Next.
    7. In the Routing Options page, choose whether you want to automatically print a fax. If you do not automatically print incoming faxes, they will be available in the Fax Console. Select Print on check box if you want each fax that you receive to be automatically printed. Then, click Next.
    8. End the SCW fax page, click Finish.
    9. The Fax Configuration Wizard closes and opens a Windows security alert. If you are prompted, click on unlock.
    10. Your computer is now ready to send and, possibly, to receive faxes. You can use the fax to go through the incoming or outgoing faxes, or upon receipt of a fax manually.

    Please follow the steps below to use the fax on windows 8:

    1. Open the document, Web page, or e-mail to fax.
    2. On the file menu, click on print.
    3. In the print dialog box under Select printer, click Fax, and then click on print.
    4. In the welcome in the Send Fax Wizard page, click Next.
    5. On the recipient information page, type the name of the recipient in the box to type the recipient fax number in the fax number box. If you want to send the fax to more than one recipient, type the recipient information in the appropriate boxes, and then click Add. The recipient appears in the list and the areas are cleared so that you can enter additional information about the recipient. When you have finished adding recipients, click Next.
    6. On the preparation, the cover Page, select Select a page template to cover with the following information box. Click on the model in the cover page template list. Fill area of subject line and, eventually, the box Notes . Then, click Next.
    7. On the schedule page, click Next.
    8. End Send Fax Wizard page, click Finish.

    The above steps will help you set up your fax machine and use the feature in windows 8.

    I hope that the information above helps you. Answer please come back for additional assistance.

  • Wireless drops IE7 but emails still send and receive the Satellite Pro L20

    I will try to write this, so it is logic-

    Satellite Pro L20

    Card Atheros AR5005G Wireless - Driver version 7.6.0.130

    Windows XP, Office 2003, IE 7,.

    Router Netgear WGR614 v6 wirless.

    When using a product like Utorrent my conection sharing internet it falls P2P file comes with - cannot display the page - usually I select the network diagnostics and he responds with consult the manufacturer of your computer for help.

    E-mails still send and receive ok - my wife on her cell phone can still access internet ok (so I don't think it's a fault of router)

    After I close the application down and let it during 5 minutes to share files so I can access the internet. If I connect directly to the router via a cable that I have all of the problems that makes me think it's a fault of the wireless adapter

    Can anyone help?

    Thank you very much

    Alex

    Hello

    Eventually the large amount of data that occurs during the influences of P2P file sharing or Skype session of the internet connection.

    Sometimes this question is displayed on my laptop if 2 or three laptops are connected to the same router.

    However, have you tried a few solutions stallions like WLan driver updated for example?

    Please check the Toshiba Wlan portal and install the latest version of the driver:
    http://APS.toshiba-tro.de/WLAN/

    Good luck

  • Bluetooth, send and receive the option

    I got my lenovo ideapad y510 p 2 days I tried bluetooth once it was working, but after upgrade to win 8.1 didn't send or receive option in the bluetooth icon menu I reinstalled bluetooth driver please I help me I can't send or receive anything via bluetooth

    OK thanks I could solve my problem acually the solution was easier than I imagined

    Just delete the programs bluetooth driver and do not install again and I have the option in the menu and now be able to send and receive very normally

  • A way to send and receive the SMS messages on ThinkPad T440 with Sierra EM7345

    I have a T440 with Sierra LTE. It works fine to connect to mobile networks.

    But here in New Zealand, one of our suppliers also provides free wifi hotspots to customers on certain plans. To use this property, I have to enter a password which is sent to me by SMS.

    Is it possible that I can display SMS messages sent to the SIM card inside my laptop?

    Now, I need to remove the SIM card from my ThinkPad (with all the hassles that implies), paste it into my phone, get the password, then transfer the SIM card in my ThinkPad (and often do not, it is y no food taken located nearby, so I can't restart because I had to disable the internal battery during the installation/uninstallation of the SIM card).

    So, if someone can point to a way I can just see these SMS messages on my ThinkPad, I'm grateful enernally.


  • Perspectives of multiple copies of Send and Receive?

    My wife and I have experienced problems with send and receive task in Outlook. Some messages about 3-4 meg which includes photographs will try to send again and again with the task? Y at - it a setting that we overlooked? Cox that our ISP indicates the message limit is about 15 MB, so what do you think? Also although I have for you, why Outlook would send the same message several times (100 or more)?

    Hi Ellery,

    Thank you for visiting the website of Microsoft Windows Vista Community. The question you have posted is related to Outlook and would be better suited to the office community. Please visit the link below to find a community that will provide the support you want.

    http://www.Microsoft.com/Office/Community/en-us/flyoutoverview.mspx

    Shawn - Support Engineer - MCP, MCDST
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • I have Outlook express 6 and I can't receive emails. I press on send and receive and it is stuck on 46 555 emails.

    I have Outlook express 6 and I can't receive emails. I press on send and receive and it is stuck on 46 555 emails. How can I solve this problem. IM only a beginner.

    If it downloads message #46 and then stops, message #47 is damaged or too big. Log in to your Webmail site server and delete the problem message.

    Bruce Hagen
    MS - MVP October 1, 2004 ~ September 30, 2010
    Imperial Beach, CA

  • When I try to send and receive e-mail using Windows Mail, it wants to use a made up connection. How can I use the wireless connection?

    Windpws Mail & Wi - Fi

    I just installed a TalkTalk wireless router which seems to have installed correctly. However when I try to send and receive e-mail using Windows Mail, she wants to use a made up connection. How can I use the wireless connection? Thank you very much, Dianthus MJ.

    Go to tools | Accounts | Mail | Properties | Connection and check or change the connection properties.  You will need to remove the account and then add it again, but try first and also check tools | Options | Connections.

    Steve

  • How to send and receive text messages between two simulators?

    I launched the first Simulator by inputing D:\Program Files\Eclipse\plugins\net.rim.eide.componentpack4.5.0_4.5.0.16 «»
    ents\simulator > 8300.bat/sms-source-port = 5000/sms-destination-port = 5001 "cmd

    tnen second Simulator by inputing E:\simulator>8300.bat/sms-source-port = 5001/sms-destination-port = 5000 in cmd

    but I can't not Simulator send and receive sms

    I assume that you have followed all of these steps?

    How - send SMS text messages between two BlackBerry Smartphone simulators

    http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800792/801083/How_To _...

    Can you elaborate on what does not work?  You see errors?  When missing to?

  • My messages send and receive txt messages not iMessage on my iPhone and I don't know how to solve the problem to send and receive messages as iMessage

    My messages send and receive txt messages not iMessage on my iPhone and I don't know how to solve the problem to send and receive messages as iMessage

    Settings > messages > iMessage turn off then turn it back on...

    If it does not sign of your apple under messages ID.  Settings > General > reset > reset all settings (will not erase data).

    Then log in messages

  • I use systec usbmodule1 to send and receive messages CAN one have tried this in labview?, if so can you send me the code please

    I use systec usbmodule1 to send and receive messages CAN one have tried this in labview?, if so can you send me the code

    Thank you

    Hey,.

    All our drivers CAN have been written for CAN of National Instruments hardware (referenced here: http://digital.ni.com/public.nsf/allkb/E2C6ED025C798C5586256F4E00520448 ). So, you will need to manually, code all your communications unless Systec provides a LabVIEW driver. There could be several dll files Systec provides for communication, which you will be able to access through LabVIEW. Take a look at the node of library function call, which is in the range of functions under connectivity-> libraries & executables. Here, you can call a dll file, as well as the different functions in this dll.

    I suggest posting your question either on the forum of LabVIEW, as mentioned previously, or on the forum CAN found here: http://forums.ni.com/ni/board?board.id=30

  • I am new to the ethernet communication using labview. I don't have any material. I have two laptop, I need to send and receive data through these 2 portable by using labview. Kindly help me on this.

    I am new to the ethernet communication using labview. I don't have any material. I have two laptop, I need to send and receive data through these 2 portable by using labview. Kindly help me on this.

    Dennis has already said: for a direct PC - PC connection, you need a cross over cable. If you connect through a router or a switch, you use a standard cable.

  • I have Error 0x800ccc0f and 0x800ccc79 codes then send and receive messages on outlook express.

    WHEN I TRYING TO SEND AND RECEIVE E-MAILS VIA OUTLOOK I GET ERROR MSGS. AS 'THE TCP/IP (S) CONNECTION WAS INTERRUPTED UNEXPECTEDLY BY SERVER' (ERROR No. 0x800ccc0f and 0x800ccc79 S.) MY PROTOCOL TCP/IP IN MY LOCAL AREA CONNECTION SAYS "OVER MY LAN CONNECTION SAYS"WINDOWS MANAGEMENT INSTRUMENTATION (WMI) INFORMATION MAY BE DAMAGED. " (1) (_1_) IS WHAT THE CAUSE, AND (2) WHAT ARE THE FIXES. P.S. I CAN ACCESS MY EMAIL VIA WEBMAIL FROM MY ISP.

    Original title: Outlook TCP/IP connection problems

    Hi TOMJR_3385,

    Thanks for keeping us posted and share this information with us.

    Please answer these questions-

    (1) what exactly happens when you try to access the internet?

    (2) don't you do a system restore?

    (3) that you get an error message or error code?

     

    I would like more information about the issue.

     

    Method-

    If you did not do a system restore, then you will need to perform one to cancel changes made to the computer.

    Check out the link-

    How to restore Windows XP to a previous state

    http://support.Microsoft.com/kb/306084

     

    Note: Perform a system restore will cancel all changes made previously on your computer. You may also lose unsaved information as well. Proceed at your own risk.

    In addition, see the article-

    Error messages when you send and receive in Outlook and Outlook Express

    http://support.Microsoft.com/kb/813514

     

     

    Do get back to us and let us know if the steps of troubleshooting in help section. We will be happy to help you if you need help.

    Thank you.

     

     

  • How can I send and receive faxes via a pc with a windows XP Home Edition

    I want to know how can I use the pc-windows xp home edition to send and receive faxes? Thank you

    Please send me an email to * address email is removed from the privacy *.

    First of all you need a Fax application and then you need an analog phone line - unless you use a Web-to-Fax service... If you find my answer helpful, please click the button "Vote as helpful"! Thank you! My Blog

Maybe you are looking for