Help creating project specific ALSB Customization file using WLST

I asked this question in August in another forum and was redirected here, but never followed up. I'm hopeful someone has done this...
Is it possible to create an ALSB CUstomization file for a single project using WLST?
If so, does anyone have an example they would be wiling to share. I've been beating my head against the wall for almost 2 days (well, months now...) , and I'm REALLy starting to get a headache from it now....
We're running WLS 9.2 MP2 and ALSB 2.6 RP1
Any help is greatly appreciated,
Brian

Brian, OSB specific questions are best directed in the SOA Suite forum:
SOA Suite
It looks like there is an ALSBConfigurationMBean with a customize method, but I have not worked with it and it does not sound like that will give you precisely what you want:
http://edocs.bea.com/alsb/docs261/javadoc/com/bea/wli/sb/management/configuration/ALSBConfigurationMBean.html#customize(java.util.List)

Similar Messages

  • How to create and edit a .ini file using java

    Hi All...
    Pls help me in creating and editing an .ini file using java...
    thanks in advance
    Regards,
    sathya

    Let's assume the ini file is a mapping type storage (key=value) so lets use Properties object. (works with java 1.4 & up)
    import java.io.File;
    import java.io.FileInputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import java.util.Properties;
    public class Test {
         private static Properties props;
         public static void main(String[] args) throws IOException {
              File file = new File("test.ini");//This is out ini file
              props = new Properties();//Create the properties object
              read(file);//Read the ini file
              //Once we've populated the Properties object. set/add a property using the setProperty() method.
              props.setProperty("testing", "value");
              write(file);//Write to ini file
         public static void read(File file) throws IOException {
              FileInputStream fis = new FileInputStream(file);//Create a FileInputStream
              props.load(fis);//load the ini to the Properties file
              fis.close();//close
         public static void write(File file) throws IOException {
              FileOutputStream fos = new FileOutputStream(file);//Create a FileOutputStream
              props.store(fos, "");//write the Properties object values to our ini file
              fos.close();//close
    }

  • How to create a table in the file using java code.?

    HI,
    I should export the data from the view objects to a word document. I have done that but I should
    display the data in the form of a table.
    Kindly come up with the necessary information on how to create a table in the file using java.
    Thanks,
    Phani

    Hi, Thank you for responding to my query.
    The below are the details of my code.
    DCBindingContainer dcBindings =
    (DCBindingContainer)BindingContext.getCurrent().getCurrentBindingsEntry();
    DCIteratorBinding StudentDetailsContent =
    (DCIteratorBinding)dcBindings.get("StudentView1Iterator");
    OutputStreamWriter w = new OutputStreamWriter(outputStream, "UTF-8");
    Row currentRow =
    StudentDetailsContent.getRowSetIterator().first();
    Object a[]= currentRow.getAttributeValues();
    int i;
    for(i=0 ;i<=a.length;i++){
    w.write(a.toString());
    w.write(" ");
    w.flush();
    I am usning this coding to achieve the task of exporting data to file.
    I need to display this information in the table that is where I need help from you people.
    Thanks,

  • Need tech help creating project with PE11, Windows 7

    I still need help creating a slideshow set to music for DVD playback at my 50th high school reunion. 
    Video Media = 700 still images in .jpg or .tff format.  Pixel sizes range from 200x200 to over 3000x4000.
    I first created this project using PE's presets and original image sizes.  Images added to PE were more blurred than originals & images burned to DVD were even more blurred so I asked for advice.
    Last week several people in the forum tried to help.  I really appreciate everyone's suggestions but would still appreciate further advice. 
    Forum experts said to restart my project with project settings changed to DV 720x480...and to resize my images to 1000x750 pixels.  Then today in a PE11 chat session, I was told something different: use project settings changed to DVD 720p 30 and resize only larger images down to 1280 x 720 (leave smaller images alone). 
    So what project settings and resizing should I use for better image clarity?  How do I change project settings?  By clicking on "new" under "file" >change project settings >DVD 720p 30 or something else?

    Up-rezzing small Still Images, regardless of the program and the Scaling algorithm used, can lead to a diminished quality. As Steve says, pixels are created, where none existed. I try to stay away from up-rezzing, whenever possible, due to that diminished qualtiy.
    If I have to work with very small Images, I often use another workflow, and a different asethetic choice. When faced with the prospect of using small Images, I will create a background of some sort (many options here), and then use that small Image at its original size, "framed" within that background - no Scaling involved, but obviously, that small Image will not fill the screen. The viewer usually has fewer problems with the small Image, than one that is larger, but has started to fall apart, due to the up-rezzing.
    One "trick" that I use is to use that small Image AS the background, but alter it greatly, probably dropping its contrast and upping its brightness, and even adding a Blur to it, then do a PiP (Picture in Picture) of the Image at its original size. I might even create a "picture frame" in Photoshop, to really set that small Image apart from the background. That is but one of dozens of such possible treatments, and one is only limited by their imagination.
    Another possible treatment would be to do a "photo wall" with several of the small Images in say a 3 x 2 matrix of PiP's. Sort of like a Contact Sheet.
    Good luck,
    Hunt

  • Create customization file via WLST

    Hi
    I have followed oracle documentation. The customization file getting created is entirely different from what is getting generated using SB console. The generated custiomization file is
    <?xml version="1.0" encoding="UTF-8"?>
    <cus:Customizations xmlns:cus="http://www.bea.com/wli/config/customizations" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xt="http://www.bea.com/wli/config/xmltypes">
    <cus:customization xsi:type="cus:FindAndReplaceCustomizationType">
    <cus:description>Set the right Work Manager</cus:description>
    <cus:query>
    <xt:envValueTypes>Work Manager</xt:envValueTypes>
    <xt:refsToSearch xsi:type="xt:LocationRefType">
    <xt:type>Project</xt:type>
    <xt:path>Project_Name</xt:path>
    </xt:refsToSearch>
    <xt:includeOnlyModifiedResources>false</xt:includeOnlyModifiedResources>
    <xt:searchString xsi:nil="true"/>
    <xt:isCompleteMatch>false</xt:isCompleteMatch>
    </cus:query>
    <cus:replacement/>
    </cus:customization>
    </cus:Customizations>
    How to create customization file exacly same as the one created from the SB console

    I resolved my problem. The solution is follow (Java language):
    Set<Ref> domainRefs = alsbConfMB.getRefs(businessServiceQuery);
         EnvValueQuery evquery = new EnvValueQuery(null, // search across all
                   // resource types
                   envValueTypesToSearch, domainRefs, // search only in found refs.
                   false, // Search all resources
                   null, // the string we want to replace
                   false // not a complete match of URI.
    Collection<QualifiedEnvValue> founds = alsbConfMB.findEnvValues(evquery);
         List<QualifiedEnvValue> qualifiedEnvValueList = new ArrayList<QualifiedEnvValue>();
         for (QualifiedEnvValue qev : founds) {
              if (qev.getEnvValueType().equals(EnvValueTypes.SERVICE_URI)) {
                   qualifiedEnvValueList.add(qev);
         EnvValueCustomization projectEnvValsCustomization = new EnvValueCustomization("Customizations File for businss services ", qualifiedEnvValueList);
         List<Customization> customizationList = new ArrayList<Customization>();
         customizationList.add(projectEnvValsCustomization);
         OutputStream fileOutputStream = new FileOutputStream("testCustomization.xml");
         Customization.toXML(customizationList, fileOutputStream);
         fileOutputStream.close();

  • Unable to create iPod-playable h.264 files using Compressor

    I've been running some video compression work for iPod, and have been able to do "quick & dirty" exports to iPod via QuickTime Pro (standalone & from within FCP).
    To get more of a handle on the compression parameters than the default "Export to iPod" setting allows, I have had success using 3'rd party tools, and using customized settings in QuickTime Pro (most excellently discussed in Ken Stone's page here: http://www.kenstone.net/fcphomepage/video_to_ipodstone.html)
    So far so good: successfully creating iPod-friendly files that meet the requirements: http://www.apple.com/ipod/specs.html
    What I really want to do, though, is create a saved Compressor setting for setting up batches of iPod conversions, and so I don't have to hand-tweak each export in QT Pro.
    I am running current version of QT and Compressor, but CANNOT create MPEG 4/h.264 files that will load onto an iPod for the life of me.
    Here's how it goes down for some different Compressor settings, with their results:
    1.)
    File format: QT
    File extension: .mov
    Video: 320x240 15 fps MPEG-4 Video (note for those playing along at home that there is **no way** to specify h.264 nor "Baseline Low Complexity" in the Compressor dialog)
    Audio: AAC
    Result: a quick to encode, plain old MPEG4 file with only so-so quality that will load and play on an iPod
    2.)
    File format: QT
    File extension: .mov
    Video: 320x240 15fps h.264 (again: no way to select "Baseline Low Complexity" within Compressor)
    Audio: AAC
    Result: Slower to encode, higher quality and smaller file that will NOT load onto an iPod. Error in iTunes states that the file "cannot be played on this iPod"
    3.)
    File format MPEG4
    Extension: mp4
    Video: 320x240 15fps Basic (0) ISMA profile, Medium VBR. Note that there is no way to specify h.264
    Audio: 44.1/128 kbps
    Results: Same as in #1 above
    What I feel I have it boiled down to is that there is some weirdness in Compressor that doesn't connect to the QuickTime compression settings properly. Where you SHOULD be able to specifiy h.264 and Low complexity settings (as you can when using QT Pro) for an MPEG4 file, you cannot in Compressor. Similarly, when specifying h.264 in Compressor, there is no way to specifiy Baseline Low Complexity.
    Long post- sorry! I have tried many more iterations than are listed here. I'll spare everyone those, as the examples above I think illustrate my predicament.
    Anyone have any thoughts?
    Thanks-
    John

    OK.. first, thanks for the reply. Sort have had given up on finding an answer here and just checked back here yesterday. Lo and behold I do see the iPod setting on a newer machine- and started to look into why exactly it isn't on the main workstation here.
    Turns out that you don't get updates unless the software is registered. Maybe it's just me, but I never bother with product registations (until today I guess).
    So a word up to anyone else who does the same. You won't get FCP automatically updated unless you register.
    I assume after I update everything I should be AOK
    Also- I should have marked your reply as SOLVING my problem- but my first instinct was to say to myself "Of course I'm using current versions- what kind of jamoke does this guy think I am, anyway?" So, feeling very charitable, I marked your reply as merely helpful.
    And now I have to eat my words! Sorry about that. Guess you'll get good karma points somehow. Maybe I'll look into that some more while I'm downloading updates this AM.
    Thanks again!
    -John

  • Need help creating a specific report

    I am trying to create a specific report but to-date can not get it to work the way I want it to. I am trying to create a report that does the following:
    - lists all my groups I have
    - if the group has not registered a meeting in a specific week then highlight that group in Bold (or a specific color)
    I have 2 tables: 1 containing the groups and the other containing the meetings they have registered.
    I have managed to get the list of groups on the page and I have worked out the formula to check if the meeting date is in a specific week but when ever I try to include the meeting date then the groups are listed per meeting and not 1 entry per group.
    Tables - Sample Data
    SGFID     GroupID     Facilitator     MeetingDate     Description
    1     20     38     02/26/2009     First Meeting
    2     10     72     03/19/2009     Second Meeting
    3     20     38     03/12/2009     First Meeting
    4     12     1     03/19/2009     Second Meeting
    5     20     38     03/05/2009     First Meeting
    GroupID     GroupName     Htel          
    10     Group1     123456          
    12     Group2     987654          
    20     Group3     678345
    What I get is the following:
    20     Group3     678345          
    10     Group1     123456
    20     Group3     678345          
    12     Group2     987654          
    20     Group3     678345
    What I want is the following. If I am looking for all meetings in the week where the 19th falls in then:
    10     Group1     123456          
    12     Group2     987654          
    20     Group3     678345
    Edited by: Garth Truter on Mar 31, 2009 1:34 PM

    Hiya,
    OH!  I just noticed that I didn't tell you to suppress to details section in the original post, which is why you might be concerned about the use of groups - My bad!
    So, given that, do try the solution.  There may be another way using arrays, but it's kludgy and far more complicated....
    Try using your "Group" table (I see confusion happening here!) as the master/left table in your join, with the "Meetings" table on the right.
    Groups -
    (Left Outer Join)----> Meetings
    Then create a group on Groups.GroupID (or similar) and follow the steps I posted earlier - it really should work!

  • Edit diameter.xml file using WLST

    Hi,
    I need to automate creating new Peers like RfSimulator and Rocharging Peers for hssclient using WLST Script.
    Please can anyone help me in creating a WLST script(.py) for the Example below.
    <?xml version='1.0' encoding='utf-8'?>
    <diameter xmlns="http://www.bea.com/ns/wlcp/diameter/300" xmlns:sec="http://www.bea.com/ns/weblogic/90/security" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wls="http://www.bea.com/ns/weblogic/90/security/wls">
    <configuration>
    <peer>
    <host>RfSimulator</host>
    <address>localhost</address>
    <port>3900</port>
    <protocol>tcp</protocol>
    <watchdog-enabled>true</watchdog-enabled>
    </peer>
    <route>
    <name>RoCharging</name>
    <realm>bea.com</realm>
    <application-id>4</application-id>
    <action>relay</action>
    <server>ocf</server>
    </route>
    <route>
    </configuration>
    </diameter>

    xml or plist , just the extension differs.(Both are Extended Markup Language).
    If u want to edit it manually - u can use property list editor (which is in XCode )
    or u can open with dashcode , which can be edited easily.
    If ur question was to edit dynamically.
    U can do that with write to file functionality.
    For example u may check this.
    http://www.iphonedevsdk.com/forum/iphone-sdk-development/1613-read-write-create- data-files.html

  • Creating Global Roles in 9.1 using WLST

    Hi,
    Did anyone try creating Global Roles in Weblogic 9.1 ?
    Since in Weblogic 9.1, the Authorizer and Role Mapper providers are XACML based, I am not sure if we can use WLST offline to create global roles.
    Can someone please shed some light on this.
    Thanks -agreddy

    As far as i know you could never create roles via WLST offline, only via WLST online.
    Thanks,
    -satya
    BEA Blog: http://dev2dev.bea.com/blog/sghattu/

  • Help with Replacing text in a file using a vbscript

    I have the following script which I am wanting to
    1. Take the prf file and read it
    2. Edit a line in the  outlook .prf file replacing it with the text I have asked it to replace which is the full name of the user pulled from the currently logged on user
    The problem I am seeing is that when the temp file is being generated it is throwing off the formatting of the file hence the script doesn't work. Can anyone help me please.
    set objSysInfo = CreateObject("ADSystemInfo")
    struser = objSysInfo.Username
    set objUser = GetObject("LDAP://" & strUser)
    strFullName = objUser.Get("displayName")
    Const ForReading=1
    Const ForWriting=2
    Set objFSO = CreateObject("Scripting.FileSystemObject")
    folder = "C:\test"
    'filePath = folder & "file.txt"
    filePath = "c:\test\test2007_3.prf"
    Set myFile = objFSO.OpenTextFile(filePath, ForReading)
    Set myTemp= objFSO.OpenTextFile(filePath & ".tmp", ForWriting, True)
    Do While Not myFile.AtEndofStream
    myLine = myFile.ReadLine
     If InStr(myLine, "MailboxName=%UserName%") Then
      myLine = "&strFullName"
     End If
     myTemp.WriteLine myLine
    Loop
    myFile.Close
    myTemp.Close
    objFSO.DeleteFile(filePath)
    objFSO.MoveFile filePath& ".tmp", filePath
    Christopher

    Sorry Irv,
    Here is the code I have and then after that is the prf file. I think there is an issue with the file structure because if I take a regular text file and add the lines in there myself it replaces the lines, but with the prf file or even the prf file as a
    text file it gives me the invalid argument message
    Const filePath = "c:\test\test2007_3.txt"
     Set objFSO = CreateObject("Scripting.FileSystemObject")
     Set myFile = objFSO.OpenTextFile(filePath)
    fileText = myFile.ReadAll()
    myFile.Close
    fileText=Replace(fileText,"%UserName%","THIS_IS_THS_REPLACEMENT_TEXT")
     Set myTemp= objFSO.OpenTextFile(filePath, 2, True)
     myTemp.Write fileText
     myTemp.Close
    ;Automatically generated PRF file from the Microsoft Office Customization and Installation Wizard
    ; Section 1 - Profile Defaults
    [General]
    Custom=1
    ProfileName=Somthing
    DefaultProfile=Yes
    OverwriteProfile=Yes
    ModifyDefaultProfileIfPresent=false
    DefaultStore=Service1
    ; Section 2 - Services in Profile
    [Service List]
    ServiceX=Microsoft Outlook Client
    ServiceEGS=Exchange Global Section
    Service1=Microsoft Exchange Server
    ServiceEGS=Exchange Global Section
    ; Section 3 - List of internet accounts
    [Internet Account List]
    ; Section 4 - Default values for each service.
    [ServiceX]
    CachedExchangeMode=0x00000002
    CachedExchangeSlowDetect=true
    [ServiceEGS]
    CachedExchangeConfigFlags=0x00000900
    MailboxName=%UserName%
    HomeServer=
    RPCoverHTTPflags=0x0027
    RPCProxyServer=
    RPCProxyPrincipalName=
    RPCProxyAuthScheme=0x0001
    [Service1]
    OverwriteExistingService=No
    UniqueService=Yes
    MailboxName=%UserName%
    HomeServer=
    OfflineAddressBookPath=%USERPROFILE%\local settings\application data\microsoft\outlook\
    OfflineFolderPathAndFilename=%USERPROFILE%\local settings\application data\microsoft\outlook\outlook.ost
    AccountName=Microsoft Exchange Server
    DefaultAccount=TRUE
    ;[ServiceX]
    ;FormDirectoryPage=
    ;-- The URL of Exchange Web Services Form Directory page used to create Web forms.
    ;WebServicesLocation=
    ;-- The URL of Exchange Web Services page used to display unknown forms.
    ;ComposeWithWebServices=
    ;-- Set to true to use Exchange Web Services to compose forms.
    ;PromptWhenUsingWebServices=
    ;-- Set to true to use Exchange Web Services to display unknown forms.
    ;OpenWithWebServices=
    ;-- Set to true to prompt user before opening unknown forms when using Exchange Web Services.
    ; Section 5 - Values for each internet account.
    ; Section 6 - Mapping for profile properties
    [Microsoft Exchange Server]
    ServiceName=MSEMS
    MDBGUID=5494A1C0297F101BA58708002B2A2517
    MailboxName=PT_STRING8,0x6607
    HomeServer=PT_STRING8,0x6608
    OfflineAddressBookPath=PT_STRING8,0x660E
    OfflineFolderPathAndFilename=PT_STRING8,0x6610
    [Exchange Global Section]
    SectionGUID=13dbb0c8aa05101a9bb000aa002fc45a
    MailboxName=PT_STRING8,0x6607
    HomeServer=PT_STRING8,0x6608
    RPCoverHTTPflags=PT_LONG,0x6623
    RPCProxyServer=PT_UNICODE,0x6622
    RPCProxyPrincipalName=PT_UNICODE,0x6625
    RPCProxyAuthScheme=PT_LONG,0x6627
    CachedExchangeConfigFlags=PT_LONG,0x6629
    [Microsoft Mail]
    ServiceName=MSFS
    ServerPath=PT_STRING8,0x6600
    Mailbox=PT_STRING8,0x6601
    Password=PT_STRING8,0x67f0
    RememberPassword=PT_BOOLEAN,0x6606
    ConnectionType=PT_LONG,0x6603
    UseSessionLog=PT_BOOLEAN,0x6604
    SessionLogPath=PT_STRING8,0x6605
    EnableUpload=PT_BOOLEAN,0x6620
    EnableDownload=PT_BOOLEAN,0x6621
    UploadMask=PT_LONG,0x6622
    NetBiosNotification=PT_BOOLEAN,0x6623
    NewMailPollInterval=PT_STRING8,0x6624
    DisplayGalOnly=PT_BOOLEAN,0x6625
    UseHeadersOnLAN=PT_BOOLEAN,0x6630
    UseLocalAdressBookOnLAN=PT_BOOLEAN,0x6631
    UseExternalToHelpDeliverOnLAN=PT_BOOLEAN,0x6632
    UseHeadersOnRAS=PT_BOOLEAN,0x6640
    UseLocalAdressBookOnRAS=PT_BOOLEAN,0x6641
    UseExternalToHelpDeliverOnRAS=PT_BOOLEAN,0x6639
    ConnectOnStartup=PT_BOOLEAN,0x6642
    DisconnectAfterRetrieveHeaders=PT_BOOLEAN,0x6643
    DisconnectAfterRetrieveMail=PT_BOOLEAN,0x6644
    DisconnectOnExit=PT_BOOLEAN,0x6645
    DefaultDialupConnectionName=PT_STRING8,0x6646
    DialupRetryCount=PT_STRING8,0x6648
    DialupRetryDelay=PT_STRING8,0x6649
    [Personal Folders]
    ServiceName=MSPST MS
    Name=PT_STRING8,0x3001
    PathAndFilenameToPersonalFolders=PT_STRING8,0x6700 
    RememberPassword=PT_BOOLEAN,0x6701
    EncryptionType=PT_LONG,0x6702
    Password=PT_STRING8,0x6703
    [Unicode Personal Folders]
    ServiceName=MSUPST MS
    Name=PT_UNICODE,0x3001
    PathAndFilenameToPersonalFolders=PT_STRING8,0x6700 
    RememberPassword=PT_BOOLEAN,0x6701
    EncryptionType=PT_LONG,0x6702
    Password=PT_STRING8,0x6703
    [Outlook Address Book]
    ServiceName=CONTAB
    [LDAP Directory]
    ServiceName=EMABLT
    ServerName=PT_STRING8,0x6600
    UserName=PT_STRING8,0x6602
    UseSSL=PT_BOOLEAN,0x6613
    UseSPA=PT_BOOLEAN,0x6615
    EnableBrowsing=PT_BOOLEAN,0x6622
    DisplayName=PT_STRING8,0x3001
    ConnectionPort=PT_STRING8,0x6601
    SearchTimeout=PT_STRING8,0x6607
    MaxEntriesReturned=PT_STRING8,0x6608
    SearchBase=PT_STRING8,0x6603
    CheckNames=PT_STRING8,0x6624
    DefaultSearch=PT_LONG,0x6623
    [Microsoft Outlook Client]
    SectionGUID=0a0d020000000000c000000000000046
    FormDirectoryPage=PT_STRING8,0x0270
    WebServicesLocation=PT_STRING8,0x0271
    ComposeWithWebServices=PT_BOOLEAN,0x0272
    PromptWhenUsingWebServices=PT_BOOLEAN,0x0273
    OpenWithWebServices=PT_BOOLEAN,0x0274
    CachedExchangeMode=PT_LONG,0x041f
    CachedExchangeSlowDetect=PT_BOOLEAN,0x0420
    [Personal Address Book]
    ServiceName=MSPST AB
    NameOfPAB=PT_STRING8,0x001e3001
    PathAndFilename=PT_STRING8,0x001e6600
    ShowNamesBy=PT_LONG,0x00036601
    ; Section 7 - Mapping for internet account properties.  DO NOT MODIFY.
    [I_Mail]
    AccountType=POP3
    ;--- POP3 Account Settings ---
    AccountName=PT_UNICODE,0x0002
    DisplayName=PT_UNICODE,0x000B
    EmailAddress=PT_UNICODE,0x000C
    ;--- POP3 Account Settings ---
    POP3Server=PT_UNICODE,0x0100
    POP3UserName=PT_UNICODE,0x0101
    POP3UseSPA=PT_LONG,0x0108
    Organization=PT_UNICODE,0x0107
    ReplyEmailAddress=PT_UNICODE,0x0103
    POP3Port=PT_LONG,0x0104
    POP3UseSSL=PT_LONG,0x0105
    ; --- SMTP Account Settings ---
    SMTPServer=PT_UNICODE,0x0200
    SMTPUseAuth=PT_LONG,0x0203
    SMTPAuthMethod=PT_LONG,0x0208
    SMTPUserName=PT_UNICODE,0x0204
    SMTPUseSPA=PT_LONG,0x0207
    ConnectionType=PT_LONG,0x000F
    ConnectionOID=PT_UNICODE,0x0010
    SMTPPort=PT_LONG,0x0201
    SMTPSecureConnection=PT_LONG,0x020A
    ServerTimeOut=PT_LONG,0x0209
    LeaveOnServer=PT_LONG,0x1000
    [IMAP_I_Mail]
    AccountType=IMAP
    ;--- IMAP Account Settings ---
    AccountName=PT_UNICODE,0x0002
    DisplayName=PT_UNICODE,0x000B
    EmailAddress=PT_UNICODE,0x000C
    ;--- IMAP Account Settings ---
    IMAPServer=PT_UNICODE,0x0100
    IMAPUserName=PT_UNICODE,0x0101
    IMAPUseSPA=PT_LONG,0x0108
    Organization=PT_UNICODE,0x0107
    ReplyEmailAddress=PT_UNICODE,0x0103
    IMAPPort=PT_LONG,0x0104
    IMAPUseSSL=PT_LONG,0x0105
    ; --- SMTP Account Settings ---
    SMTPServer=PT_UNICODE,0x0200
    SMTPUseAuth=PT_LONG,0x0203
    SMTPAuthMethod=PT_LONG,0x0208
    SMTPUserName=PT_UNICODE,0x0204
    SMTPUseSPA=PT_LONG,0x0207
    ConnectionType=PT_LONG,0x000F
    ConnectionOID=PT_UNICODE,0x0010
    SMTPPort=PT_LONG,0x0201
    SMTPSecureConnection=PT_LONG,0x020A
    ServerTimeOut=PT_LONG,0x0209
    CheckNewImap=PT_LONG,0x1100
    RootFolder=PT_UNICODE,0x1101
    [INET_HTTP]
    AccountType=HOTMAIL
    Account=PT_UNICODE,0x0002
    HttpServer=PT_UNICODE,0x0100
    UserName=PT_UNICODE,0x0101
    Organization=PT_UNICODE,0x0107
    UseSPA=PT_LONG,0x0108
    TimeOut=PT_LONG,0x0209
    Reply=PT_UNICODE,0x0103
    EmailAddress=PT_UNICODE,0x000C
    FullName=PT_UNICODE,0x000B
    Connection Type=PT_LONG,0x000F
    ConnectOID=PT_UNICODE,0x0010
    Christopher

  • Problem Creating Project (Flash Builder 4) which uses LiveCycle DS

    I have a web app which uses LiveCycle DS 2.6.1, however, when I try to create a new flex project I am getting this error:
    Only LiveCycle Data Services 2.6 and higher are supported.
    Here are the steps in Flash Builder 4
    1. File -> New -> Flex Project
    2. Set project name
    3. Point folder to existing source code
    4. Change "Application server type" to "J2EE"
    5. Check the "Use remote object acces service"
    6. Select "LiveCycle Data Services ES" radio button
    7. Click next
    8. Un-check "Use default location for local LiveCycle Data Services server
    9. Set "Root Folder" to "C:\tomcat\webapps\myapp"
       -- in myapp, I have WEB-INF\flex of course
    10. Set root URL and context root
    11. Click "Validate Configuration"
    This gives me the error: "Only LiveCycle Data Services 2.6 and higher are supported."
    Any ideas?  How is Flash Builder determining the version of LiveCycle?

    Hi Jeremy,
    I tried the steps you mentioned and cannot reproduce the problem. You mentioned you are pointing your project location to existing source code. Was there a previous FB project at that location? Was that project using an older version of LCDS before? If you create a new project and point it to a new emoty project location folder (or use default workspace location), do you still see the problem? Any more information you can give me to help reproduce the problem would help.
    thanks!
    -george

  • Help! Lost all Captured Video Files Using FCE 3.5 and Lacie 1TB Drive

    Hi all...
    I was wondering if anyone here could advise me on a most dissapointing occurence...
    A few weeks ago, I started learning Final Cut Express 3.5. I began by setting my scratch disk to my new Lacie 1TB drive and loading about 5 tapes to the drive via the capture function in FCE... all went well. I then spent the next couple of days organizing all the clips and subclips into bins that I made based on the kind of clips I had shot (my first doc attempt on a local photographer).
    Editing a trailer of sorts to practice in FCE, I slowly but surely came to understand the power and functionality of FCE... things were going well. Along with the clips, I also added folders on the hard drive with still photographs, title cards made in photoshop and sound clips that I had made of traffic noises with a mp3 recorder (all sound files were converted to aiff files in quicktime pro). All these files from the hard drive were then imported into FCE and put into their own bins in the browser to keep them seperate from everything else.
    Late last night, while opening FCE for another session, the software reported that all of my video files were "offline" and "did I want to reconnect them". I'd had this warning before, but only when my Lacie drive hadn't been turned on while starting up FCE... this time it was on and I was still getting the reconnect warning.
    Now I find that ALL of my video files are gone!! The 200 GB of space they took up on the Lacie drive has been regained... either deleted by FCE or by the drive itself... I don't know which. The weird thing is, that the folders containing the sound, and still photos that i put together are still fine, both on the Lacie drive AND in FCE. You'd think if it was a faulty drive that all files would be deleted, or if it was FCE going beserk, that it would kill all bins, not just the video files...
    This issue really is difficult because I just don't know which item is at fault and I'm reluctant to try downloading all my data again because I don't know piece of hardware is killing my files... My FCE is not a pirated copy... am using a mac book pro 15" 2 years old w/OS 10.4.11.
    Any help or advise would be greatly appreciated!!!
    Thanks very much
    Take care
    Mark

    Problem solved - I had deleted all the necessary preference files. I did not reinstall Quicktime, thanks for the suggestions, though. I called Apple Care. A very helpful person on the other end of the phone directed me to trash the preferences (again). No luck. He asked me to create a new user, which I had not done, the problem was still there. The fix was a reinstall of FCE HD. All's good now. Thanks, Apple Care!
    Darth

  • How to create customer specific BEx3.5 workbook using BEx7.00??

    Dear guys,
    we are faced with the following situation:
    Customer uses MS Office2003 and BI-AddOn7.x (Patch 3). We have to provide him workbooks but we use Office 2010 and BI-AddOn7.x (Patch 3). If we now provide the workbook our customer cannot open the workbook.
    Trying to save the workbook locally as XLS-file works but to open it on customer side fails.
    Although the general workbook setting "use XLS format" was activated there seems to be a check what Office-version was used to create the workbook.
    Is there any trick?
    Regards,
    Peter

    Hi Frederic
    yes indeed I tried this option. But w/o any effect. We committed that creation of workbook would better be done in his own environment saving time.
    Thanks for your help.
    Regards,
    Peter

  • Help! No Audio on .MOV files using Yosemite

    I just purchased the new Retina display iMac with Yosemite installed and I noticed that the audio will not play on any of my .MOV video files. The audio seems to work with my other video files such as .MP4 and .3G2. Can anyone help me resolve this issue?

    I just purchased the new Retina display iMac with Yosemite installed and I noticed that the audio will not play on any of my .MOV video files. The audio seems to work with my other video files such as .MP4 and .3G2. Can anyone help me resolve this issue?
    There are two potential problem areas with many sub-possibilities here and you will have to some work on your own to determine which issue is at fault.
    1) The MOV file container is generic and may contain audio and/or video data compressed in a format no longer supported by the media player you are using or the media player may not be programmed to expect an otherwise compatible data format to now be used in the MOV file container. In this case, you need to determine what codecs were used to create the data format that is not playing or is not supported. This can normally be done by opening the file in a player and checking the Inspector, Info, Properties, or similar window or use a dedicated media utility to determine this information. Once you know the format you can report back here with the information. You will also need to confirm in which media player you are attempting to play the MOV file. It will then be possible to tell you if the file should be compatible with this player and/or how to fix the issue.
    2) The file may have a "security" issue. That is, Yosemite may include a security update that takes exception to something about the file—i.e., its container, headers, or the method by which the file was transferred to your system or some application used along the way. This problem is more difficult to solve. In some cases, you might be able to simply change the extension or copy the data to a new file container one way or another. In other cases, you might have to wait for Apple to fix the problem with a follow-up update or use an alternative player that ignores the supposed "security" issue.

  • Help on Trasnfering .wsdl/xml format files using FTP Adapter

    Hi,
    I am new to Oracle BPEL and JDeveloper....
    I created some processes to transfer .txt files from one location to another location using FTP Adapter..
    Know I have some files on .wsdl/xml format... using bpel process can we transfer these files from one location to another location using FTP Adapter (Is it possible for .wsdl/xml files)
    can any one help me on this plz
    Thanks
    Venkat

    Thanks Guys .. I am able to transfer .WSDL files also
    Thanks
    venkat

Maybe you are looking for