Rmi client cannot send message

Hi
I'm running the rmiregistry server at port 8000.
My application uses an API which reads a file for its configuration. I've set the RMI PORT to 8000 in the config file.
Its possible to telnet "IP:8000" from the remote machine but when the remote application tries to send a message (using the api) it gets an error "cannot send message". The remote application also uses a config file to determine the IP and PORT it'll connect to. IP is set to the address where server program is running and port is set to 8000.
The server api generates a log (showing each message processed) : Log generated indicates that API starts successfully but there are no entries for any messages received. Seems the messages are not arriving at all.
Is any more configuration required?
Regards,

Here goes:
The application communicates with an MMSC. Has two threads one for sending and another for receiving messages.
The sending Thread is working just fine. Both Threads use an API for communicating with the MMSC.
I start the RMIregistry Server with the following:
java -cp path/ApiName.jar sun.rmi.registry.RegistryImpl 8000
One needs to implement an Listener interface to receive messages.
Here's my class for the same
public class ReceiveMMS extends Thread implements MsgListener {
public void run(){
          while(true){
               try{
                    Thread.sleep(1000);
               catch (Exception e) {
                    e.printStackTrace();
public ReceiveMMS() {
          try {
          System.out.println("Registering application to receive messages...");
          APIClassInstance.registerToReceiveMessages(this);
          System.out.println("Application Now Listening for messages.");
          catch (ApiNotYetStartedException anyse) {
               System.out.println("Exception caught while Registering Application: " + anyse);
public Result processThisMessage(MessageArrivedEvent mae) {
Result _result = new Result(ResultCodes.SUCCESS,"Receive Message Successful");
try {
System.out.println("New Multimedia Message Arrived. Fetching it...");
// call fetchMessage() to fetch message from queue
MimeBodyPart _receivedMessage = APIClassInstance.fetchMessage();
     //MESSAGE PROCESSING LOGIC
catch (ApiNotYetStartedException anyse) {
System.out.println("");
_result.setResultCode(ResultCodes.FAILURE);
_result.setResultText(": "+anyse);
catch (NoMessagePresentException nmpe) {
System.out.println(" : "+nmpe);
_result.setResultCode(ResultCodes.FAILURE);
_result.setResultText("No Message Present : "+nmpe);
catch (CannotFetchMessageException cfme) {
System.out.println("Cannot Fetch Message - Check RECEIVE property :"+cfme);
_result.setResultCode(ResultCodes.FAILURE);
_result.setResultText("Cannot Fetch Message. Check RECEIVE property :"+cfme);
catch (Exception e) {
System.out.println("Error Handling Message : "+e);
_result.setResultCode(ResultCodes.FAILURE);
_result.setResultText("Error Handling Message : "+e);
return _result;
processThisMessage() METHOD is called when a message arrives. This notification is not taking place.
Is there a special way for making this notification happen
what i can figure is, some configuration is missing, and the remote app is not able to notify the MessageHandler.
The API starts successfully and is able to connect to remote system (sure, as it can send messages). The api uses RMi internally--when dont start the registry server i get the 'Class not found for the STUB Class'
Regards

Similar Messages

  • MFC Client cannot send message to a Java Server

    Hi All,
    I have a Java Server which listens on a TCP Socket. The client is a MFC based application and needs to communicate with the Server using simple raw text messages.
    We were able to connect to the Java Server using CSocket and CAsyncSocket objects but were not able to send messages.
    This is the code that we are trying:
    mySock = new CAsyncSocket(); // mySock is a CAsyncSocket object.,
    mySock->Create();
    mySock->Connect(strIP,lngPort);
    mySock->Send(strMessage, nSize);
    The server log shows that the connection is established, but the message doesnt reach.
    Please help !
    Thanks !!
    Sudhakar.

    I have the same problem.
    The Java (server) end is straightforward...
    Ian
    import java.io.*;
    import java.net.*;
    public class Serv extends Thread
         public static final int PORT = 3011;
         public static final String REQUEST = "REQUEST";
         /** Test */
         public static void main(String[] args)
              Serv s = new Serv();
              s.start();
         Serv()
              try
                   // Real code will set this class to be a daemon thread as we want it to stop is the main thread stops
                   //ss.setDaemon(true);
                   m_serverSocket = new ServerSocket(PORT);
              catch (IOException ex)
                   ex.printStackTrace();
         public void run()
              try
                   while (true)
                        // Launch a handler when a client connects:
                        final Socket clientSocket = m_serverSocket.accept();
                        ClientHandler clientHandler = new ClientHandler(clientSocket);
                        System.out.println("(Client " + clientHandler.getClientHostname() + " accepted on port " + PORT + ")");
                        clientHandler.start();
              catch (IOException ex)
                   ex.printStackTrace();
         private class ClientHandler extends Thread
              ClientHandler(Socket clientSocket)
                   try
                        setDaemon(true);
                        m_clientSocket = clientSocket;
                        m_socketWriter = new PrintWriter(new BufferedOutputStream(m_clientSocket.getOutputStream()));
                        m_socketReader = new BufferedReader(new InputStreamReader(m_clientSocket.getInputStream()));
                   catch (IOException ex)
                        ex.printStackTrace();
              public void run()
                   try
                        //m_socketWriter.println(getAlarmSummaryString());
                        //m_socketWriter.flush();
                        while (true)
                             final String request = m_socketReader.readLine();
                             System.out.println("Client request: " + request);
                             if (request.equals(REQUEST))
                                  m_socketWriter.println("RESPONSE");
                                  m_socketWriter.flush();
                             else
                                  m_clientSocket.close();
                                  break;
                   catch (SocketException ex)
                        System.out.println("(Client " + getClientHostname() + " disconnected)");
                   catch (IOException ex)
                        ex.printStackTrace();
              private String getClientHostname()
                   return ((InetSocketAddress)m_clientSocket.getRemoteSocketAddress()).getHostName();
              private Socket m_clientSocket;
              private PrintWriter m_socketWriter;
              private BufferedReader m_socketReader;
         private ServerSocket m_serverSocket;
    }

  • "Cannot send message..." dialog stopped describing error in 10.4

    Previous to 10.4, Mail had basically the same "Cannot send message..." dialog box. You know, the one that lets you choose a different server, "Try Again Later" or "Edit Message". Anyway, back in Panther days, it would give you the actual error message, like these for example:
    554 Service unavailable; Client host blocked using sbl-xbl.spamhaus.org
    550 Invalid recipient: Recipient address rejected
    I suspect it was removed due to how un-consumer-friendly those message can be, but does anyone know of a secret preference or a plist edit I can do to get these back? They are indispensable when troubleshooting.
    PowerBook G4 12" 867 MHz   Mac OS X (10.4.3)   1 GB, 60 GB, AirPort Extreme, Bluetooth

    Keep me in the loop to, I also like to know these techincal messages that may be helpful to my IT dept in the office; Because of this elimination in v10.4.3, for one period of time my Mail cannot send out external email outside of my office... and we went from "A to Z" trying to figure out what happen, in the end it was a simple change of MAC ID, because the IT dept finally realised I have actually changed my G4 to a G5 (machine upgrade), had those messages be available, it may cut down their time
    Cheers

  • "Cannot send message using the server....."

    Hi all,
    Considering the nature of the problem I am about to relate I would have to say at the outset that I would be very very surprised if other people have not come across this problem, so here goes...
    We have around 60 users of Apple Mail from both 10.4 and 10.5, so varying degrees of versions of Apple Mail however most if not all are updated to 10.4.11 and 10.5.2.
    We have been plagued with people being frustrated about emails bouncing back with an immediate error which is basically the following...
    "Cannot send message using the server smtp.xxx.com:user
    Sending the message content to the server failed.
    Select a different outgoing mail server from the list below etc etc"
    I am sure a lot of you have seen this error.
    However, it is totally random but I am at the end of my tether with it. It generally revolves around emails with attachments and can be totally random. I was trying to send a screenshot today, very small screenshot, using the Apple-Shift-4 technique, sent the .png file, then saved it out as a .jpg, nothing. Tiny file, around 5k. Got the error above, took it out, sent no problem. Other similar files on the desktop refused to send but a .pdf did. I then thought it might be our server, so sent teh same attachments using my .mac account. Same result and failed to send. Reports from other users in our group show that they too get random results, maybe moving the attachment in the email makes it go, sometimes putting it before your signature, sometimes putting your signature copied and pasted in so many times makes it work, all sorts of methods but all resulting in the same conclusion, Apple Mail can be very unreliable.
    We have even migrated some users to Entourage and the problem disappears. Even to Thunderbird, but those users miss the search capability as it is quicker and more reliable. So they want to go back.
    Considering I have been struggling with this issue back in the day when we were on the Apple Mail related version in 10.4 I was hoping that the version released in 10.5 would remedy the problems. Sometimes I feel it has just got worse.
    Is anyone else experiencing this sort of difficulty in Apple Mail, I really feel isolated and at a loss with how to remedy this for so many users.
    If anyone can share their experiences and how they have got around similar issues in Mail I am all ears and open to any suggestions.
    Thanks everyone for taking the time to read through this. There is more but the experiences are so random it is not worth trying to put it all down.
    Thanks again.
    Gerry McCoy

    I went in to Connection Doctor and. oddly enough, for this Mac account it said I was on Port 25. Si I changed it to Port 587 and saved the changes.
    Still, I have the same problem with the same error messages.
    I go back to the mail preferences > Accounts > Advanced and it shows Port 143 still there grayed out.
    What about SSL - it's not checked.
    Odd that this problem only seems to be from one .mac account emailing to another .mac account. Could the server be down?

  • Cannot send message using the server (null)

    i use mail 2.1.
    i have a .mac account and have three other email accounts attached to my mail account.
    lately, i cannot send any email.
    the switchiing ports fix hasn't helped either.
    this is the error message:
    CANNOT SEND MESSAGE USING THE SERVER (null)
    The server response was: 5.1.0 <email [email protected]>...
    From address does not match authentication.
    Use the pop-up menu below to try a different outgoing mail server. All messages will use this server until you quit Mail or change your network settings.
    Message from: email <[email protected]>
    Send message using: [there is a combo box here with all the four accounts servers listed]
    no matter which one i pick it doesn't work and no email is sent.
    anyone have this error before? or now how to fix it?
    i'd be appreciative.
    thanks
    1.67 GHz Power PC PowerBook G4   Mac OS X (10.4.6)   Sony HDR HC3 HD HandyCam MiniDV

    I was having a similar problem (don't feel like typing all the details)
    I was about to to delete my com.apple.mail.plist, when finally it hit me.
    I ran ethereal (again, I'm sorry, but learning how to use ethereal is a topic unto itself). Following the TCP stream (ie. looking at the smtp messages being sent back and forth) I came across two problems. For some reason my port number was set to 567 or something like that, when it's supposed to be 25, as I had originally set it to.
    Once I corrected the port number I started receiving an error message from the smtp server. It said the return email address could not be authenticated. (using xyz.com as an example) The correct return email address was supposed to be [email protected], but for some reason it was changed to john@xyz in the account settings.
    Anyway, to get to the point, another thing to check is that your return address has been set correctly, and if all else fails, make sure you have X11 installed and use fink to install and run ethereal. This will let you know if you are actually connecting to the server, and will show you any error messages.
    PS. I think this problem started occurring with the last update made to mail. I believe it somehow corrupted my settings. This would explain how my port number could have been changed to the default port number of .mac mail.

  • "Cannot Send Message" from Verizon to Hotmail

    I see by reading this board that many others have problems with Verizon e-mail accounts. 
    When I try to send e-mails from my Verizon account into my Hotmail mailbox using an iMac, I get this message every time: "Cannot send message using the server e-mail."  The only thing it is letting me do is send an e-mail from one Verizon folder into another. It won't let me go from Verizon into Hotmail.
    I  checked with Apple tech support, and their claim is that Verizon is for some reason blocking the outgoing e-mail into MSN/Hotmail. 
    I checked out the options under 'Advanced Account Info' but am not tech-savvy enough to understand what I am looking at, and the bottom section tells me to get advice from a systems administrator. Could anyone tell me the best way to go about getting this advice?
    Thanks.

    We would want to make sure the mail settings are correct. I have sent you a private message to get more information.
    Anthony_VZ
    **If someones post has helped you, please acknowledge their assistance by clicking the red thumbs up button to give them Kudos. If you are the original poster and any response gave you your answer, please mark the post that had the answer as the solution**
    Notice: Content posted by Verizon employees is meant to be informational and does not supersede or change the Verizon Forums User Guidelines or Terms or Service, or your Customer Agreement Terms and Conditions or plan

  • Cannot Send Messages Using  the Server

    I am dependent (during the day) on a wireless connection to the Minneapolis Wi-Fi system (U.S. Wireless).
    I've got an e-mail account with comcast and I have successfully interfaced this with the Apple Mail application that came with OS X 10.5.4 and for many weeks have been happily sending and receiving e-mails. But....
    I've been on the road and had to connect with Hotel internet services and I was picking up free WiFi in NYC when I was there.
    I first noticed the problem when I was staying at a hotel in Vermont.
    I would try to send e-mails and I would get the message:
    CANNOT SEND MESSGE USING THE SERVER __________.
    Select a different outgoing mail server....
    Now, I am back home and using my U.S. Wireless connection (which has been really bad lately).
    I keep getting these blasted messages and my mail sometimes goes through but more than often, I get these "cannot send message.." notices and my e-mail just sits there going nowhere in the outbox.
    How can I solve this problem?

    Beside the SMTP name -- smtp.comcast.net -- there is a pair of arrows, with one pointing up and one pointing down. If you click on those arrows you will be presented with a list of all SMTP ever enter (you may only have one), and also the command to Edit Server List. If you choose Edit Server List, you will be presented with a completely new setup window, dealing only with SMTP servers, and that window will have two tabs, one of which is also Advanced.
    From the name, smtp.comcast.net, without your Username appended, would indicate that an Authentication of None is currently in effect. With changes that Comcast has made recently, whether you use Port 25 or Port 587, I believe you would have to use Password Authentication, most certainly if the latter Port 587 is chosen.
    If you click on the link below, although not for Comcast, you will nevertheless see in section 12 through 15, screenshots that cover the SMTP setup that I am describing above.
    http://wildblueworld.com/dishmail.net/howdoi-applemail.php#2
    Ernie

  • OSX Mail - Cannot send message using the server ....

    Hi there,
    Mac Pro with OSX 10.6.
    *Can receive mail, but can no longer send email* using the program Mail.
    Been getting the popup "Cannot send message using the server [shawmail.vc.shawcable.net] for the past 3 days. I hadn't changed anything about my computer, and have had the Mac for 2+ years. So this just started doing it on it's own.
    I had a technical support guy from my service provider even interface with my computer, where he could see my desktop right over the internet, and he couldn't get it fixed either.
    I googled this problem, and found solutions like:
    1. Uncheck "Use SSL" (Done that, and it was never checked "on" to begin with)
    2. Make sure Authentication is set to none, with no password (done that, and it wasn't set with a password to begin with)
    3. Delete [user]/Library/Preferences/com.apple.mail.plist (done that, didn't do anything)
    4. We even totally deleted my account, and started a new fresh one. Didn't work
    The tech support guy did show me a way to email online, using the same email account. That worked, but it's a hassle to go onto a web-based email program -- it's not my preference. So, with great certainty, it's not my service provider, because I was able to send emails on this web-based email program using my email account.
    So there, I'm stumped.
    Hopefully someone can help. What's bizarre is that googling this problem, I have found many other people that say it happens arbitrarily, out of nowhere.

    I can't believe how ridiculous this issue is. i have been searching for days for a solution to this. i have tried EVERY recommendation on these forums and nothing works. It appears that this issue dates back to TIGER. I had this problem back in January and just bagged figuring it had something to do with iweb. I bought a new html program and was able to send out my newsletter last month no problem. Suddenly, one month later- here i am again, unable to send out my newsletter with no help from Apple or verizon, or these forims, or anyone else. To think that a company that I have stood behind and loved so much can't be be bothered fixing such a simple issue that has been going on now through  5 OS's (I am using Lion but I had the issue using leopard as well)  is a disgrace.

  • " ! Cannot send message - Message has no valid recipient "

    Android version 4.4.4
    Sony Xperia Z3 Compact
    When I use the pre-installed Messaging app I get the following error message for some but not all contacts
    " [!] Cannot send message
     Message has no valid recipient "
    I can't work out what is is about the contacts that results in the error but today I had the error when trying to text to an iPhone and a Blackberry. Just to be clear, some contacts produce that error message every time; some contacts work properly every time.
    It's becoming more than a little frustrating and at the moment I'm wondering why did I not just get another iPhone?
    Anyway, all suggestions gratefully received...

    It gets a bit weirder.
    Taking the contact I tried to text earlier:
    If I go to the contacts app, and select the messaging icon next to his mobile number, the text message which I compose is sent properly.
    If I open the messaging app, select write new message and select his name, the text is not sent and the error message appears.
    It's not at all satisfactory.

  • Trying to install iCloud on Win7 get error message either no default mail client or current mail client cannot fulfill messaging request.   How fix?

    Trying to install iCloud on Win7 get error message either no default mail client or current mail client cannot fulfill messaging request.   How fix?

    Outlook 2013.  Under Start Up Options, I have checked "Make Outlook the default program for E-mail, Contacts, and Calendar".

  • Have you a simple client for send message on oc4j 9.0.2.0.0 ?

    Hi to All!
    Have you a simple client to send message on a queue in OC4J 9.0.2 ?
    Can you show me how is possible to write the config file to connect to oc4j application server?
    thanks very much
    Andrea

    I added -Xcheck:jni and -Xcheck:nabounds to the command line and got this one now :
    500 Internal Server Error
    Error parsing JSP page /westflo-fsweb/main/header.jsp
    Error creating jsp-page instance: java.lang.ClassFormatError: __jspPage8_main_header_jsp (Method "pushBody" has illegal signature "()Ljavax/servonInfo.classjavax/servlet/j")
    My whole command line is :
    /usr/java130_wei/bin/java -ms128m -mx256m -Xcheck:jni -Xcheck:nabounds -Xnoclassgc -verbosegc -Duser.dir=/usr/oc4j/j2ee/home -Denvironment=DEV2GMSFS -Dwestflo.dir=/website/DEV2/GMSFS/oc4j_instance2/westflo/westflo/ -Ddeployment.dir=/website/DEV2/GMSFS/oc4j_instance2/pie/gms/ -Demissionrc.dir=/website/DEV2/GMSFS/oc4j_instance2/emissionrc/emissionrc-web/ -jar /usr/oc4j/j2ee/home/oc4j.jar -out /website/DEV2/GMSFS/oc4j_instance2/oc4j_config/log/server.log -err /website/DEV2/GMSFS/oc4j_instance2/oc4j_config/log/oc4j.err -config /website/DEV2/GMSFS/oc4j_instance2/oc4j_config/config/server.xml

  • I tried to send a mail message to too many addees. when the rejection came back "cannot send message using the server..." the window is too long to be able to see the choices at the bottom of it. how can i see the choices at the bottom of that window?

    I tried to send a mail message to too many addees. when the rejection came back "cannot send message using the server..." the window is too long to be able to see the choices at the bottom of it. how can I see the choices at the bottom of that window?

    I tried to send it through gmail and the acct is  a POP acct
    I'm not concerned about sending to the long address list. I just can't get the email and window that says "cannot send emai using the server..." to go away. The default must be "retry", because although I cannot see the choices at the bottom of the window if I hit return it trys again... and then of course comes back with the very long pop up window that I cannot see the bottom of so I can tell it to quit trying...

  • Cannot send message with mailhop and mountain lion

    I'm setting up Mail on a new iMac, now running OS 10.8. (It didn't work using 10.7 either).
    I've had zero trouble using mailhop on an older Mac (10.4). I've entered the exact same settings on the new mac as the old. I keep getting "Cannot send message using the server outbound.mailhop.org" and the server appears "offline". I've tried the various ports 25, 2525, 10025, 465 and 10465.
    Same results.
    The tech support and community forum at mailhop.org wasn't helpful. They pointed me here.
    So, Apple people... please enlighten me.
    Thanks in advance!
    Michelle

    Still wondering if there's an answer to this question... No mailhop.

  • Error appears: Cannot send message. this message cannot be sent at this time - has been appearing everytime i try to send e-mail for the past week!

    For the past week I have not been able to send both simple and attached messages through my icloud e-mail.
    The error reads: this message cannot be sent at this time.  i have the latest version of Firefox, I have even changed my password in hopes that this would resolve the issue, but alas, it hasn't worked. HELP!

    This is a terrible customer experience for Apple users. I have been dealing with this same issue since April 2012; all used to work just fine and then suddenly -- "Cannot send message" error appears.
    When is Apple going to fix this? I have two iPads and an iPhone but often need to access files from my PC (next time, it'll be a Mac),
    Very frustrating.

  • Suddenly cannot send messages from ipad. Can send from iPhone and they show up on messages but when sending from ipad a they say not delivered

    Suddenly cannot send messages from ipad. Can send from iPhone and they show up on messages but when sending from ipad a they say not delivered

    Using FaceTime http://support.apple.com/kb/ht4319
    Troubleshooting FaceTime http://support.apple.com/kb/TS3367
    The Complete Guide to FaceTime + iMessage: Setup, Use, and Troubleshooting
    http://tinyurl.com/a7odey8
    Troubleshooting FaceTime and iMessage activation
    http://support.apple.com/kb/TS4268
    iOS: FaceTime is 'Unable to verify email because it is in use'
    http://support.apple.com/kb/TS3510
    Using FaceTime and iMessage behind a firewall
    http://support.apple.com/kb/HT4245
    iOS: About Messages
    http://support.apple.com/kb/HT3529
    Set up iMessage
    http://www.apple.com/ca/ios/messages/
    iOS and OS X: Link your phone number and Apple ID for use with FaceTime and iMessage
    http://support.apple.com/kb/HT5538
    How to Set Up & Use iMessage on iPhone, iPad, & iPod touch with iOS
    http://osxdaily.com/2011/10/18/set-up-imessage-on-iphone-ipad-ipod-touch-with-io s-5/
    Set Up Alert Sounds
    http://www.quepublishing.com/articles/article.aspx?p=1873027&seqNum=3
    Extra FaceTime IDs
    http://tinyurl.com/k683gr4
    Troubleshooting Messages
    http://support.apple.com/kb/TS2755
    Troubleshooting iMessage Issues: Some Useful Tips You Should Try
    http://www.igeeksblog.com/troubleshooting-imessage-issues/
    Setting Up Multiple iOS Devices for iMessage and Facetime
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l
    FaceTime and iMessage not accepting Apple ID password
    http://www.ilounge.com/index.php/articles/comments/facetime-and-imessage-not-acc epting-apple-id-password/
    Fix Can’t Sign Into FaceTime or iMessage iOS 7
    http://ipadtutr.com/fix-login-facetime-imessage-ios-7/
    FaceTime, Game Center, Messages: Troubleshooting sign in issues
    http://support.apple.com/kb/TS3970
    Unable to use FaceTime and iMessage with my apple ID
    https://discussions.apple.com/thread/4649373?tstart=90
    iOS 7 allows you to block phone numbers or e-mail addresses from contacting you via the Phone, FaceTime, or Messages
    http://howto.cnet.com/8301-11310_39-57602643-285/you-can-block-people-from-conta cting-you-on-ios-7/
    How to Block Someone on FaceTime
    http://www.ehow.com/how_10033185_block-someone-facetime.html
    My Facetime Doesn't Ring
    https://discussions.apple.com/message/19087457#19087457
    How to watch FaceTime calls on the big screen with Apple TV
    http://www.imore.com/daily-tip-ios-5-airplay-mirroring-facetime
    Send an iMessage as a Text Message Instead with a Quick Tap & Hold
    http://osxdaily.com/2012/11/18/send-imessage-as-text-message/
    To send messages to non-Apple devices, check out the TextFree app https://itunes.apple.com/us/app/text-free-textfree-sms-real/id399355755?mt=8
    How to Send SMS from iPad
    http://www.iskysoft.com/apple-ipad/send-sms-from-ipad.html
    How to Receive SMS Messages on an iPad
    http://yourbusiness.azcentral.com/receive-sms-messages-ipad-16776.html
    Apps for Texting http://appadvice.com/appguides/show/apps-for-texting
    You can check the status of the FaceTime/iMessage servers at this link.
    http://www.apple.com/support/systemstatus/
     Cheers, Tom

Maybe you are looking for

  • Can no longer simultaneously stream an mp3 in Safari when using fast user switching option.

    After updating to ios 5, I can no longer stream an mp3 in Safari when I use the fast user switching option.  For instance, if you are listening to streaming content in a Safari tab and want to reference another app as soon as you switch from the Safa

  • Error in the Datasrc

    Hi all,   I have problem with datasrc i.e. when Iam checking the datasrc in the extractor it is showing the msg error in the datasrc. The error msg in the display log is showing the msg. whengenerating upload program for DataSource 0CRM_PROD_ATTR. pl

  • MUVO V100 2GB only accepting 1GB if mu

    whats up with My Muvo V00 2gb? it is only taking GB worth of data, on my MAC (itunes) or on MY pc, (drag and drop) so far not impressed!? RW

  • Alert Monitor config

    Experts, I was been trying to working on setting up the Alert Monitor in APO. But I am not sure how to configure and make it work. Till now I have done the following: Created the Alert profile with AMON1 in the application specific alert profile. Sel

  • Hyperion Report Repository

    is it possible or has anyone had any experience in changing the data source of reports in the repository from the repository rather than the Reports Client? For example running an SQL script against the Oracle repository? Thanks,