Problem  with importing par file in portal server 6.2

Hi everyone,
I got the following error when trying to import IFRAME provider into portal server 6.2.
Operation failed.
ERROR: provider element has no version attribute
Below is the command I used. I run it as a file - I supply the password at the command line.
/opt/SUNWps/bin/par import verbose overwrite runasdn uid="amAdmin,ou=People,dc=accesscollier,dc=com" password $1 IFRAMEProvider.par dc=accesscollier,dc=com provider=IFRAMEProvider.
This used to work in Portal Server 6.0. I looked through the Portal Server 6.2 Desktop Customization Guide and the Developer guide for portal 6.2 but did not find any reference to version number.
Thanks.
Klara Hribkova
I

Hi Ulf,
here is the command + options. It is in a file, I supply the password on the command line. This used to work fine with PortalServer 6.0.
!/bin/ksh
echo "----------------------------------"
echo "USE: import_providers.sh password "
echo "----------------------------------"
#echo "Importing IFRAMEProvider ..."
#/opt/SUNWps/bin/par import verbose overwrite runasdn uid="amAdmin,ou=People,dc=accesscolier,dc=com" password $1 IFRAMEProvider.par
dc=accesscollier,dc=com provider=IFRAMEProvider
echo "Importing IFRAMECalendarProvider ..."
/opt/SUNWps/bin/par import verbose overwrite runasdn uid="amAdmin,ou=People,dc=accesscollier,dc=com" password $1 IFRAMECalendarProvi
der.par dc=accesscollier,dc=com provider=IFRAMECalenderProvider
echo "Importing IFRAMEMailProvider ..."
/opt/SUNWps/bin/par import verbose overwrite runasdn uid="amAdmin,ou=People,dc=accesscollier, dc=com" password $1 IFRAMEMailProvider
.par dc=accesscollier,dc=com provider=IFRAMEMailProvider
echo "Importing JSPWebAppProvider ..."
/opt/SUNWps/bin/par import verbose overwrite runasdn uid="amAdmin,ou=People,dc=accesscollier, dc=com" password $1 JSPWebAppProvider.
par dc=accesscollier,dc=com provider=JSPWebAppProvider
These are the errors I get:
# ./import_providers1.sh solurute
./import_providers1.sh: !/bin/ksh: not found
USE: import_providers.sh password
Importing IFRAMECalendarProvider ...
AUTHENTICATING
uid=amAdmin,ou=People,dc=accesscollier,dc=com
solurute
AUTHENTICATED - Setting DN - dc=accesscollier,dc=com.
Initializing for operation - dpnode=dc%3Daccesscollier%2Cdc%3Dcom,provider=IFRAMECalenderProvider.
Operation failed.
ERROR: provider element has no version attribute.
Importing IFRAMEMailProvider ...
AUTHENTICATING
uid=amAdmin,ou=People,dc=accesscollier, dc=com
solurute
AUTHENTICATED - Setting DN - dc=accesscollier,dc=com.
Initializing for operation - dpnode=dc%3Daccesscollier%2Cdc%3Dcom,provider=IFRAMEMailProvider.
Operation failed.
ERROR: provider element has no version attribute.
Importing JSPWebAppProvider ...
AUTHENTICATING
uid=amAdmin,ou=People,dc=accesscollier, dc=com
solurute
AUTHENTICATED - Setting DN - dc=accesscollier,dc=com.
Initializing for operation - dpnode=dc%3Daccesscollier%2Cdc%3Dcom,provider=JSPWebAppProvider.
Operation failed.
ERROR: provider element has no version attribute.
This is the build_par.xml file:
<?xml version="1.0"?>
<project name="Provider" default="all" basedir=".">
<property name="par.dir" value="./pars"/>
<property name="iframe.dir" value="iframeprovider"/>
<property name="iframecalendar.dir" value="iframecalendarprovider"/>
<property name="iframemail.dir" value="iframemailprovider"/>
<target name="iframe">
     <jar jarfile="${par.dir}/IFRAMEProvider.par"
          basedir="${iframe.dir}"
          includes="**/*">
          <manifest>
          <attribute name="PS-Version" value="1"/>
               <attribute name="PS-DefaultEntry" value="IFRAMEProvider"/>
               <attribute name="PS-PBFileRoot" value="pbfiles"/>
               <attribute name="PS-StaticRoot" value="static"/>
               <attribute name="PS-DPRoot" value="dp"/>
               <section name="dp/IFRAMEProvider.xml">
                    <attribute name="PS-EntryName" value="IFRAMEProvider"/>
                    <attribute name="PS-Include" value="pbfiles/providerClassBaseDir/k20portal.properties(1),com/hangingvalley/sunportal/util/K20PortalProperties.class(1),com/hangingvalley/sunportal/util/OrgProperties.class(1),pbfiles/templateBaseDir/default/IFRAMEProvider/iframecontent.jsp(1),pbfiles/templateBaseDir/default/IFRAMEProvider/iframedoedit.jsp(1),pbfiles/templateBaseDir/default/IFRAMEProvider/iframeedit.jsp(1)"/>
               </section>
          </manifest>
     </jar>
