Determine host and user

Please excuse questions from someone who has trouble chewing gum and walking at the same time - I could well be missing something obvious.
I have developed a program that is distributed via webstart to the users.
To asist with program debugging and
I am attempting to send an EMail to myself if a serious program error occurs on a users machine.
If I know the host and user from address I can return the error and debug stack by EMail.
The problem is how can I determine the mail.smtp.host the users machine uses and the from address for the EMail.
rykk

You have to ask somebody at that machine to key that information in.I was hoping this was not going to be the answer.
That may sound like a flip answer but in fact every time you install an e-mail
client on your machine, you have to put that information into a configuration
panel somewhere in the client.Since the machines are running windows and windows explorer the information has already been entered elsewhere and I was hoping to get the existing values. Most of the systems are in large corporate environments and each of the machines is set up by inhouse corporate techs. They not only do not let the users set up the stuff - they stop the users from seeing or modifying the information.
They all do not use the same provider. I cannot even tell the users where to go to see the relevant information.
Also, if the e-mails will be going outside of the customer's domain, you're also
going to have to check with the administrator of the SMTP server to ensure that
it is configured to allow relaying of those e-mails.This may also end up being a problem.
Thanks for the response
rykk

Similar Messages

  • Partner determination procedure and user interface settings

    Hi all,
    In spro>...>Define Partner Determination Procedure->User Interface Settings, we can choose between two display variants :
    - Partner number/Number Type/Address
    - Address/Numbre type
    How can I add new display variants? For example "Only Partner Name"
    Thanks
    Best regards
    Samad

    Hello Antonello,
    did you find the way to add new display variant?
    Thank you in advance,
    Natalia

  • Determining Message Server Host and Port information

    Hi,
    I am working on the NWDS creating a Java WD application and I was told which Netweaver system I should work on but I was not told the Message Server Host  information neither the Port information. I ran transaction SM51 (right click->details)in the Netweaver system but the information it is not working. Even though I can telnet this server port if I go to the J2EE Engine window within the NWDS I do not see the green light. I just see "N/A". I also tried to deploy my application but I keep getting this message: "Cannot determine sdm host (is empty). Please configure your engine/sdm correctly".
    Please advice,
    Diego.

    Hi Diego,
    in order to see Message Server Host information and Port information go to SAP J2EE Engine start page: e.g. http://system-name:57100/index.html (use administrator pws).
    Then click on System Information, here on the top you can read the Message Server Host and Port.
    Hope this help you.
    Bye,
    Vito

  • I cant upload through muse's uploaed to ftp host. And it is so slow! I have the correct password, ftp server, and user name frustrating!!

    I cant upload through muse's uploaed to ftp host. And it is so slow! I have the correct password, ftp server, and user name frustrating!!

    What version of Muse are you using? If it's not 2014.2, please go to the Creative Cloud Desktop App or creative.adobe.com and update.
    The FTP login failure is most likely due to your host not supporting FTP Extended Passive Mode. In Muse 2014.2 switch to "Passive (PASV)" in the Connect to FTP Server dialog.
    Regarding performance, how large is your site (in pages and megabytes)? How many Design view tabs are open? What specific operations are slow?
    If you'd like to send your .muse file, I'll take a look and attempt to isolate the cause of slow performance. Please send me the .muse file at [email protected] along with a link to this thread. If the file is larger than 20Mb you can use a service like Adobe SendNow, Dropbox, WeTransfer, etc. Thanks.

  • HT201320 what is the incoming mail server host name and user names

    Hi there,
    I am trying to add my school email account to my phone and I am able to fill in the
    Name
    Email
    and Description
    but am not sure what I am supposed to fill out in the Incoming Mail Server spots:
    Host Name
    User Name
    and the password is already filled in?
    and Im not sure what the Outgoing Mail Server is either.

    You'll have to ask someone at your school what the incoming server settings are for their email.  These differ for every email provider/account.

  • How to determine server host and server port

    Dear Experts.
    How to determine server host and server port where Webdynpro application is working.
    If the url is following
    http://sapr3dm:50500/webdynpro/dispatcher/local/ForecastingPowerProject2/NewObjectConnection?SAPtestId=6
    How to receive sapr3dm and 50500

    Hi,
    May be of use
    WDProtocolAdapter.getProtocolAdapter().getRequestObject().getServerName();
           WDProtocolAdapter.getProtocolAdapter().getRequestObject().getServerPort();
    Regards
    Ayyapparaj

  • Web - What is easiest way to implement User Security and User Profiles

    Hi, I am new to these forums and kind of new to Java. Sorry if this is in the wrong forum!
    Bit of background to my experience with java
    I have been playing about with java for a number of years and have created a few basic programs such as a screen shot tool that allows you to capture to default locations and look at previews first etc. I am now venturing into web related stuff. I work in IT doing systems testing and have done bits of basic development on various things.
    What I've done so far
    I am using Netbeans IDE 6.7 and MySQL 5.0
    I am trying to learn more complex java and have decided to try build a basic web / database system that basically implements adding / amending / deleting data from a MySQL database through web pages. I am now trying to implement basic user access and profiles. I have so far got the following:
    - MySQL table with user info - username / password
    - JSP page with usual login stuff
    - Servlet that validates the username and password - if correct forwards to main menu page.
    Its as simple as that - there is nothing stopping you just typing in the URL of the main menu page and going from there.
    What I want
    I am wanting to eventually get the following:
    - User authentication so that you have to logon before you can access anything else
    - User profiles that determine what each user can or can't do, restricting the pages / services / options available (i.e. normal user can't delete etc)
    - Would it need some sort of session manager to allow multiple users etc?
    I appreciate this is a fairly open question but what is the easiest way to start implementing this? Not after specific code as I would prefer to try figger things out myself, but a point in the right direction would be great. It doesn't have to be extremely secure as this is just for me at the minute.
    I have spent all day looking at things like session data / url rewriting / security settings in web.xml / bespoke servlets and am now in java overload!

    Hi everyone,
    I've now actually gone back to the tutorial that I linked to above and implemented that using form login and j_security_check.
    Agree with Saish, and although I don't know enough about the other options to give a good reason, using realms and j_security_check just seems to be a bit cluncky and messy. I would also prefer something a bit more generic, that doesn't rely on setting users in glassfish, hence why I started with my own user table.
    Anyway, I will leave it as is for now and maybe come back and try one of the other options.
    The only problem I can see now is that to add users i will need to go through all the steps of adding users in glassfish and web.xml... Is there a way to do this through a servlet or something so I can have a jsp page to add users that also creats all the other bits for it to work?
    Thanks everyone for your help

  • How can I locate my lost iPod Touch if my location was off and user ID was changed?

    I lost 3 Apple devices during house break in. How can I locate my lost Apple devices if my location was turn off,
    without "Find My Phone" apps and user ID was changed. The 3 devices are iPod Touch, iPad 2 and iPhone 3gs.
    I had made a Police Report and was told that I can request to get information to track my devices upon WIFI or
    internet connection. I hope "APPLE" team will help me to track my devices with IP locations, GPS, built in compass,
    or quickly send directions, updated informations and mobile data to find out and coordinates them.
    Given point will also help the police to capture them.
    Awaiting your reply.
    Thank you. Rgd,
    Sean Khor
    <Personal Information Edited by Host>

    There is no Apple here, just users like you and me. Apple does not provide nor have that information, as far as I know, but if police needs that information, they have a legal way of contacting Apple. If I were you I would avoid trusting Internet forum, assessable by anyone with your personal information.

  • Sending email to 10,000 addresses without knowing Host and Protocols!!

    Context:
    I am building an "eMail Marketing Campaign" application which takes a list of email addresses (unlimited) and sends an eMail to all of them.
    My servlet creates an instance of "MyMailHandler.java/class" and passes a list of addresses.
    Problem:
    If I want to send email to different user, do I need to know about everyOne's HOST and PROTOCOL. My application recieves list of addresses from a remote server of a data-selling-company so they don't have that info.
    Following is the code (hardCode!) of MyMailHandler.
    properties.put("mail.smtp.host", "MAIL.DMCDATABASE.COM");
    properties.put("mail.transport.protocol", "IMAP");
    Question:
    How do I send emails to receivers without knowing everyOne's host and Protocol?????? (new to JavaMail)

    No, you only need to know the name of your own mail host. It will send the e-mails to those 10,000 addresses for you. And the protocol for sending mail is SMTP, that's all you need to know to send mail. IMAP and POP are protocols for storing received mail messages and so are not relevant to your task.

  • I had a iPhone 3G and I change it in to a iPhone 4G 32GB! I have 3 apple ID account. The one I used is edited by host and I know my password but it ask me for my security question and I forgot it! It send a veify email the answer the an email to blu

    I had a iPhone 3G and I change it in to a iPhone 4G 32GB! I have 3 apple ID account. The one I used is <edited by host> and I know my password but it ask me for my security question and I forgot it! It send a veify email the answer the an email to <edited by host> and the email <edited by host> that is my other  apple ID and the password work on apple but my yahoo account I forgot my password and security question and it won't   verify to my email on to my apple email. so it  send the answer  to  <edited by host> and I can't get it! So Can u do something? Both account r also on my iCloud. I can open both apple account but it won't let me buy nothing on my <edited by host> ! On my <edited by host> that one dose let my buy thing but I had lot of thing I bought on <edited by host> I  bought lots of movies music and app. I spend lot of money on this account.

    It's a really bad idea to post your email addresess - it's an invitation to spam - and I've asked the Hosts to remove them.
    This is a user-to-user forum and no-one on here can take any direct action. If your Yahoo address is not working that's something you would need to take up with Yahoo - have you checked it by sending yourself an email to it?
    Otherwise you will need to contact Support: go to https://expresslane.apple.com/ and click on 'iTunes' in the center column and then 'iTunes Store' in the right-hand column and proceed from there.

  • How to determine if a user has access to an item

    Without using the WWSEC_API, i need to find out if a user (not the logged in user) has the right privileges to view an item (url).
    Has anyone identified what tables are involved in determining if a user has access to view an item ?

    Create a vo with the following SQL passing userid as bind value:
    SELECT C.USER_NAME,
    B.RESPONSIBILITY_NAME,
    A.START_DATE,
    A.END_DATE
    FROM APPS.FND_USER_RESP_GROUPS_DIRECT A,
    APPS.FND_RESPONSIBILITY_TL B,
    APPS.FND_USER C
    WHERE C.USER_ID = A.USER_ID
    AND C.USER_NAME= :1
    AND B.RESPONSIBILITY_ID = A.RESPONSIBILITY_ID
    You will have the list of all the responsibilities of a user.
    Kristofer

  • Determine if a user has access to a URL in a webApp?

    Hello All.
    I have created a WebApp and defined <security-constraint>'s in the
    /WEB-INF/web.xml file, and all works fine.
    However, I would like to enable/disable links on my User Interface based on
    the current user's groups/roles and the <security-constraints>'s.
    I can use the request.isUserInRole() method to determine if a user belongs
    to a particular role.
    However, what happens if the access to the URL changes in the web.xml file.
    I need to programmatically determine which roles can access a URL defined in
    the <security-constraint>.
    Are there any weblogic classes that will assist in determining url patterns
    and roles.
    Any help would be greatly appreciated.
    Thank you
    Brad Hof

    Bradley Hof wrote:
    Hello All.
    I have created a WebApp and defined <security-constraint>'s in the
    /WEB-INF/web.xml file, and all works fine.
    However, I would like to enable/disable links on my User Interface based on
    the current user's groups/roles and the <security-constraints>'s.
    I can use the request.isUserInRole() method to determine if a user belongs
    to a particular role.
    However, what happens if the access to the URL changes in the web.xml file.You can't redeploy webapps in WL 5.1 so this will never happen :)
    Cheers,
    Alex

  • How to properly partition separate Root, Applications, and Users volumes?

    Wondering if there's an official Apple recommended method to set Applications and Users directories on different physical Volumes (be it a separate partition or separate physical drive).
    The bottom of this Apple document alludes to this by stating, "Divide hard disk space into partitions and then, for example, keep your applications in one section and your documents in another."
    http://docs.info.apple.com/article.html?path=Mac/10.5/en/8769.html
    I'd like to do this, but there seems to be issues with symbolic linking from some of the solutions out there. Not sure if Apple has a sanctioned method that won't be incompatible with some Applications and/or future upgrades.
    Thanks in advance for anybody's insight.

    ArborWoody,
    The concept of using separate volumes and/or drives to store system, HOME folders, applications, and even swap files separately has been debated, tested, then debated some more time and time again for many years. The findings are that, without doubt and in all realistic cases, jumping through convoluted hoops doesn't get you anything. Nothing at all.
    Given the lack of any real benefit, plus the complexity of making the attempt, to do so is folly. The best advice we could give you would be to forget all about doing this, or in fact doing anything but keeping things just as they are in the default configuration of OS X.
    Notice, however, that one thing I mentioned above is "HOME folders." I specifically did not mention "user data." While one's HOME folder typically contains user data, the two things are not the same. In very many cases, it is in fact beneficial to store certain types of user data on a second volume or drive. What type of data, and where it would be best to store that data, would be determined entirely by one's workflow environment and the uses to which that data will be put.
    It could be that a striped RAID array is the solution that would work best for you. Or, you may instead be best served by using a mirrored RAID array. In some cases, external storage is best. In others, not so much.
    One of the important issues you mention is facilitation of backup and recovery. Absolutely! The answer is Time Machine. Or, perhaps Time Machine and the maintenance of a "clone" (not something I do, but popular nonetheless). But what does Time Machine do for us? Simple. It is designed to allow us to quickly and easily recover from potential disaster, up to and including the loss of a startup drive or even an entire machine (this second possibility assumes that the TM backup is stored externally or on a safe drive, of course).
    What can we do to enable Time Machine to do its job most effectively? This, too, is pretty simple. Just keep our startup volume as "slim" as we can. Not by moving HOME folders or applications, but by common-sense file management, tailored to the specific usage to which this machine is dedicated. Perhaps more importantly, more pertinent to this thread, moving one's applications or HOME folders off the startup volume actually interferes with Time Machine's ability to do its job. For an example of the effects of this interference, just take a look at this fun thread.
    Scott

  • Configuration issue in IE as Document mode: 10 and User agent String: Internet Explorer 8

    Hi,
    I have a telerik rad popup window performing some input operation. The problem is when I use the configuration in IE as Document mode: 10 and User
    agent String: Internet Explorer 8, scroll bars appear in the window from nowhere. It is working fine with every other configuration of IE. I've also used a separate stylesheet for IE 8 but it won't apply in this case. 
    Here are the screen shots of the window.
    Actual view
    With Scorllbar
    Please if anybody could suggest a solution for this weird problem it would be a great help.
    Thanks in advance.
    Neelesh

    Hi,
    It seems we need to talk with the site developers to determine how the sheet would display with different IE user agent string.
    Regarding the user agent string changes, please take a check with the following article:
    Introducing IE9’s User Agent String
    The Internet Explorer 8 User-Agent String (Updated Edition)
    Hope this may help
    Best regards
    Michael Shao
    TechNet Community Support

  • What is required in the HOST and QUEUE field when ...

    Hi
    When setting up my printer, i fill the options identical to what follows:
    PRINTER:  SAMSUNG HOME
    DRIVER:    GENERAL
    BEARER:  LPR <-----------------------------( NOT SURE IF IT IS THE CORRECT OPTION TO SELECT )
    The following fields appear once LPR is selected:
    ACCES POINT : HOME
    HOST:              WHAT COMES HERE?
    USER:              SKY00BER
    QUEUE:            WHAT COMES HERE?
    ORIENTATION: PORTRAIT
    PAPER SIZE: A4
     if it helps, my printer is SAMSUNG CLX-3175FW. It is Wifi Enable and is connected to my HOME acces point.
    please do correct me if there has to be changes to the BEARER or anything else.
    i could really use some help.
    thanks in advanced.

    sky00ber wrote:
     Hi,
    What is required in the HOST and QUEUE field when setting a WIFI printer?
    When setting up my printer, i fill the options identical to what follows:
    PRINTER:  SAMSUNG HOME
    DRIVER:    GENERAL
    BEARER:  LPR <-----------------------------( NOT SURE IF IT IS THE CORRECT OPTION TO SELECT )
    The following fields appear once LPR is selected:
    ACCES POINT : HOME
    HOST:              WHAT COMES HERE?
    USER:              SKY00BER
    QUEUE:            WHAT COMES HERE?
    ORIENTATION: PORTRAIT
    PAPER SIZE: A4
     if it helps, my printer is SAMSUNG CLX-3175FW. It is Wifi Enable and is connected to my HOME acces point.
    please do correct me if there has to be changes to the BEARER or anything else.
    HELP URGENTLY NEEDED!
    I'm not sure but I give it a try.Turn your security(WPA/WEP) and Firewall temporarely off. HOST is the IP address of the printer. QUEUE can be YES or a specific amount of prints, like 1,2,3......
    If I look at the manual of your printer I see that you can find the IP and MAC addresses in the Network Configuration Report.I don't know what the USER is doing there because if there is a user then there must be a password.
    ‡Thank you for hitting the Blue/Green Star button‡
    N8-00 RM 596 V:111.030.0609; E71-1(05) RM 346 V: 500.21.009

Maybe you are looking for