Accessing any remote machine

how can i access any remote machine connected via a LAN for I/O oprations on Wndows platform, Could it be possible? i'v IP address.

via a LAN for I/O oprations on Wndows platformThe easiest way (assuming the I/O operations are file operations) would be to set
up a share on the remote machine and access it using File as usual.import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
public class LanTest {
    public static void main(String[] args) throws IOException {
        File file = new File("//10.144.32.13/jdctest$/message.txt");
        BufferedReader in = new BufferedReader(new FileReader(file));
        System.out.println(in.readLine());
}

Similar Messages

  • Trouble accessing a remote machine via ARD over a VPN

    Hi There,
    I'm having  trouble accessing a remote Workstation via ARD over a VPN.
    The VPN is set up and I can:
    - Control our 10.6 server via ARD remotely
    - Mount volums from the 10.6 server remotely
    - Access another server (we run an accounting server) remotely
    But we can't access a Workstation using ARD.
    I can connect to the Workstation when in the office so assume it's configured for access - I guess I suspect the issue lies with the Firewall on the 10.6 server and/or the Netgear FSV366G Firewall.
    The VPN is setup on the 10.6 server so figure it's something to do with Snow Leopard server?
    I'm just not sure how to narrow things down and fix the issue - although I setup the server I'm not super Unix savvy.
    Any help or pointers in the right direction would be much appreciated.
    Cheers
    Ben

    I can't say for certain what is going wrong in your case but I can confirm it is possible to do an ARD connection i.e. Screen Sharing to a remote user connected via a VPN. The way we do this is to get the user to connect to the VPN server (a Mac OS X Server), then on the Mac OS X Server in Server Admin see what IP address they have been allocated by the VPN server, then tell ARD Admin to connect to that IP address.
    This works fine for me.
    The IP address will be a 'local'  to the ARD and VPN machines IP address it would not be the remote public or private IP addresses.

  • Applescript - Access to remote machines

    Hi,
    I am currently writing an applescript that will activate remote login and remote management from system preferences AND add the admin account under "Allow access for:"
    Here is what I currently have,
    tell application "System Preferences"
      activate
              delay 0.5
              set current pane to pane "com.apple.preferences.sharing"
    end tell
    delay 0.5
    tell application "System Events" to tell process "System Preferences"
      click checkbox 1 of row 7 of table 1 of scroll area 1 of group 1 of window "Sharing"
              delay 0.3
      click checkbox 1 of row 8 of table 1 of scroll area 1 of group 1 of window "Sharing"
              delay 0.3
    end tell
    This succesfully activates both remote login and remote management but I can't seem to find out how to click the "+" button under these tabs, or then add the correct user.
    Any help would be appreciated.

    Here's the full script for adding a user to the Sharing > Remote Management list with all permissions:
    tell application "System Events" to tell process "System Preferences"
              set frontmost to true
    keystroke tab
    keystroke tab
    click button 1 of group 1 of group 1 of window 1
              select (row 1 where value of text field 1 is "yourusername") of table 1 of scroll area 2 of splitter group 1 of sheet 1 of window 1
    keystroke return
              delay 0.5
              click checkbox "Observe" of sheet 1 of window 1
              click checkbox "Control" of sheet 1 of window 1
              click checkbox "Show when being observed" of sheet 1 of window 1
              click checkbox "Generate reports" of sheet 1 of window 1
              click checkbox "Open and quit applications" of sheet 1 of window 1
              click checkbox "Change settings" of sheet 1 of window 1
              click checkbox "Delete and replace items" of sheet 1 of window 1
              click checkbox "Start text chat or send messages" of sheet 1 of window 1
              click checkbox "Restart and shut down" of sheet 1 of window 1
              click checkbox "Copy items" of sheet 1 of window 1
    keystroke return
    end tell

  • How remote monitoring works -- without any agents at remote machine

    Using JAVA, Is there any way to execute a system level command on the remote machine and get back the data to the host machine.
    It should work something like this, my application resides on Windows, and it should send a system command to the remote machine (Solaris) like vmstat and getback the resultant output to my application. This should be achieved without installing any agents at the remote machines.
    Suggest me some good advice to design this application.