</target>
<target name="iframecalendar">
     <jar jarfile="${par.dir}/IFRAMECalendarProvider.par"
          basedir="${iframecalendar.dir}"
          includes="**/*">
          <manifest>
               <attribute name="PS-Version" value="1"/>
               <attribute name="PS-DefaultEntry" value="IFRAMECalendarProvider"/>
               <attribute name="PS-PBFileRoot" value="pbfiles"/>
               <attribute name="PS-StaticRoot" value="static"/>
               <attribute name="PS-DPRoot" value="dp"/>
               <section name="dp/IFRAMECalendarProvider.xml">
                    <attribute name="PS-EntryName" value="IFRAMECalendarProvider"/>
                    <attribute name="PS-Include" value="pbfiles/templateBaseDir/default/IFRAMECalendarProvider/iframecontent.jsp(1),pbfiles/templateBaseDir/default/IFRAMECalendarProvider/iframedoedit.jsp(1),pbfiles/templateBaseDir/default/IFRAMECalendarProvider/iframeedit.jsp(1)"/>
               </section>
          </manifest>
     </jar>
</target>
<target name="iframemail">
     <jar jarfile="${par.dir}/IFRAMEMailProvider.par"
          basedir="${iframemail.dir}"
          includes="**/*">
          <manifest>
               <attribute name="PS-Version" value="1"/>
               <attribute name="PS-DefaultEntry" value="IFRAMEMailProvider"/>
               <attribute name="PS-PBFileRoot" value="pbfiles"/>
               <attribute name="PS-StaticRoot" value="static"/>
               <attribute name="PS-DPRoot" value="dp"/>
          <section name="dp/IFRAMEMailProvider.xml">
                    <attribute name="PS-EntryName" value="IFRAMEMailProvider"/>
                    <attribute name="PS-Include" value="pbfiles/templateBaseDir/default/IFRAMEMailProvider/iframecontent.jsp(1),pbfiles/templateBaseDir/default/IFRAMEMailProvider/iframedoedit.jsp(1),pbfiles/templateBaseDir/default/IFRAMEMailProvider/iframeedit.jsp(1)"/>
               </section>
          </manifest>
     </jar>
</target>
<target name="all" depends="iframe,iframecalendar,iframemail"/>
</project>
Thank you very much for your assistance and for your time.
Klara

