Mail relay through Windows Server 2003

I work in a communications department at a small university.  I'm running a Mac network sandboxed inside of the main institution's Windows network.  All of my macs are connected to an XServe and all services except internet access are controlled via my XServe.  We're connected to the internet through a router between my network and the main institution's.  We're set up this way because the IT department won't touch macs, so they pushed all the mac stuff onto me (I don't have a computer science degree or anything of that nature, just an interest and a couple server certification classes).
Anyway, I have a small web-based app that handles gear checkout.  For simplicity, it only works on my intranet.  However, it's designed to send emails to appropriate people for different things (when gear is checked out, if there's a problem, etc).  The problem is that these emails must be relayed through IT's server.  They're telling me that they can't set their server up to relay email from mine without making it an open relay (which, obviously, none of us wants).
My question is, is it really that difficult to allow email to relay from a specific address on Windows Server 2003?  On my mail server, I readily found a "Allow relays from these address only" section and seems this is exactly what would be needed on their side--I can't imagine it's much more difficult or generalized than that on their end.
Here is the log entry on my server when an email is attempted to send.  Is there something else I should be looking at besides the relay?
Mar  8 10:03:28 MYSERVER postfix/smtp[12631]: 3C02EE81654: to=<[email protected]>, relay=IT.MAIL.SERVER[192.168.x.x]:25, delay=0.01, delays=0/0/0.01/0, dsn=4.7.0, status=deferred (SASL authentication failed; cannot authenticate to server IT.MAIL.SERVER[192.168.x.x: generic failure)

They're telling me that they can't set their server up to relay email from mine without making it an open relay
Then they're even stupider than your opening paragraph implies. Seriously. If they cannot setup their mail server to accept and relay mail from a specific IP address they really should be looking for other jobs... no, other careers entirely, since they have no idea what they're doing. Or, at least, no interest in what they do.
Indeed, a google search finds a Microsoft Technet article as the first hit. I believe item #4 on that list is exactly what you need. And I don't even do Windows!

Similar Messages

  • Connect SQL Server 2012 from Windows Server 2003 with native client 9.0

    Hi,
    I currently have a setup where ETL tool Ab Intio, running on a Linux server, connects to the SQL Server 2005 through a passthrough Wintel server with Windows Server 2003 OS using SQL server native client 9.0
    Now I have the requirement to upgrade the SQL server from 2005 to 2012.
    My question is, will it be possible to connect to SQL server 2012 through Windows Server 2003 with native client 9.0?
    As per the specs, I need native client 11.0+ to fully support SQL Server 2012, but then, as per specs, native client 11.0 doesnot run on Windows server 2003. OS upgradation is currently not on the cards.
    So will it be possible to the run the basic queries we use currently, if we can connect SQL server 2012 through Windows Server 2003 with native client 9.0/10.0, without updgrading the OS of the Wintel server?
    Thanking you in advance! 

    Hi Soumya,
    Yes, you can use the SQL Server Native Client shipped with SQL Server 2005 to connect to a SQL Server 2012 instance, and there is no need to upgrade the operating system.
    Regards,
    Mike Yin
    TechNet Community Support

  • I am having difficulty: we are running a windows server 2003 - mail and outlook support 2007 and upwards, how do I get the brand new apple machines to work with the 2003 version of server

    I am having difficulty: we are running a windows server 2003 - mail and outlook support 2007 and upwards, how do I get the brand new apple machines to work with the 2003 version of server

    I may be way out, but do you know about this product, would it help integrate the Macs for you.
    https://www.thursby.com/sites/default/files/images/ADmitMacv8_SPD.pdf

  • Mail cannot open hyperlink of file located in windows server 2003

    My macbook air has access to shared directory located in a windows server 2003 machine via smb mount. However, when I get an email containing a hyperlink of a file located in the shared directory, mail cannot open the link. Any ideas?

    You might read the EULA and confirm the issue I have mentioned. I might not be correct in my estimate, but just gave a sounds like opinion. If it is a violation, then removing it is wise. Typically, Acrobat must be installed on each individual machine. There are multiple license options and server options, but you would need to contact Adobe for more information on those areas. Hope you can get them to talk to you in such a case.

  • Oracle Hot Backup Script Windows Server 2003

    Hello,
    Does anyone here have a working Oracle 10I database hot backup script for Windows Server 2003? If so can you please post it here.
    Thanks.

    Here is a basic batch script I have used for a hot backup of Oracle databases using RMAN
    Will just need to update some locations based on you environment just check all the comments and change what you need to but this can be scheduled to run regularly through the windows scheduler for database backups.
    This will take a hot backup and backup the archive logs.
    Let me know if you have any quesitons.
    REM #####################################################################
    REM # Name: rman_hot_backup_dsk.bat
    REM #
    REM # Description:
    REM #
    REM # Generic Hot backup script that accepts the SID
    REM #
    REM # Parameters: Instance Name, backup level
    REM #
    REM #####################################################################
    REM #
    REM # Check if SID was Passed
    if (%1)==() goto USAGE
    if (%2)==() goto USAGE
    REM # assign ORACLE_SID to passed SID
    set ORACLE_SID=%1
    REM # Set the hot backup level 0-full 1-incremental
    set LEVEL=%2
    REM # export the page list
    set [email protected]
    REM # assign a date we can use as part of the logfile
    set DTE=%date:~-4%%date:~4,2%%date:~7,2%_%time:~0,2%%time:~3,2%%time:~6,2%
    REM # Take the spaces out of the date string so we can use in our file name
    set DTE=%DTE: =%
    REM # set the script location
    REM # Set location of where you will put script
    set SCRIPTLOC=C:\app\oracle\scripts
    cd %SCRIPTLOC%
    REM # Set the Temporary command file that we will write our rman script to
    set CMDFILE=%SCRIPTLOC%\%ORACLE_SID%_rman_hot_backup_dsk.cmd
    REM # Remove the temporary file if it exists
    del /q %CMDFILE%
    REM # Set the logfile directory
    REM # Change based on where you want the backup logs to go
    set LOGPATH=W:\ORACLE_BACKUP\logs
    set LOGFILE=%ORACLE_SID%_rman_hot_backup_dsk_%DTE%.log
    set LOG=%LOGPATH%\%LOGFILE%
    REM # Set the path of the backup location
    REM # Change based on disk pach for you disk based backups
    set BACKLOC=\\VirtualBox\ORA_ITS03P\ORACLE_BACKUP\%ORACLE_SID%
    REM # Lets set the ORACLE_HOME for the host
    REM # Set to your actual ORACLE_HOME location
    set ORACLE_HOME=C:\app\oracle\product\10.2.0\db_1
    # Set the rest of the Oracle Environment
    # based on our ORACLE_HOME
    set LIBPATH=%ORACLE_HOME%/lib
    set LD_LIBRARY_PATH=%ORACLE_HOME%/lib
    set TNS_ADMIN=%ORACLE_HOME%/network/admin
    REM #set ORA_NLS10=%ORACLE_HOME%/nls/data
    REM Set our PATH with the ORACLE_HOME so that we have a good
    REM clean environment to work with
    set PATH=%ORACLE_HOME%/bin;%ORACLE_HOME%/OPatch;%PATH%
    REM # Write Temporary command file for RMAN backup
    echo # configure retention policy >> %CMDFILE%
    echo CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 14 DAYS ; >> %CMDFILE%
    echo # >> %CMDFILE%
    echo # lets start clean for our hot backup by doing full crosschecks >> %CMDFILE%
    echo change archivelog all crosscheck ; >> %CMDFILE%
    echo crosscheck backup of database; >> %CMDFILE%
    echo crosscheck backup of controlfile; >> %CMDFILE%
    echo # >> %CMDFILE%
    echo # delete all expired and obsolete backups >> %CMDFILE%
    echo allocate channel for maintenance type disk ; >> %CMDFILE%
    echo delete noprompt expired archivelog all ; >> %CMDFILE%
    echo delete noprompt expired backup ; >> %CMDFILE%
    echo delete noprompt obsolete ; >> %CMDFILE%
    echo # >> %CMDFILE%
    echo # Configure control file for auto backup >> %CMDFILE%
    echo configure controlfile autobackup on ; >> %CMDFILE%
    echo CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%BACKLOC%\%ORACLE_SID%_controlfile_%%F' ; >> %CMDFILE%
    echo # >> %CMDFILE%
    echo # Configure default device type here we use disk and set parallelism to 2 >> %CMDFILE%
    echo configure default device type to disk ; >> %CMDFILE%
    echo configure device type disk parallelism 2 ; >> %CMDFILE%
    echo # >> %CMDFILE%
    echo # Must format the default channel for the device type disk >> %CMDFILE%
    echo # other wise tmp area in creating pieces will be done in >> %CMDFILE%
    echo # the $ORACLE_HOME/dbs directory >> %CMDFILE%
    echo CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT = '%BACKLOC%\%ORACLE_SID%_hot_%%U' ; >> %CMDFILE%
    echo # >> %CMDFILE%
    echo # Configure our retention policy for this database >> %CMDFILE%
    echo configure retention policy to recovery window of 14 days ; >> %CMDFILE%
    echo # >> %CMDFILE%
    echo # Let configure our channels for our backup >> %CMDFILE%
    echo # Channel 1 disk and we indicate where it goes not taking the default >> %CMDFILE%
    echo configure channel 1 device type disk MAXPIECESIZE = 4G format '%BACKLOC%\%ORACLE_SID%_hot_%%U' ; >> %CMDFILE%
    echo # Channel 2 disk and we indicate where it goes not taking the default >> %CMDFILE%
    echo configure channel 2 device type disk MAXPIECESIZE = 4G format '%BACKLOC%\%ORACLE_SID%_hot_%%U' ; >> %CMDFILE%
    echo # >> %CMDFILE%
    echo # Backup our database with compression on >> %CMDFILE%
    echo backup as compressed backupset incremental level %LEVEL% tag hot_%LEVEL%_%DTE% DATABASE ; >> %CMDFILE%
    echo # >> %CMDFILE%
    echo # Backup our archive log files that have not been backed up >> %CMDFILE%
    echo backup as compressed backupset format '%BACKLOC%\%ORACLE_SID%_Archive_%%d_%%s_%%p_%%t' archivelog all not backed up 1 times ; >> %CMDFILE%
    echo # >> %CMDFILE%
    echo # Backup Control file for standby in case needed >> %CMDFILE%
    echo backup current controlfile for standby ; >> %CMDFILE%
    echo # >> %CMDFILE%
    echo # let put a controlfile to trace >> %CMDFILE%
    echo sql 'ALTER DATABASE BACKUP CONTROLFILE TO TRACE' ; >> %CMDFILE%
    REM # Run the RMAN backup without using the recovery catalog
    %ORACLE_HOME%\bin\rman target=/ nocatalog cmdfile=%CMDFILE% msglog=%LOG%
    REM # Remove our temporary command file
    del /q %CMDFILE%
    REM # Mail Archive backup log
    REM # This relies on the free bmail utility
    bmail -date -m %LOG% -f [email protected] -s <smtpserver> -t %PAGE_LIST% -a "HOT Backup results"
    REM # Goto end of script as we are done
    goto END
    :USAGE
    echo "Must Pass ORACLE_SID and hot backup level as parameters."
    goto END
    :END

  • HP Cloud Print Driver for Windows Server 2003?

    Hello,
    I have a unique (complicated) situation that I am trying to find a solution for.
    Here is the deal,
    My company is trying to set up a temporary remote branch location inside a building where we are unable to wire a network. Our solution is to use a wireless hotspot. Connected to this hotspot, we will have an iPad and an HP Laserjet M525.
    The iPad will be connecting to our Citrix environment over VPN through Citrix Receiver to deliver a desktop interface to the iPad. This is needed to access a few applications that are used at the branch.
    The problem now is printing, AirPrint wont work because the iPad is on VPN (and its at a windows interface, not the iPad's).
    I had the idea of using the HP printers built in ePrint function to print, so I set that up. So now sending at email to [email protected] prints to the HP printer attached to the wireless hotspot.
    Emaling to print works, but ideally, I would like this printer to show up in the Windows Devices and Printers, so that the user can just click print, choose the HP printer, and it will print, (with a delay obviously as its sending an email).
    So I downloaded the HP ePrint Windows Driver, which has to be installed on the main Citrix servers so that the users session can grab the printer and use it, turns out the driver doesnt work on Windows Server 2003. 
    My first attempt at a workaround was Google Cloud Print, which was fairly simple to connect to HP ePrint, but apparently the Google Cloud Print Driver doesnt work on Windows Server 2003 either.
    Is there a version of the HP ePrint Driver out there that works on Windows Server 2003?
    tldr:
    I would like to print to a remote HP printer that is connected to a wifi hotspot from our internal network. I need whatever software I download to be compatible with Server 2003.
    I understand this is over complicated but thanks for any input.

    I believe I understand your issue.  You would like to use a print driver to print to your HP ePrint enabled printer from your apps that are hosted by Citrix server.  While I believe this makes perfect sense, HP does not have a print driver that officially supports MS TS or Citrix that also supports the ePrint Cloud path.  The reason for this is the ePrint windows driver is a "dynamic" print driver (similar to HP UPD dynamic mode) that handles multiple print paths (tcp/ip, wireless direct, cloud, etc) in a single driver instance by dynamically changing the port the print queue is bound to so the port is specific to the delivery path.  For example, if printing to a network printer it will use a MS Standard tcp/ip port.  If printing to the ePrint cloud a custom port is used, etc.  Well, if you have lots of Citrix users trying to print to a single print queue, but to different destinations, the users would be colliding with each other when they print by having the driver trying to change the print queue to different print ports at the same time.
    What you could do is install an ePrint print queue on the citrix server if you can control the access to that queue to just your local branch users.  Also, if you only have on ePrint enabled printer the situation is even better as only one port will be needed by that queue.  You can find the ePrint software at www.hp.com/go/eprintsoftware   You might want to download the version of the driver that supports XP as Windows 2003 is very similar print system.
    NOTE:  this is not a supported environment for this driver.  You would be using it without warrenty or support and no promises are being made here.
    Good luck if you choose this path and please post back the results.  Thanks!

  • Access Denied to report file on Windows Server 2003 Enterprise

    Hi,
    I have a deployment problem for which I am out of ideas. I have an ASP.NET web site deployed on a server running Windows Server 2003 R2, sp2.  It makes extensive use of Crystal Reports, including both displaying them and e-mailing them to specified recipients as PDF files. It all works great.
    Now I need to port the web site to a different server, running Windows Server 2003 Enterprise, sp1. The reports display fine as long as I am not trying to convert it to PDF for e-mailng. When it gets to the following line in my code:
    MemoryStream memStream = (MemoryStream)rptDoc.ExportToStream(ExportFormatType.PortableDocFormat);
    It reports the following error:
    Access denied.Error in File JobDetails {DC64A5D3-9DD7-4E4C-90F5-A08731409B29}.rpt:
    Access to report file denied. Another program may be using it.
    I finally got it to work by granting Modify permission to Everyone for the c:\Windows\Temp folder. Obviously this is not a good practice.  Granting Full Control  to the IUSR_servername account did not solve the problem on Windows Server Enterprise, although it did the trick on R2.
    So the question is, which account needs which permission to the Temp folder to enable the PDF to get written?
    Thanks.
    Dan

    What ever account the app is running under will need read / write permissions on the temp folder. Your working server should be a good place to look to see how the premissions were set there. The same will apply to any other server(?).
    Ludek
    Follow us on Twitter http://twitter.com/SAPCRNetSup
    Got Enhancement ideas? Try the [SAP Idea Place|https://ideas.sap.com/community/products_and_solutions/crystalreports]

  • Connecting iPads to an Enterprise Wireless 802.1x (EAP-TLS) Network Using Windows Server 2003 IAS

    Hi there,
    I am asked to deploy iPads on an 802.1x EAP-TLS WiFi network. The customer has a Windows Server 2003 IAS server providing RADIUS. There also is a Windows based CA infrastructure in place. This solution is in production and is already being used by other wireless devices. Could someone please highlight the configuration steps for the iPad deployment? The customer whishes to automate the initial deployment and the renewal of the certificates. I have a basic understanding of 802.1x, RADIUS, Certificates etc. in a Windows infrastructure but I am new to enterprise deployment of iPads. There is no MDM tool in place by the way...
    I did find a Microsoft article which I think describes what needs to be done: http://blogs.technet.com/b/pki/archive/2012/02/27/ndes-and-ipads.aspx. This article basically states the following steps:
    1. Create a placeholder computer account in Active Directory Domain Services (AD DS)
    2. Configure a Service Principal Name (SPN) for the new computer object.
    3. Enroll a computer certificate passing the FQDN of the placeholder computer object as a Subject Name, using Web Enrollment Pages or Certificates MMC snap-in directly from the computer (Skip step 4 if you are using the Certificates MMC snap-in)
    4. Export the certificate created for the non-domain joined machine and install it.
    5. Associate the newly created certificate to the placeholder AD DS domain computer account manually created through Name Mappings
    The article then elaborates on specific steps needed for the iPad because it treats all certificates as user certificates. Can someone confirm this behavior??
    Regards,
    Jeffrey

    Use VPP.  Select an MDM.  Read the google doc below.
    IT Resources -- ios & OS X -- This is a fantastic web page.  I like the education site over the business site.
    View documentation, video tutorials, and web pages to help IT professionals develop and deploy education solutions.
    http://www.apple.com/education/resources/information-technology.html
       business site is:
       http://www.apple.com/lae/ipad/business/resources/
    Excellent guide. See announcment post -- https://discussions.apple.com/thread/4256735?tstart=0
    https://docs.google.com/document/d/1SMBgyzONxcx6_FswgkW9XYLpA4oCt_2y1uw9ceMZ9F4/ edit?pli=1
    good tips for initial deployment:
    https://discussions.apple.com/message/18942350#18942350
    https://discussions.apple.com/thread/3804209?tstart=0

  • Adding Windows 7 x64 drivers to Windows Server 2003 printserver

    Hello,
    I've recently added a HP Elitebook 8530W running Windows 7 64 bit, to a network containing only 32 bit systems.
    It's all working fine except I cannot get the printer, a HP Laserjet 4345MX, shared via a HP ML350 server running Windows Server 2003 SP2, working on it.
    I have downloaded the appropriate Windows 7 x64 drivers from the HP website (the PCL6 v5.2 package) and tried adding these on the server (through printer properties, sharing, additional drivers, under the x64 box), but it is refusing to accept these drivers (I've tried every .inf in the package).
    If anyone could offer any advice on how to get this setup working that'd be great, thanks
    Marijn

    Hello,
    I've recently added a HP Elitebook 8530W running Windows 7 64 bit, to a network containing only 32 bit systems.
    It's all working fine except I cannot get the printer, a HP Laserjet 4345MX, shared via a HP ML350 server running Windows Server 2003 SP2, working on it.
    I have downloaded the appropriate Windows 7 x64 drivers from the HP website (the PCL6 v5.2 package) and tried adding these on the server (through printer properties, sharing, additional drivers, under the x64 box), but it is refusing to accept these drivers (I've tried every .inf in the package).
    If anyone could offer any advice on how to get this setup working that'd be great, thanks
    Marijn

  • Symantec antivirus Best practice for oracle database on windows server 2003

    Hi all,
    I have an oracle database server on windows server 2003 platform of version 10.2.0.4. what would be best practice of running symantec antivirus on that server as well as database file exclusions from scanning them.
    My server had rebooted unexpectedly for many times. in event log i have id as 6008. what may be cause of it..?

    Normally, you don't run a virus scanner on a database server because your database server isn't vulnerable to viruses. It's behind firewalls, people aren't reading mail on it, people aren't plugging thumb drives into it, etc. If you do decide that you need to run a virus scanner on a database server, at least exclude the Oracle data files from the scan. Oracle gets very unhappy if someone else tries to open its data files (or, worse, if someone opens a data file before it gets the chance to acquire exclusive access).
    Justin

  • Windows Server 2003 R2 Backup with Hyper-V in DPM

    Hello,
    I am trying to backup multiple Windows Server 2003 R2 VMs on Hyper-V (Windows Server 2012 R2) with DPM.
    When I try to this I get the following errors:
    On the Hyper-V Host:
    Source: VSS ID:8229
    A VSS writer has rejected an event with error 0x800423f4, The writer experienced a non-transient error.  If the backup process is retried,
    the error is likely to reoccur.
    . Changes that the writer made to the writer components while handling the event will not be available to the requester. Check the event log for related events from the application hosting the VSS writer.
    Operation:
       PrepareForSnapshot Event
    Context:
       Execution Context: Writer
       Writer Class Id: {66841cd4-6ded-4f4b-8f17-fd23f8ddc3de}
       Writer Name: Microsoft Hyper-V VSS Writer
       Writer Instance ID: {0b5be050-91e2-41a6-9207-414f1291f975}
       Command Line: C:\Windows\system32\vmms.exe
       Process ID: 5312
    Source: Hyper-V-VMMS ID: 18014
    Checkpoint operation for 'VMName' was cancelled. (Virtual machine ID D605FC49-D379-4C60-A730-485C8E9279DC)
    Source: Hyper-V-VMMS ID: 18012
    Checkpoint operation for 'VMName' failed. (Virtual machine ID D605FC49-D379-4C60-A730-485C8E9279DC)
    Source: Hyper-V-VMMS ID: 10150
    Could not create backup checkpoint for virtual machine 'VMName': Element not found. (0x80070490). (Virtual machine ID D605FC49-D379-4C60-A730-485C8E9279DC)
    Source: Hyper-V-Worker ID: 3280
    'VMName' could not initiate a checkpoint operation: Element not found. (0x80070490). (Virtual machine ID D605FC49-D379-4C60-A730-485C8E9279DC)
    Source: Hyper-V-VMMS ID: 16010
    The operation failed.
    The Output of vssadmin list writers on the Hyper-V Host looks like this:
    Writer name: 'Microsoft Hyper-V VSS Writer'
       Writer Id: {66841cd4-6ded-4f4b-8f17-fd23f8ddc3de}
       Writer Instance Id: {0b5be050-91e2-41a6-9207-414f1291f975}
       State: [8] Failed
       Last error: Non-retryable error
    In the Windows Server 2003 R2 VM there are no errors in the eventlog.
    Only the information, that VSS is started and stopped after a while.
    When I do a Backup with ntbackup of in the VM everything runs fine.
    When I create a checkpoint with Hyper-V everything runs fine, too.
    The integration services are up to date and get-vmintegrationservice -vmname VMName shows everything is enabled and OK.
    On the Hyper-V host there are 13 VMs. 3 of them are running Windows Server 2003 R2 and 2 of them are showing this error. It seems to be no general problem with Windows Server 2003 R2 then.
    I tried the backup on a different Hyper-V host with no success.
    How can I narrow down the cause of this error?
    Thanks.
    greets,
    torsten

    Thank you to everyone in this thread!
    After digging through VSS and Hyper-V dead-ends, the solution above worked for me in a W2012 R2 environment.
    I only had this problem trying to back up W2012 R2 Hyper-V VMs stored on a CSV, hosted on a W2012 R2 Host Cluster, backing up from a Host node.  I could back up from within the guests fine.  Both Windows Server Backup and DPM 2012 R2
    gave VSS errors on the cluster hosts. 
    In fact Windows Server Backup complains with 80780189 it won't back up an application with files on a CSV, which is a common cluster configuration.  This is an example of another caveat in a minefield of MS caveats buried in fine print which often negates
    configurations touted by MS Marketing, things which sound great on a sell sheet, but in practice are impractical or just not production-ready because of these restrictions.
    Disabled Backup in Integration Services, performed an offline back up from DPM 2012 R2 (which did briefly affect serving the workloads on the VM), which succeeded, and then re-enabled Backup in Integration Services.  DPM then continued to
    sync successfully after that for a day.  However, this problem returned after a period of heavy DPM backup activity.  So I redistributed backups through various Protection Groups to spread the DPM load over a longer period and this seems to
    have solved this problem.
    In general I had lots of problems installing, configuring, and now operating DPM, so the experience has not been smooth, but most of the problems have now been solved.  I find you have to "baby" this product and not push it too hard,
    otherwise things start breaking.
    Thanks again everyone!
    DPM Error ID 30111  0x800423F4
    DPM-EM Event ID 3106

  • Issues while weblogic 10.3.5 on 64 windows server 2003 R2

    Hi,
    I'm trying to configure weblogic in 64 bits windows server 2003 R2.
    1.First, I installed 64 bit jdk.
    2. Installed weblogic server(64 bit)
    3. insalled ADR 11.1.1.5 with jdk path done in the first step.
    4. Applied patch no : 12611176 (sherman patch)through opatch.
    5. then try to upgradeADF from 'E:\oracle\WlsStandalone\oracle_common\common\bin\wlst.cmd', i'm getting following error :
    wls:/offline> upgradeADF('E:\oracle\WlsStandalone\user_projects\domains\adf_domain')
    Traceback (innermost last):
    File "<console>", line 1, in ?
    NameError: upgradeADF
    wls:/offline>
    6. After this i tried to apply second patch 12556632, this also failure.
    Thanks in advance,
    SAN

    are you following the steps mentioned in the Opatch readme file, it will tell the way to upgrade, and it shows the prerequiestes also

  • Cannot print to PDF Printer in Windows server 2003 x64 (Adobe 9 STD)

    Hi everyone,
    I'm running into a very odd issue. We are using Citrix Presentation Server 4.5 in our environment. Recently, I install the x64 bit version of Citrix on top of Windows Server 2003 x64.
    The problem that we are experience right now is that when user open a WORD or EXCEL document and try to print to PDF. The SAVE AS windows shows up to allow users to save, but nothing happens afterward. In another word, no PDF file is created.
    However, if I ask the user to right click on the file (in windows explorer) and choose Convert to PDF, then the conversion go through.
    Do you know a fix for this?

    You might read the EULA and confirm the issue I have mentioned. I might not be correct in my estimate, but just gave a sounds like opinion. If it is a violation, then removing it is wise. Typically, Acrobat must be installed on each individual machine. There are multiple license options and server options, but you would need to contact Adobe for more information on those areas. Hope you can get them to talk to you in such a case.

  • Not able to see farsi words in email on windows server 2003

    Hi all,
    I am using james mail server 2.3.0 along with jsieve(java implementation for the Sieve mail filtering language )mail content filter on OS windows xp along with jboss for putting the mail on the queue.
    I am sending farsi words in my email they are been seen in email body in windows XP but the same thing on windows server 2003 is appearing as ????. i am using outlook express for sending mails.
    Pls can anybody give me the solution why the farsi words are appearing in ???? format on windows server 2003.
    Thanks,
    Ketan.B.Parekh

    I'm not clear on where JavaMail fits into the picture. You're using OE to
    send the message. Are you using JavaMail to read the message? What
    are you using to display the message? What charset are you using when
    you send the message?
    Mostly likely the problem is with displaying the message. Perhaps Windows
    Server 2003 doesn't understand the charset you're using.

  • Running 10G as a non local system account on Windows Server 2003

    Hi,
    I have an Oracle 10G database running on Windows Server 2003, SP2. I have created the database and it all works fine while the service is running as the default local system account. However, when I change the user that the service runs as to a different account the database starts and opens, and I can log on as SYS using a bequeath connection but I am unable to log on as any other user going through the listener. The listener responds to TNSpings, and all seems to be OK. When I switch it back to the local system user again it all works fine.
    Can anyone offer any advice or help?
    Thanks,
    Rob

    That's probably because the listener is still running as the local system account. Have you tried to change the listener service to run as the same account as the Oracle service?

Maybe you are looking for

  • SOLVED: is usbip usb redirector working for anyone?

    I am looking for USB redirector, and naturally tried usbip package. So far, cannot make it work: #usbipd --daemon # ps -ef | grep usbip root 16722 1 0 22:28 ? 00:00:00 usbipd --daemon # lsusb Bus 004 Device 002: ID 05da:6080 Microtek International, I

  • ORA-12560 and ORA-12504

    I recently installed Oracle XE 11g Windows 7 PRO x64 this are the installation data: Destination Folder: C:\oraclexe\ Oracle Home: C:\oraclexe\app\oracle\product\11.2.0\server\ Oracle Base:C:\oraclexe\ Port for 'Oracle Database Listener': 1521 Port f

  • I have a second hand ipod 2nd genration, its is currently in IOS 4.2.1 i need to update it to IOS 5 or higher but im unsure on how to do this.

    i have a second hand ipod 2nd genration, its is currently in IOS 4.2.1 i need to update it to IOS 5 or higher but im unsure on how to do this.

  • 98% CPU when using dbassist

    I've installed the database on RedHat 7.0 with the compat-glibc for 2.1.3x. The installation is successful but when I try to create a starter database using dbassist, I see that the jre just hangs while using 98-99% of the CPU. I'm running an Intel P

  • Subchains failing to run

    Hi, we've been getting the following error when a specific process chain executes, when it tries to execute a subchain: Previous run BS69CWYRG90785CU64E2QX3ON not yet complete (Status A) Job Cancelled after system exception ERROR_MESSAGE Only from pa