    Most Unix boxes run a Telnet serverActually, if the sysadmins are smart, there's no
    telnet server nor a telnet client in sight - they've
    been removed and sshd is running. Most (if I
    remember correctly) Linux distros now do not
    install telnetd by default, but sshd is. I use
    Linux/Solaris 100% of the time, at work and at home,
    and I can't even remember the last time I fired up
    "telnet."This is a good point and hints to the fact that any application must define and document
    its dependencies. In this case the application must document that the appropriate server daemon
    must be running for it to work, whether telnetd, rshd or sshd. No assumptions can be made about any
    of these daemons as they can all be turned off and not running.
    For this application to run the user must be able to turn on the required daemon at the required
    server. This is not the same but somewhat equivalent to requiring the installation of a
    specialized daemon at the server. In all cases the user must have administrative access to the server,
    either directly or indirectly.

  • VPN connection works, but can't ping or access any other device on remote network

    I have an OS X Lion server at work (uses a static IP of 192.168.2.10). VPN is setup and works.
    The work network's router has an IP of 192.168.2.1 and hands out IPs of 192.168.2.100-149. The VPN service is configured to hand out IPs of 192.168.2.150-170.
    My home network uses a router with an IP of 192.168.1.1 and hands out IPs from 192.168.1.2-49
    Both routers are using subnet mask of 255.255.255.0
    The problem is, I can connect to the VPN just fine and access all services running on that same OS X server like iChat and AFP file sharing. But, I cannot directly access any other device on the office network like client machines or even trying to log into the router's GUI interface. Pings timeout, etc.
    Example:
    At my home, I have a local IP of 192.168.1.12 and I connect to the work VPN. It assigns me an IP address of 192.168.2.151 and I'm able to connect to iChat on the OS X server that has a static IP of 192.168.2.10
    In terminal, I try to ping the router on the work network (192.168.2.1) and I get no response (even though ICMP response is turn ON). I try to ping another OS X workstation on the work office, and get no response.
    I'm not sure how to fix this, or whether I need to change settings on either router or the server.
    Would greatly appreciate any insight or help on this. Thanks.

    danimalapple wrote:
    I have an OS X Lion server at work (uses a static IP of 192.168.2.10). VPN is setup and works.
    The work network's router has an IP of 192.168.2.1 and hands out IPs of 192.168.2.100-149. The VPN service is configured to hand out IPs of 192.168.2.150-170.
    My home network uses a router with an IP of 192.168.1.1 and hands out IPs from 192.168.1.2-49
    Both routers are using subnet mask of 255.255.255.0
    The problem is, I can connect to the VPN just fine and access all services running on that same OS X server like iChat and AFP file sharing. But, I cannot directly access any other device on the office network like client machines or even trying to log into the router's GUI interface. Pings timeout, etc.
    Example:
    At my home, I have a local IP of 192.168.1.12 and I connect to the work VPN. It assigns me an IP address of 192.168.2.151 and I'm able to connect to iChat on the OS X server that has a static IP of 192.168.2.10
    In terminal, I try to ping the router on the work network (192.168.2.1) and I get no response (even though ICMP response is turn ON). I try to ping another OS X workstation on the work office, and get no response.
    I'm not sure how to fix this, or whether I need to change settings on either router or the server.
    Would greatly appreciate any insight or help on this. Thanks.
    Check the DNS settings on the server (see my earlier post in this thread).

  • Not able to access database from a remote machine using SQL Server Management Studio