Similar Messages

  • Tempo problems with imported wav files

    Hey everyone, sorry if there's a quick fix for this in the forums that I couldn't find, but I've been having some tempo problems with imported .wav files.
    Long story short, my system couldn't handle playing all the tracks for a song while recording drums, so I bounced out an mp3 of the song and put it in a new Logic file so my drummer could just play along to that as I recorded him. Unfortunately, the original song is at 167 bpm, but I forgot to change the bpm in the new Logic file with the .mp3 file of the song to 167 bpm, so it was left at the default 120 bpm.
    So, the drums were recorded at the correct 167 bpm, but Logic thinks that those new drum .wav files should be played at 120 bpm, so when I import my drum tracks back into the original file, they do not play correctly at all.
    I could get record it all again, but I wanted to check if there was a way I could salvage what I already have, since my drummer lives about an hour away right now and can't just come over whenever he wants.
    Thanks for the help! I really appreciate it.

    Hi,
    First, do not use MP3 in Logic, the sound quality is less than AIFF, WAV or CAF, and Logic has to decode it for playback, making it a heavier burden on the CPU than an uncoded audiofile, such as AIFF, WAV or CAF.
    Secondly, audio files are independent of Logic's tempo. If you bounce down an audio file in any format (other than Apple Loop), it will play back at the same speed, +regardless of Logics' tempo setting+, either at recording or playback. Logic doesn't 'think' anything. The BPM is only important to MIDI tracks, or to the spacing between audio files. The audio files themselves *are not affected* by the tempo setting. If you import an audio file of tempo 167 into a 120 BPM project, the file will still play at 167, only Logic will indicate the wrong bar positions.
    regards, Erik.

  • Hi, I have problem with importing MOV files from SJCAM 4000. MOV files are in supported formats for Adobe Premiere Elements 11. But if I'm importing MOV file, only audio part is imported, video part is not imported. How can I solve this problem?

    Hi, I have problem with importing MOV files from SJCAM 4000. MOV files are in supported formats for Adobe Premiere Elements 11. But if I'm importing MOV file, only audio part is imported, video part is not imported. How can I solve this problem?

    haben
    From looking at the specifications of your camera (SJCam 4000), we know already what video compression your camera is using. It is H.264.
    A H.264.mov file should be supported by Premiere Elements 11. On what computer operating system is your Premiere Elements 11 running?
    Do you have the latest version of QuickTime installed on your computer? And, are you running QuickTime and Premiere Elements 11 from a
    User Account with administrative privileges? Please go to Premiere Elements 11 Publish+Share/Computer/QuickTime to confirm that you find
    presets there for the QuickTime choice there.
    What are the properties of these H.264.mov files - is it 1080p30 (1920 x 1080p30)  or something else? Do you know if this camera is recording with a variable or
    a constant frame rate?
    Please review and consider and then we will decide what next.
    Thank you.
    ATR

  • Premiere Pro CS5: please help problem with importing a file error output "there was an error decompressing audio or video"

    please help problem with importing a file error output "there was an error decompressing audio or video"

    this is related to what adobe program/version?

  • Problem in importing .par file in sun portal 6.0

    hi every one ..
    i have written a message of the day jspprovider channel using portlet builder 1.0 in sun one studio ..now when i m importing the .par in sun one portal ..it is not giving any error but the new channel is not getting displayed in amconsole ..
    can any one suggest me how to import a channel in portal server 6.0 and what post configuration one has to do to view the channel in sun one portal ..
    thanks
    san

    By the way ...
    How did you run the par command....
    I imported like this...
    par import -o -r "uid=amAdmin,ou=People,o=test.flowsystems.se,o=isp" -p password -d -v SMSPortlet.par global provider=SMSPortlet,channel=SMSPortletChannel
    I forgot the last arguments the first time. And if I remember it right I did not see the portlet in the gui.
    /Peo

  • Problems with importing .dmp file (CLOB)

    dear all
    i am using oracle 10g XE
    I am facing a problem with importing dmp ( one of my table contains clob coloum)
    below mentioned is the error it gives while importing, please guide me as to how to handle this.
    Thanks in advance
    regards
    Uday
    "CREATE TABLE "RTEXT" ("SRNO" NUMBER, "TEXTDET" CLOB) PCTFREE 10 PCTUSED 40"
    " INITRANS 1 MAXTRANS 255 STORAGE(INITIAL 65536 FREELISTS 1 FREELIST GROUPS "
    "1 BUFFER_POOL DEFAULT) TABLESPACE "APEX_1244730274482010" LOGGING NOCOMPRES"
    "S LOB ("TEXTDET") STORE AS (TABLESPACE "APEX_1244730274482010" ENABLE STOR"
    "AGE IN ROW CHUNK 8192 PCTVERSION 10 NOCACHE LOGGING STORAGE(INITIAL 65536 "
    "FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT))"
    IMP-00003: ORACLE error 959 encountered
    ORA-00959: tablespace 'APEX_1244730274482010' does not exist

    You have to use SELECT tablespace_name, status FROM dba_tablespaces; from sql prompt or sql developer.
    Ash
    As Jonathan Lewis mentions:
    A general reminder about "Forum Etiquette / Reward Points": http://forums.oracle.com/forums/ann.jspa?annID=718
    If you never mark your questions as answered people will eventually decide that it's not worth trying to answer you because they will never know whether or not their answer has been of any use, or whether you even bothered to read it.
    It is also important to mark answers that you thought helpful - again it lets other people know that you appreciate their help, but it also acts as a pointer for other people when they are researching the same question, moreover it means that when you mark a bad or wrong answer as helpful someone may be prompted to tell you (and the rest of the forum) what's so bad or wrong about the answer you found helpful.

  • Problems with the par file of Browse Deployment

    Hi,
    I had an error message with the com.sap.portal.support.browse.default in Browse deployment, that this iView is not found.
    Fortunately I had a file with the same name, so I uploaded it, but it was the wrong one (Why do they all have the same file name?). I uploaded the par file of the masthead, so every time i click on the browse deployment link I get the masthead and now I have no chance to download other par files.
    Do I still have the right iView on the Server or in the Portal? If yes, where? Or can anybody send me the right par file?
    e-Mail: Ulli_Arndt(at)gmx.de
    Thanks in advance!
    greetings,
    Ulrike

    Hello Ulrike,
    Most companies use different servers for development and Production. The Browse Deployment Option should be used only with the development server. If you're going to use it with the Production server, there could be problems, as the two servers have a different architecture.
    Once you sign in to the DEVELOPMENT SERVER using your user id, ensure that you have the Systems Administration Role and click on the tab corresponding to the same.
    Then select Support.
    Select Portal Runtime.
    Select Browse Deployment.
    Once you do this, you'll see a filepath on top of the page just below the top level navigation area. Here's where most people commonly make a mistake.
    Ensure that the breadcrumb is EXACTLy as follows:
    ROOT/WEB-INF/deployment/temp
    If this is not the case, clcik on ROOT in the filepath displayed on your screen and navigate along the filepath above so you reach the correct iView.
    You should now see a list of files with the extension .par.bak.
    Upon downloading any of these files, the downloaded .rar file for most of the files with have the same filename. Once you unzip this file once or twice, you'll get a .par.bak file with the same filename as the one you downloaded. Rename the extracted .par.bak file by removing the .bak extension. You'll be left with a .par extension now.
    You can now import this file in NWDS and work on it as required.
    I hope this helps. Let me know if you have anyfurther questions. Screenshots are alsways helpful, especially of the filepath on the top of your screen.
    Regards,
    Farsheed

  • Problem with display of files in remote server

    hi,
    i am trying to display to the files on a remote server using JTree. i am able to display local files and directories using JTree but i don't know how to display remote files. can anyone explain how to do it?
    Thank you,
    npaila

    hi,
    i have exactly the same problem.
    Each node of the tree represents a directory. it can be a local or a remote one.
    The only difference is the definition of the File class; the TreeNode class is the same for both.
    Everything works correctly with local Files and fails with remote files.
    Everything means : directory creation, supression, rename, expand all recursive subdirectories.
    I can expand each node, even the ones associated with remote files, with user actions (mouse click, key typed) but I can't expand any node by programing.
    Each action is efficient on the remote server, but the display doesn't change at all.
    Something strange is that when I create a new JTree with a remote file as the root, expand all its recursive subdirectories and then display the Tree, it has correctly expanded.
    Is it a refresh problem ?
    Please help us, give us a clue...
    Thx for advance
    chocodup

  • Sudden problem with importing tiff files with alpha channel (CS5)

    OK this is driving me nuts. For years I have been importing image files that have an alpha channel  into FCP as.tiff files. I use Photoshop files only when I want to use the layers as they are too cumbersome otherwise). I have recent upgraded Photoshop, etc. to CS5 and now FCP won't import them anymore. I get a message saying: "File error: 1 file(s) recognized, 0 access denied, 1 unknown"
    I am not doing anything different and tiff files created in just the same way in an earlier version of Photoshop import and work just fine. Is this a CS5 bug? Does anyone know of a work around. I want to keep using tiff files as they seem to work best for me with alpha channel work (and I don't see why I need to reinvent the wheel).
    Thanks
    A

    I've had a similar issue recently. Same TIFF files downloaded from the same server, different FCP project, new error. I either see"File error: 1 file(s) recognized, 0 access denied, 1 unknown" or I get the even stranger, "Unrecognized file type."
    I can open them in PS and save them again as TIF, same results. I know these are not CMYK files but even if resave the TIF as RGB, I get the same results, they are not recognized by FCP.
    But if I open them in PS and save them as PNG with alpha, they improt fine.
    I have no idea what's going on.
    bogiesan
    Message was edited by: David Bogie Chq-1

  • Problems with sharing InDesign files on Windows server

    Hi there. We have four designers that are working with InDesign CS5 and InCopy CS5. Three of these designers are working on Macs running OSX 10.8. The other is working on a Windows 7 machine. All of their files are stored on a Windows Server 2008 R2 file server. The problem is that whenever one of them makes updates to some files in a project and they save it, the others are unable to checkout any assignments from within either InDesign or InCopy. When they try to checkout the files to make changes, they get the following error message: "In use by Unknown in Adobe InDesign from document <file name>.indd"
    The strange thing is that their files used to be stored on a Server 2003 file server and they never had any problems. But since we moved them over to this Server 2008 R2 machine I can't help but wonder if it is a problem with the server. In either case, I wanted to ask this question in here to get any opinion on what this could be.
    Thanks in advance.

    Hi Stefano,
    I got similar problems, any solutions for me?
    Thanks...
    Ken

  • Problem with importing RAW files from camera

    LR 1.3 refuses to import raw files from my camera. Only JPEG's are imported. Got a Canon 350D/Rebel XT. Once I copied the raw files to disk (using Camera Window) Import from disk works fine and converts the CR2 to DNG without a problem. The preference "Treat JPEG files next to..." makes no difference. Anybody a clue what's wrong?
    Thanks, Edwin

    Yeah this is a known bug with Canon cameras in general (not just using Lightroom!). If you use the camera to download your images anyway, I believe the trick is to set the camera to mass storage mode and you'll also get the RAWs. Lightroom's import from camera is very buggy though, hence it is a better idea to use a reader, or to manually copy the files to your harddisk first and import from there.

  • Problems with importing .MP4 file and the audio in FCP 6

    Hi all,
    I am pretty new to Final Cut Pro and have just approached my first project.
    I have a Samsung VP-MX20
    http://www.samsung.com/uk/consumer/detail/spec.do?group=cameracamcorder&type=cam corder&subtype=flashcamcorder&model_cd=VP-MX20/XEU&fullspec=F
    *Codecs H.264, AAC.*
    I needed some space on the camera so halfway through a holiday i transfered all the video files from the camera to my Laptop.
    I have imported these files from the hardrive
    Vid rate - 25 fps
    compressor - H.264
    Pixel Aspect - PAL - CCIR 601
    What seems to be the problem is ok when i drag the clip from the viewer to the canvas and apply insert, i get the box that says 'Change Sequence settings to match the clip settings?
    i click yes and when the clip is layed out on the timeline there is a red line above the timeline, when i play the clip i only get bleeps as audio and not the original sound.
    If i drag the playhead i can hear the audio but if i try to play all i hear us bleeps plus if i import an mp3 the red line appears above the timeline and the same applies
    can anyone help me here.
    Thanks
    Elles

    Hi Zak,
    many thanks for your reply, i have contacted Apple and taking your advice and using compressor i have converted the codec H.264 to Apple Pro Res 422 for interlaced material.
    I have imported this file and when i drag once again from the viewer to canvas i get the standard box asking to change the sequence to match the clip.
    I am still getting the red line above the timeline and bleeping as audio.
    any idea?

  • Problems with importing mp4 files into iTunes.

    Hi all,
    Since a few days I am the proud owner of an iPad 2. When I was looking for a solution to sync my video files (no problems with my pictures nor with my music files), I saw that I had to convert them from .avi to .mp4.
    Through this community I learned that there were several free and paid options. Such as handbrake, convertavitomp4.com, etc etc
    In the end I have tried around 4, but when trying to get the files into my library of iTunes it fails. In the beginning I did not receive any error message. It just did not work. I tried through CTRL-O, drag and drop. Nothing seems to be working.
    Does it have something to do with the fact that I have the newest iTunes (10.5) and the latest OS for the iPad?
    Does anyone have The same experience or knows a solution?
    Thank you in advance,

    Hi Swen,
    I am checking out flex player after your recommendation.  However, I have since resolved my problem.  I am running windows 7, 64 bit, and discovered that the problem was windows 7 security settings.  All my itunes data was on a hard drive that I plugged into my new pc running windows 7. Despite allowing me to access the hard drive in the usual way, I discovered (after some help from someone more knowledgeable) that the problem was that all my itunes data was protected and I did not have "full control" rights in the security settings.  Very odd, given that I have only one user account on the pc.  And why it could not tell me what the problem was I don't know.  But what I did was right click the drive and make sure my user account had "full control" rights and now I can drag and drop movies into itunes.  This may not fix your issue but hope you resolve it soon.

  • Problems with the shared files of Windows Server 2003 and Mac

    I have some Mac computers in the domain of my LAN Network, and when I share a folder in Windows Server 2003 sometimes the Mac can not see and sometimes yes, but lasts a long time so that they can view folders. I have installed the protocol Apple Talk on the server and File Server and in the Domain Server.
    The folders when users have no security users or groups are immediately with a connection AFP, but if they have not already created security can be displayed with a connection AFP, but if you can visualize a connection with SMB, but I can not work with Quark 6.0 Pro files.
    What can I do to solve this problem.
    Asalomon

    The newer printers:
    canon irc3100
    canon ir5020-i have working on osx side, not in classic
    Older printers:
    hp laserjet 5m-2 of these
    hp 2200
    hp laserjet 5si-2 of these
    hp laserjet 4100
    These are installed on windows 2003 with mac print services running. I need to know what option i should use in osx when installing these network printers on these macs. When i go to printers folder, i chose windows printing then it prompts for the ppd file. I found it for the ir5020 but not the ir3100. I really need to test the hp laserjets in osx too. Ill post up when i test those. But that one canon (ir3100) is bothering me. They are roughly the same age and the drivers on the site don't seem to work.

  • Problem with import SWF file

    I am trying to import a SWF file that i have exported from indesign CS5, as i want to create a pdf that has interactive page curl and page turn.
    But whenever i reimport the file it is really low resolution.

    I agree with Steve, you really should think is it absolutely necessery to try to place your SWF into PDF... you probably will face some problems if you do that.
    If you really must, you have to understand some basic rules about working with palced SWF (and videos too) in InDesign.
    The pixelated image you see above is not actual SWF. It´s an element called poster. When you place a SWF or video to your layout in InDesign, you may choose a poster for it. It´s kind of placeholder for actual SWF or video and will be shown when actual content is not playing. InDesign uses poster also as an appearance for your SWF/video file while you are working with your layout. InDesign can´t show actual SWF/video content in working area.
    You have few options how to define your poster. The most popular one is to grab it from SWF or video file. You can choose any frame to be used as a poster. Except that poster is not that frame itself, it´s a "screenshot" of that frame. Which means of course a risk that it may be pixelated at some point. Resolution you will define in Export SWF window´s Advanced tab effects to posters too. So be careful with lower resolutions if you want to avoid pixelation.
    Another, and IMO more professional method is to use good quality image as a poster. You can prepare your poster image in any regular image editing software.

Maybe you are looking for

  • Wanting to buy a blackberry for att

    im interested in buying a blackberry for att i have a smartphone now with the new smartphone plan. if i get a blackberry will i have all the functions available or do i need a blackberry specific plan i want bbm and all of the RIM supported functions

  • Clubbing of PR in single PO via MD04 screen

    Hi All We have multiple PReq's in MD04 screen created based on MRP run, many of them are having material which needs to be procured from same vendor, so I would like to know if it is possible to have all these Pres clubbed in single PO through MD04 s

  • Ocrmirror gets added on one node not on another node 11gr2 RAC on AIX 5.3

    Hi, I created another external diskgroup for redundancy and added ocr on to it and got added successfully on node1 but not on another node in a two node cluster,please find the below outputs. node1: mvx20b:/>ocrcheck Status of Oracle Cluster Registry

  • MOV to Apple TV error

    When trying to convert a 1GB MOV file to Apple TV I get an error message "Failed: qtKitErrorCtachall (-50) The MOV file has been successfully cvonverted to other formats. Can this be fixed?

  • I cannot open any attachments in hotmail when using firefox 4 beta

    I cannot open any attachments in hotmail when using firefox, but had no problems with the attachments when using safari. I much prefer using firefox and don't want to have to change. Can anyone help please?