Re: Sending SMS and Recieving SMS from chat server

Hi all, I would like to know how can i send sms from J2ME wireless toolkit to a macromedia flash socket server (electroserver) and recieved a feedback from the server that the message is successfully recieved.
as example of what i want was:-
1. user send a sms using j2me wireless toolkit to chat in the flash client chat (IRC)
2. if is a new user, user will need to register their nickname on the server and the server will acknowledge them wether their nickname is already in used or not. so the server will reply the SMS.
Is there any way to do it using J2ME wireless Toolkit or the server may not support such function. please help me and give some advice on how to make this work. Help from all is much appreciated.
Thanks.

You may try this tip for sending SMS from your computer:
Send/Recieve SMS from computer
http://www.java-tips.org/content/view/96/39/

Similar Messages

  • Send and recieve sms from oracle(database+application server)

    HI all
    I Wanted to send and recieve SMS not mails from oracle(database/application server).any possible solutions and what are the things that i required for that.i-e any service provider or any machine or somethings else.

    Handle: taimur
    Status Level: Newbie
    Registered: Aug 3, 2009
    Total Posts: 42
    Total Questions: 16 (16 unresolved)
    so many questions without ANY answers.
    http://forums.oracle.com/forums/ann.jspa?annID=718
    http://www.lmgtfy.com/?q=oracle+send+sms
    Edited by: sb92075 on Nov 20, 2010 7:23 PM

  • Send and recieve sms

    wanted to design a user interface such that i can handle all the incoming and outgoing calls , also send and recieve sms. using oracle 10g
    I know that for sure that we can
    1a .call
    2a send sms
    but not sure if we can
    1b. recieve a call
    2b., receieve an sms.
    kindly help..

    here is a great article from Grant
    http://groundside.com/blog/GrantRonald.php?title=live_demo_of_sending_an_sms_from_forms&more=1&c=1&tb=1&pb=1

  • I don't seem to have the option to send and recieve SMS

    I don't seem to have the option to send and recieve SMS.  There are no options under "Settings"/ Messaging.  I used to be able to about a month ago or so but it has disappeared...

    Sorry, still no go.  I've even checked to make sure "pop ups" aren't blocked on either device.  I'm signed into iCloud, have the same wifi connection on both, Bluetooth is on, on both....but no pop up message on the iPad received yet...

  • I need an application that will enable my ipad to receive calls, make calls , send sms and receive sms. line2 is not available in south africa

    i need an application that will enable my ipad to receive calls, make calls send sms and receive sms. line2 is not available in south africa

    Skype would be a possibility for phone calls, though I don't know if it's available in SA. Search the iTunes Store for "SMS" and you'll quickly see if there are any SMS apps you can try.
    Regards.

  • How do I send a raw (push) notification from the server side using an Azure mobile service?

    Hi there!
    Currently I'm able to send toast notifications to my user from my Azure mobile service using the following line of code in one of my server side scripts:
    push.wns.send(opponent_id, payload, 'wns/toast', {
    success: function(pushResponse) {
    console.log("Sent push:", pushResponse);
    request.respond(statusCodes.OK, {});
    error: function(pushResponse) {
    console.log("Error Sending push:", pushResponse);
    request.respond(500, { error: pushResponse });
    But I would like to send a raw notification to my user now, not a toast notification. I've set up a background tasks which runs as soon as a raw notification arrives(I've tested this through the diagnose option of my mobileservicehub and it works).
    I want to send a raw notification now from the server side and I'm kind off lost on how to do that. I've looked for it but can't seem to find an answer to that question, I might be looking for the wrong stuff though.
    I'm looking for a solution that looks the same as the one for a toast notification(as demonstrated in the code above).
    Your help would be greatly appreciated!
    Thanks in advance!
    Jan

    I found the solution to this it was in fact really really easy, I should have read the documentation more properly since it clearly said that the payload for raw notifications could be literally anything but the client has to take care of it.
    So I figured that out!

  • Steps SSIS and SSAS Migration from sql server 2005 to 2012?

    steps SSIS,SSRS and SSAS Migration from sql server 2005 to 2012? any precautions to take while migration.
    any documentation or any specified steps.

    Hi Vijay,
    According to your description, you want to migrate SQL Server Integration Services and SQL Server Analysis Services from SQL Server 2005 to SQL Server 2012.
    For how to migrate SQL Server Integration Services, please refer to the article:
    http://www.bidn.com/blogs/DevinKnight/ssis/2718/upgrading-packages-to-ssis-2012.
    In addition, since the issue regards SQL Server Integration Services. I suggest you post the question in the SQL Server Integration Services forums at
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlintegrationservices.
    For how to migrate SQL Server Analysis Services, please refer to this article:
    http://www.codeproject.com/Articles/435703/Migration-from-SQL-server-to.
    In addition, since the issue regards SQL Server Analysis Services. I suggest you post the question in the SQL Server Analysis Services forums at
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/home?forum=sqlanalysisservices. It is appropriate and more experts will assist you.
    Regards,
    Michelle Li

  • Joining Actuals and Planned Work from Project Server

    Hi,
    I have an SQL based query which returns Actuals and Planned work from Project Server; however a number of records (generally generic resources based on the ResourceIsGeneric column) are excluded. I believe this is because my Actuals query does not return
    generic resources as we are joining both sides of the query on ResourceUID. I have included a snippet below - is there a way to join Actuals and Planned work so I can return all Resource data?
    Thanks
    SELECT tl.ResourceUID
    ,tl.ProjectUID
    ,tl.ResourceName AS [ResourceName]
    ,CASE
    WHEN tl.ProjectName = 'Administrative'
    THEN tl.TaskName
    ELSE tl.ProjectName
    END ProjectName
    ,ruv.RBS AS [RBS]
    ,Sum(ta.ActualWorkBillable) ActualWorkBillable
    ,Sum(ta.ActualWorkNonBillable) ActualWorkNonBillable
    ,Sum(ta.ActualOvertimeWorkBillable) ActualOvertimeWorkBillable
    ,Sum(ta.ActualOvertimeWorkNonBillable) ActualOvertimeWorkNonBillable
    ,CASE
    WHEN Sum(ta.ActualOvertimeWorkBillable) > 0
    THEN Sum(ta.ActualOvertimeWorkBillable)
    END [HOURS]
    ,DATEPART(year, ta.TimeByDay) AS [Year]
    ,DATEPART(month, ta.TimeByDay) AS [Month]
    ,DATENAME(month, DATEADD(month, DATEPART(month, ta.TimeByDay), - 1)) AS [MonthName]
    ,puv.[Project Status] AS [ProjectStatus]
    ,ruv.[Primary Role] AS [PrimaryRole]
    ,ruv.[Resource Department] AS [Department]
    ,ruv.ResourceIsGeneric
    ,ruv.[Cost Category] AS [ResourceType]
    ,puv.[SAP Project Code] AS [SAPProjectCode]
    ,CASE
    WHEN tl.ProjectName <> 'Administrative'
    THEN NULL
    ELSE tl.TaskName
    END TaskName
    ,puv.[Project Plan Type] AS [ProjectPlanType]
    ,puv.[GEM Project Manager] AS [GemPM]
    ,ruv.[Rate Code] AS [RateCode]
    ,ruv.[Cost Centre] AS [CostCentre]
    ,ept.EnterpriseProjectTypeName AS [EPT]
    ,puv.[I DO Phase]
    ,puv.ProjectOwnerName AS [ProjectOwner]
    FROM dbo.MSP_TimesheetActual_OlapView ta
    INNER JOIN dbo.MSP_TimesheetLine_UserView tl
    ON ta.TimesheetLineUID = tl.TimesheetLineUID
    INNER JOIN dbo.MSP_EpmResource_UserView ruv
    ON ruv.ResourceUID = tl.ResourceUID
    LEFT JOIN dbo.MSP_EpmProject_UserView puv
    ON puv.ProjectUID = tl.ProjectUID
    LEFT JOIN dbo.MSP_EpmEnterpriseProjectType ept
    ON ept.EnterpriseProjectTypeUID = puv.EnterpriseProjectTypeUID
    WHERE ta.TimeByDay >= @xDate1
    AND ta.TimeByDay < @xDate2
    AND tl.TimesheetStatus IN (
    SELECT ParamValues
    FROM @ParamTable
    AND ta.ActualWorkBillable > 0
    GROUP BY ...
    ) TimesheetActual
    FULL JOIN (
    SELECT ruv.ResourceUID
    ,puv.ProjectUID
    ,ruv.ResourceName
    ,puv.projectname AS ProjectName
    ,ruv.RBS AS [RBS]
    ,Sum(abduv.AssignmentWork) AS [PlannedWork]
    ,DATEPART(year, abduv.TimeByDay) AS [Year]
    ,DATEPART(month, abduv.TimeByDay) AS [Month]
    ,DATENAME(month, DATEADD(month, DATEPART(month, abduv.TimeByDay), - 1)) AS [MonthName]
    ,ruv.ResourceIsGeneric
    ,puv.[Project Status] AS [ProjectStatus]
    FROM dbo.MSP_EpmResource_UserView ruv
    INNER JOIN dbo.MSP_EpmAssignment_UserView auv
    INNER JOIN dbo.MSP_EpmAssignmentByDay_UserView abduv
    ON auv.AssignmentUID = abduv.AssignmentUID
    AND auv.ProjectUID = abduv.ProjectUID
    ON ruv.ResourceUID = auv.ResourceUID INNER JOIN dbo.MSP_EpmProject_UserView puv
    ON auv.ProjectUID = puv.ProjectUID
    AND abduv.ProjectUID = puv.ProjectUID INNER JOIN dbo.MSP_TimeByDay_OlapView tbdov
    ON abduv.TimeByDay = tbdov.TimeByDay WHERE abduv.TimeByDay >= @xDate1
    AND abduv.TimeByDay < @xDate2
    AND ruv.ResourceName <> 'Unassigned Resource'
    AND ruv.ResourceName IS NOT NULL
    AND abduv.AssignmentWork > 0
    GROUP BY ruv.ResourceUID
    ,puv.ProjectUID
    ,ruv.ResourceName
    ,puv.projectname
    ,ruv.RBS
    ,DATEPART(year, abduv.TimeByDay)
    ,DATEPART(month, abduv.TimeByDay)
    ,ruv.ResourceIsGeneric
    ,puv.[Project Status]
    ) TimesheetPlanned
    ON TimesheetActual.ResourceUID = TimesheetPlanned.ResourceUID
    AND TimesheetActual.[Year] = TimesheetPlanned.[Year]
    AND TimesheetActual.[MonthName] = TimesheetPlanned.[MonthName]

    Hi,
    you pasted just part of your query, e.g. is declaration of @ParamTable missing. Without complete query, it is difficult to see, what you are trying to do.
    Could you please provide complete query?
    Barbara
    To increase the value of this forum, please mark the replies that helped to solve your issue as answer. If you find answers to questions from other forum participants to be helpful, please mark them as helpful. Your participation will help others to find
    an appropriate solution faster. Thanks for your support!

  • Send and recieve sms. help?

    i found a link to some code in another thread.
    link below
    Hi all,
    I don't know if you solved your plobems or not, but
    I developed some Java API to send and receive SMS
    data through a serial link to a GSM phone
    You can find them at:
    http://www.java-system.com/download/JavaSmsApi.zip
    the API are under GPL license so you will find binary
    and source code there
    Hope this help
    Regards
    Marco Tozzini
    Java-Systemanyway it says it uses a serial port. problem is i use a usb data cable for my 7250.
    any ideas is it much different ? or how to go about it?

    no ideas at all? please

  • Best way to view iPhone sms and imessage messages from backup

    Hello I have sms and imessage messages that I would like to export from my phone or computer to be viewed on another device.  I know there is a way to view texts through third party software and I was wondering if there is one that is  particularly good at it or if there was a native way to do it?  Any help would be much appreciated as these texts will be used as evidence in a court case so some kind a log format with timestamps would be ideal.

    I actually purchased GoodReader because it is easy to transfer files without iTunes.  I dislike the file sharing through iTunes.   You can use a Mac or PC.  Once I was in the app I clicked the "Wi-Fi" symbol which brings me to "WiFi-transfer."  It will show this --
    "WiFi status: ON
    Use one of the following addresses exactly as you see them
    1. IP-address: http://192.168.0.98:8080 <-- Local LAN address the iPhone is broadcasting on.
    2. Bonjour-address http://Myname-iPhone.local:8080"
    All you have to do is type one of those addresses into your browser. (Safari, etc.)
    It will take you to a page that has iPhone Connection and a list of options.  You can either create a new directory within the application or use an existing one to upload a text file.  It's rather simple, you just select "Choose a file to upload" > Select your file > Press upload > Start the app and see your text/pdf/whatever file.
    You can also connect to a server to download a text file, browse the web, or enter a url.  I see it also has an ICloud folder which I'm not sure if it integrates with Apple's iCloud or not, I think it does.  I'm not affliated with the app and I'm not saying you have to buy it, I'm just a happy user.
    If you don't want to buy this app let me know I'll keep looking for a free or cheaper one for you if you want.

  • How to import sms and mms data from 6600 to N73

    Hi to all, I'm trying to import all my old data on my nokia 6600, to my new N73 ME, fw rel V 3.0368.0.0.30, because I don't like the idea to lose all my sms and mms from the old phone. I encountered a lot of problems. First thing, the transfer apps only leaves to import via bluetooth and so on data like contacts and multimedia. So I tried to copy from dir mail of the mmc of Nokia 6600 to the dir mail2 under hidden folder Private on the mini sd of my new N73. What happens? In the first moment it seems all ok, because when I switch under sms to memory cards, the N73 read all the sms like they were on phone. But first of all, it doesn't see the mms, it see only the title, but when I open them it gives me error. This doesn't happens with sms, that are all ok. The problem is that when I turn off the phone, it doesn't turn on anymore, it hangs until I've to remove the mini SD. After many tries, I've understood that maybe the problem is with the file index in mail2 folder. Someone has any idea or have tried to import sms and mms from his old Nokia phone to the new N73 and so could help me? Thanks.

    have u actually tried to connect the 6600 with the latest PC suite to see what happens?
    if that fails, maybe have a look at the Oxygen Phone Manager software and see if they offer a free trial. i know i used to use OPM before nokia updated there PC suite to work with my 3230Message Edited by rich_enduro on 02-Jan-2007
    06:30 PM
    Nexu 5

  • How to transfer SMS and Call History from Iphone 5 to Iphone 6 plus? Only the contacts, calendar, safari bookmarks and notes have synced.

    Hi! Please help. I have synced my IPhone 5 to Itunes. When I try to sync it to Iphone 6 plus, only the contacts, calendar, safari bookmarks and notes have synced to the latest date. The rest like SMS and Call History have only synced to June 2013.

    I upgraded from an iPhone 4S to iPhone 6 Plus, I don't like to run iTunes, and iCloud backup is not so reliable, I think. Then I searched on the Internet, and some articles told me that I can directly transfer data from Phone to iPhone with some tools.
    I doubt it first, then I gave a shot on one of them for the free trial. I follow the steps to transfer about 200 sms from my 4S to 6 Plus, and it works!
    Got this from here: http://www.cultofmac.com/296711/transfer-data-new-iphone-6-imazing/
    Hope this helps!

  • How do I send videos and photo's from my mobile to the iPad via Bluetooth?

    I am trying to send videos and photo's to my iPad from my mobile via Bluetooth but it won't work. The phone pairs with the iPad but won't connect to send files. Do I need an app for this? I am not very technical minded so please try and keep the answer as simple as possible.
    Thanks

    The simplest thing I can think of is, a app called iFiles. It costs £1.79.
    There is a free similar type program called Dropbox, but this one requires a wifi connection to access the files etc you have uploaded. Whereas the iFiles app doesn't need any type of connection after the files etc have been uploaded.
    Once you have installed the iFiles app on the iPad. Connect the iPad to your computer via the usb cable.
    The iPad will now appear on the left handside. Left click on it. Along the top of the screen you will see, summary, apps, music and so on.
    Click on the word APPS. You will now see at the bottom of the screen a section called FILE SHARING, along with two little windows. On the left side box should be iFiles. Click on the iFiles entry in this box.
    Next you should see on the right handside window, iFile documents, at the bottom of this box is a button with ADD on it. Click on this and locate the files etc on your computer that you are wanting added onto your iPad, click on the SYNC button, they are then uploaded onto your iPad and they are now available for you to access wherever you are. You don't need any connection, i.e. wifi, cellular connection.
    Here's a couple of screen shot showing what I have explained above:
    Here's a link to the iFiles site:
    http://itunes.apple.com/us/app/ifiles/id336683524?mt=8#

  • Send connector and recieve connector

    i recently figure out that send connector and reciece connector are not at the same level in EMC, why should it like this
    if it is different, then please point me out some known issues about configuration about them

    Hi,
    In order to resolve the problem more efficiently, could you please explain in more detail?
    If there is any update, please feel free to let me know. I'll be glad to help.
    Best regards,
    Belinda
    Belinda Ma
    TechNet Community Support

  • Unable to send email to the users from Project Server Workflow

    Hello all,
    I am facing issues in sending emails to the users from the workflow in SharePoint Designer 2013.
    I am trying to send emails to valid users in a Project server 2013 Workflow by Email action.
    I have set up the SMTP server successfully, I have configured SMTP server successfully in IIS manager 6.0
    I have configured the outgoing e-mail settings in Central Administration successfully,
    I have configured the SMTP email settings for my web app in IIS manager as well.
    I have configured and synced the User Profile App with the eMail addresses from Active Directory as well.
    I have configured the Alerts and Reminders in Operational Policies of PWA settings as well.
    I can send the emails to the users successfully through Powershell.
    But when I am trying to Start a Task Process with a user in the workflow, the task process starts but it never sent an email notification. So I tested by using the Action Email, that also the user is unable to receive any email. But the Workflow is not giving
    any error also. The email sending is successful, but the user is unable to receive it. The workflow succeeds to next phase without any errors.
    So to cross verify I tried 'Alert Me' option on a list, but that also is not sending(or might be sending but the user is not receiving) the mail.
    What else should I do to solve this issue.
    Please help me.
    Thanks,
    Shanky

    Hello Paul,
    I tried editing the PWA instance as you said, but that also didn't help :(
    I even restarted the Project Server Service, but nothing is changed. 
    I tried creating a new workflow for a List and used send email there, but that also is not sending the mail :(
    How do I check where the issue is from ? I mean, whether the workflow is sending the mail and the mail server is not receiving? or whether the workflow is not sending the mail itself? how do I check this? Is there any way to log these details?
    Please help me regarding this issue, I am totally clueless how to proceed.
    Thanks,
    shanky

Maybe you are looking for

  • Contacts/Calendars Synched to Both MobileMe & MS Exchange Server?

    I use MobileMe for my personal email and MS Exchange Server for my business (Lotus Notes) email accounts,nand this arrangement seems to work just fine. I use MobileMe for my personal contacts and calendars, but haven't synced any of my Lotus Notes co

  • Business Rules not visible in Hyperion Planning

    I created a group in Shared Services and added 6 (native) accounts. After that, I assigned Access Privileges to Business Rules in AAS for this group. When I open Planning Web and go to Tools - Business Rules, 5 of the 6 users can see the Business Rul

  • Specification of user's servlets

    Hi, I am working on tomcat4.1 and the servlets were also working fine.But in an attempt of doing some R&D I changed my server.xml.Now all the servlets in webapps/examples/ are working fine.But if I create a new directory below webapps like c:\jakart1

  • SharePoint Online CSOM GetChanges

    Hi, I can't seem to find answer to simple question,so could anyone please help with this: In current (v15/16) SharePoint Online, can I use CSOM to get list of changes on list/site using GetChanges API call (http://msdn.microsoft.com/en-us/library/ms4

  • Lightroom upload to Adobe Revel no longer supported?!? Future of Lightroom and Revel?!?

    Hi, currently I'm Pro-User of Adobe Revel and I upload all photos with Adobe Lightroom 4 to my Revel account. I googled a little bit around because I'm not able to upload videos via Lightroom and i found this link: https://forums.adobe.com/thread/116