    Hi,
    I have a DB_BOX with SQL Server 2008 R2 installed. I can access the databases on the local machine using SQL Server Management Studio but it is not accessible from other machines, though the machines are in same domain.
    I have remote enabled on SQL Server box, TCP enabled, firewall off. I checked with IP Address too, all SQL Server services are running.
    The SQL Server log shows the message
    The requested service has been stopped or disabled and is unavailable at this time. The connection has been closed.
    I get the below message in SSMS from remote machine.
    Details of error message are
    ===================================
    Cannot connect to DB_BOX.
    ===================================
    A connection was successfully established with the server, but then an error occurred during the login process. (provider: TCP Provider, error: 0 - The specified network name is no longer available.) (.Net SqlClient Data Provider)
    For help, click: http://go.microsoft.com/fwlink?ProdName=Microsoft+SQL+Server&EvtSrc=MSSQLServer&EvtID=64&LinkId=20476
    Server Name: DB_BOX
    Error Number: 64
    Severity: 20
    State: 0
    Program Location:
       at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection)
       at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParserStateObject.ReadSniError(TdsParserStateObject stateObj, UInt32 error)
       at System.Data.SqlClient.TdsParserStateObject.ReadSni(DbAsyncResult asyncResult, TdsParserStateObject stateObj)
       at System.Data.SqlClient.TdsParserStateObject.ReadNetworkPacket()
       at System.Data.SqlClient.TdsParserStateObject.ReadBuffer()
       at System.Data.SqlClient.TdsParserStateObject.ReadByte()
       at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj)
       at System.Data.SqlClient.SqlInternalConnectionTds.CompleteLogin(Boolean enlistOK)
       at System.Data.SqlClient.SqlInternalConnectionTds.AttemptOneLogin(ServerInfo serverInfo, String newPassword, Boolean ignoreSniOpenTimeout, Int64 timerExpire, SqlConnection owningObject)
       at System.Data.SqlClient.SqlInternalConnectionTds.LoginNoFailover(String host, String newPassword, Boolean redirectedUserInstance, SqlConnection owningObject, SqlConnectionString connectionOptions, Int64 timerStart)
       at System.Data.SqlClient.SqlInternalConnectionTds.OpenLoginEnlist(SqlConnection owningObject, SqlConnectionString connectionOptions, String newPassword, Boolean redirectedUserInstance)
       at System.Data.SqlClient.SqlInternalConnectionTds..ctor(DbConnectionPoolIdentity identity, SqlConnectionString connectionOptions, Object providerInfo, String newPassword, SqlConnection owningObject, Boolean redirectedUserInstance)
       at System.Data.SqlClient.SqlConnectionFactory.CreateConnection(DbConnectionOptions options, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningConnection)
       at System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup)
       at System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection)
       at System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory)
       at System.Data.SqlClient.SqlConnection.Open()
       at Microsoft.SqlServer.Management.SqlStudio.Explorer.ObjectExplorerService.ValidateConnection(UIConnectionInfo ci, IServerType server)
       at Microsoft.SqlServer.Management.UI.ConnectionDlg.Connector.ConnectionThreadUser()

    Sorry, missed the message from the errorlog in the original post. You shouldn't have included that big .Net dump that hid the important facts. :-)
    My first Google attempt on that message (which I have never seen before) suggests that the TCP Enpoint is stopped, so try this:
    ALTER ENDPOINT [TSQL Default TCP]
    STATE=STARTED;
    Erland Sommarskog, SQL Server MVP, [email protected]
    This solves the problem. Thanks...

  • Using MS Access as Database from Remote Machine

    Hi All
    I am trying to use MS access as Data base, I have done the following.
    1. I have Added the mdb file on a remote machines DSN.(Control Panel->Admin Tools->ODBC->System Tools)
    2. In xMII data services->Data Servers, Copied the Default IDBC Server, renamed it and updated the ServerURL as  jdbc:inetdae:<IP of Remote machine>:1433?database=<DB Name>&sql7=true.
    With these things done, I am not able to get the Data Server Accesible.
    Please correct what mistake I have made.
    Thanks and Regards
    Rupesh

    Rupesh,
    First Access is not a very good database... I would suggest using MSSQL, MySQL, or some other 'real' database. But I digress...
    The only supported way to get the data you want from Access is by... you guessed it... the <b>xMII OLEDB UDS</b>. Sure you could try the JDBC - ODBC bridge, but this seems to be shaky.
    Martin - seriously... I'm trying to get the UDSs out to all of you!

  • Accessing a XML file located in a remote machine.

    I have a XML file located in a remote machine(source machine), and I want to be able to move the data from that file to a remote database (target).
    I have a central ODI deployment and a central master and worker repository.
    The issue I have is that it seams to me that in order to use an XML file the XML file needs to be local to the ODI client(topology manager, designer etc).
    The question what do I need to do in order to access the file located in the remote source machine if that machine does not have an ODI client?
    Thanks

    Hi Terence,
    why don't you try to put all your JPA stuff (classes, persistence.xml, etc) in a "library" jar file and then deploy it inside your .war (under META-INF/lib) and .ear (under the lib)?
    Is it acceptable for your purpose?
    Fabio De Santi

  • Can't get access in Time Machine to certain folders for any date earlier than current date/time.

    Can't get access in Time Machine to certain folders for any date earlier than current date/time, even when entering as Admin. Why do certain folders have small red "-" badge in lower right corner of folder icon?  Here's a picture of the dilemma:
    I've tried monkeying with priveleges using Command I, and changing users, but to no avail.  Can anyone help?

    Right.  Here's what the permissions look like from the Finder Command I:
    I'm not sure what "Custom" means, but when I then try to change it to "Read & Write", it doesn't take.... just comes back as Custom. Interesting to note that not only am I logged into Joan's account where the data folder and file lives) to do this, but when I do it from my own account  as Admin (dunc...mpster) I get the same result.

  • Psexec shows Access denied when i execute a .exe file on a remote machine

    Hi All,
    I am using Psexec application to run exe on multiple remote machines in the domain. When i run the the .EXE i get the error message saying access is denied.
    I am running this script against agents in a list.
    Below is the script i am running in the batch:
    "C:\Windows\system32\PsExec.exe" @C:\Test.txt cmd
    1. I am first connecting to the cmd of the remote computer and it connects successfully.
    2. When i enter the .exe file location on the command prompt (which is also in a shared drive but in the same domain).
    3. I ran the batch file as Run as administrator
    4. I am itself a member of the Domain admins and Administrators group of the domain.
    5. Turned off firewall on both sides.
    6. Turned off UAC fully as per the below MS article - http://technet.microsoft.com/en-us/library/cc709691(v=ws.10).aspx
    7. Pressed shift and right click so i will get the Run as option and mentioned different domain admins user account and password.
    Below is the screenshot for your reference: 
    Restated both the machines after doing these changes. But still the same issue.
    But still i get access is denied. Can anyone please help.
    Gautam.75801

    Few days back when i used to run the same task in this Access is denied mode its self. My destination server used to give a Audit failure event log as below.
    Now a days this event log does not come.
    Can this help for analysis.
    Subject:
    Security ID:
     Domain name\My username
    Account Name:
     Gautamr
    Account Domain:
    My Domain
    Logon ID:
     0x234992
    Object:
    Object Server:
    Security
    Object Type:
     File
    Object Name:
     C:\Windows\System32\eventvwr.msc
    Handle ID:
     0x0
    Process Information:
    Process ID:
     0x17e0
    Process Name:
     C:\Windows\System32\mmc.exe
    Access Request Information:
    Transaction ID:
    {00000000-0000-0000-0000-000000000000}
    Accesses:
     READ_CONTROL
    SYNCHRONIZE
    WriteData (or AddFile)
    AppendData (or AddSubdirectory or CreatePipeInstance)
    WriteEA
    ReadAttributes
    WriteAttributes
    Access Reasons:
    READ_CONTROL:
    Granted by
    D:(A;;0x1200a9;;;BA)
    SYNCHRONIZE:
     Granted by
    D:(A;;0x1200a9;;;BA)
    WriteData (or AddFile):
    Not granted
    AppendData (or AddSubdirectory or CreatePipeInstance):
    Not granted
    WriteEA:
     Not granted
    ReadAttributes:
    Granted by ACE on parent folder
    D:(A;;0x1301bf;;;BA)
    WriteAttributes:
    Not granted
    Access Mask:
     0x120196
    Privileges Used for Access Check:
    Restricted SID Count:
    0
    Gautam.75801

  • How can i gain access to my data on a Time Capsule after a fresh install of Mavericks? I can't access any backups through Time Machine... They appear purple/transparent, and I can't even select them to view their contents. PLEASE HELP!!!

    So, I've got several thousand photos, and a decent amount of videos of my daughter, along with a lot of stuff for work stored on my Time Capsule, and now I can't access any of it. I did a fresh install of Mavericks on my MacBook Pro last week sometime, and haven't been able to figure out how to get my files back. Please Help!!! My daughter is 2 and a half, and every picture/video I have of her is locked on this thing. I was planning on making some photo/video projects fo my wife for Christmas, and now I'm definitely not going to be able to pull it off. Her birthday is at the end of January, though, so if I could have it by then, that would rule!
    Basically, the bar on the right of the screen has some gray dates, which I can access (all backups after the Mavericks install), and purple dates that go all the way back to March (when I originally purchased and began using the TC) which deny me access/viewing. It's possible that I created a slightly different user name when I reset my MacBook, which I guess is most likely the cause, but I have no idea what to do now to correct it. Thanks for taking the time!

    Mavericks does really nasty stuff..
    Try manually mounting the sparsebundle and extract the files you want.
    Yet another Pondini reference. http://pondini.org/TM/15.html
    We have avoided Mavericks you see knowing that it would cause these kinds of issues..
    You never ever load a new OS without doing a disk image beforehand.. TM is not reliable enough or trustworthy to be depended on.
    If none of the above work..
    I would get a USB drive on the computer and install Mountain Lion or whatever OS you had before you unfortunately upgraded to Mavericks.. Then use TM from that decent installation but mount the sparsebundle and choose the backup from a date well before mavericks was installed.
    Once you have extracted the files.. or even done a full restore you might be able to extract the files you want.

  • Cannot connect to a named instance using SSMS from a remote machine

    Hi all,
       SQL Server.....: 2012 EE
       OS...................:  Windows Server 2008 R2
       I have a desktop machine, that i am using to administrer SQL Server (via SSMS) and to develop my SSIS solutions, but i can't connect to a named instance of my SQL Server. When i try to connect using SSMS to my named instance (myhost\DWSERVER)
    i get a huge error message:
    A network-related or instance-specific error occurred while establisinh a connection to SQL Server. The server was not found or was not accessible. Verify that the instance is correct and that SQL Server is configured to allow remote connections.
    (provider: TCP Provider, error: 0 - A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.) (Microsoft SQL Server, Error: 10060)
    Locally, i am able to access that named instance using SSMS, just when i try to access from another machine, the above error pops-up to me.
    I am using the SQL Server Authentication mode to connect to the named instance.
    What am i doing wrong?
    Thanks in advance.
    Fabrício Pedroso Jorge Database Administrator - Belém, Pará, Brazil

    Hi,
       thanks for your attention.
       That's correct, i can connect to my default instance both locally and remotelly. The default instance in on port 1433. I cannot find the port used by the named instance (DWSERVER).
       Actually, i found this on the errorlog from the named instance:
       2015-03-22 10:10:45.80 spid13s     Server is listening on [ 'any' <ipv6> 49411].
       2015-03-22 10:10:45.80 spid20s     Server is listening on [ 'any' <ipv6> 5023].
       2015-03-22 10:10:45.81 spid20s     Server is listening on [ 'any' <ipv4> 5023].
       2015-03-22 10:10:45.81 spid20s     The Database Mirroring endpoint is now listening for connections.
       2015-03-22 10:10:46.12 spid13s     Server is listening on [ 'any' <ipv4> 49411].
       2015-03-22 10:10:46.25 spid13s     Server local connection provider is ready to accept connection on [ \\.\pipe\SQLLocal\DWSERVER ].
       2015-03-22 10:10:46.26 spid13s     Server local connection provider is ready to accept connection on [ \\.\pipe\MSSQL$DWSERVER\sql\query ].
       2015-03-22 10:10:46.26 Server      Server is listening on [ ::1 <ipv6> 49412].
       2015-03-22 10:10:46.26 Server      Server is listening on [ 127.0.0.1 <ipv4> 49412].
       I can ping normally to the remote server.
    Fabrício Pedroso Jorge Database Administrator - Belém, Pará, Brazil

  • HT3258 I was on Snow Leopard and it allowed me to get into my hospital computer system and applications. I went to Mountain Lion on my Macbook and now I cannot access any of the applications. I need Java which is installed. It is called I 3 system and is

    I was on Snow Leopard with no issues accessing my Windows and Java based hospital computer system . I swithced to Mountain Lion and now I have NO access to any of the hospital applications remotely. Is there a way I can get back to Snow Leopard or manipulate Mountain Lion to allow me to access my hospital system?

    davidmarr wrote:
    Is there a way I can get back to Snow Leopard or manipulate Mountain Lion to allow me to access my hospital system?
    Restore the Snow Leopard bootable backup/clone or the Time Machine backup. As for making ML work, I've not a clue since I don't do windoze or access things remotely. You'll have to wait for one of those gurus to pop in or just post what's happening when you try at the ML forums.

  • Error code 0x80070043 when trying to access any share (hidden or otherwise) on Server2k3 R2 box

    Background -
    We have a seperate VLAN with a few servers with very locked down security (PCI compliance for credit card processing).
    I recently tried to update the McAfee ePolicy Orchestrator on the server in that VLAN which manages the few machines in that VLAN. The upgrade failed and broke the database, so I opted to uninstall and do a fresh install of the new version, rather than mess
    with trying to recover from a backup.
    Unfortunately, the new install is unable to push agent installs due to not being able to access the admin$ shares on the target machines (according to McAfee support). Through trial and error, I have determined a few puzzling things:
    1) No client shares are remotely accessible from the main server (or other clients), regardless of permissions. This includes admin$, c$ and a test share I created. I have verified all the shares exist and that the appropriate user has admin rights (although
    I don't even get prompted for credentials, so I don't think it is a permissions issue).
    2) The issue exists for machines running Server 2003 R2 sp2 and Server 2008 R2 sp1. The issue does NOT exist for the single Windows XP machine in that VLAN.
    3) DNS and networking works fine - I can ping each machine from any other machine using the IP, FQDN or NetBIOS name.
    4) Firewalls are disabled, so I don't think it is a port issue.
    I've spent hours trying to search for a solution, but nothing I've found seems to apply to my situation.
    Thanks in advance for any help.

    Hi
    Can you install manually the mcafee framework on the machine you want to deploy it (you can even push it in a login script) ? To have the agent installed and later on to have the policy make the mcafee shield to install..
    Search your mcafee server for the framework, I know it exist a folder with it. I just don't have it by hand.
    Regards, Philippe

  • Update-Help error when console application is run in remote machine via PS remoting

    Hello,
    When I execute a particular console application in a remote machine via PS remoting, I get an error related to update-help. When I execute it directly on the remote machine, it works...
    My code:
    $credential = Get-Credential -Credential "DomainName\AccountName"
    $session = New-PSSession -ComputerName "MachineName" -Authentication Credssp -Credential $credential;
    Invoke-Command -session $session -ScriptBlock {
    try{
    cd <network share location>
    .\theConsoleApp.exe | Out-File C:\console-output.txt
    $error | Out-File C:\console-error-output.txt
    $exitCode
    } catch {
    throw $error
    Error seen in the console:
    NetNat, PcsvDevice, PSDesiredStateConfiguration, SoftwareInventoryLogging, StartScreen, TLS, WindowsSearch' with UI culture(s) {en-US} : Unable to retrieve the HelpInfo XML file for
    UI culture en-US. Make sure the HelpInfoUri property in the module manifest is valid or check your network connection and then try the command again.
    $error variable from above:
    Errored out (exit code 1603) with error message: ErrorId 10010: Xpatch threw an unexpected exception: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
    I’ve tried
    two different user accounts
    multiple file share locations
    different OSs
    different target servers
    but have not determined the cause of the error.
    I would appreciate any help on this.
    -Rohan.

    Clearly the remote EXE cannot run in that context.  YOU should not run that program remotely.
    I suspect there is also information you are not giving to us.
    ¯\_(ツ)_/¯

Maybe you are looking for

  • The requested operation is not supported on forward only resultset.

    I have created an interface in java which is connected with SQL server 2008 r2. When I press the Next and Previous button it navigates the record successfully. But when I search a particular record in database and then click the Next or Previous butt

  • How to retrieve photoshop files metadata

    Hello, I am looking for reliable Java API on Windows and Unix platforms for retrieving metadata from PST files. Any suggestions and code examples are greatly appreciated. Thanks, Sergey.

  • Apache Commons Net deployment fails to resolve, JDev classpath question

    I wrote a wrapper to apache's most recent version of commons-net package (version 1.4.1) to allow me to execute FTP services from an Oracle 9i2 database. After adding the common-net .jar file to the JDev libraries, and including this library in my pr

  • Is it a flash bug?or???

    is it a flash bug?o how i can fix it? http://www.gotoandlearnforum.com/viewtopic.php?f=28&t=15709

  • Trouble Burning in iTunes

    Hi All: I am having problems when burning a disc in iTunes. I get a message stating that this or a number of songs cannot be burned unless the computer is authorized thru Mac. The authorization IS turned on. The discs were imported under Apple LossLe