Need information on SunMC client APIs

Hello everybody,
I am looking for some information on the client APIs shipped with SunMC.
Does anybody know if anything got changed in this API package between SunMC 3.6 and SunMC 4.0.
If there are changes, can you point me to some documentation which will explain the differences.
Thanks.

user445872 wrote:
Hi,
I need some information on the <af:query> component in JDev 11g.
When using ADF 11g's new component, ADF Query (af:query) whether the default "All Queryable Attributes" or on other newly defined View Criterias:
1     What are the disadvantages of this component, given that the result-set - without filtering - is large (between 1350 and 1700 rows, approximately).
2     Does it fetch all rows from the database, then performs filtering upon user's entered search criteria – i.e., hitting the "search" button? You could tune your VO not to exeute the query by default (i.e., before applying a search criteria)
check this blog for sample: http://andrejusb-samples.blogspot.com/2009/08/jdevadf-sample-oracle-adf-tuning.html
As an other option, you could have a default view criteria applied and executed to filter to result set if it is applicable for your usecase.
3     Is there a way to add client-side validation on the search criteria attributes?I'm not sure about this though.
4     In general: What is the best practice to implement a Search Form in ADF 11g
In addition check this sample as well. It might be of help: http://andrejusb-samples.blogspot.com/2009/09/jdevadf-sample-programmatical-reset-for.html
regards,
~K

Similar Messages

  • Help!! I need information about Siemens' PIM API

    Hi everybody,
    I am looking for any information about Siemens API to allow PIM access from a midlet. I did not manage to find specifications about that API on the web...
    Are specifications free ? Is there an environment to develop J2ME applications using Siemens PIM API ? Has anybody developed this type of application on this forum ?
    Thank you very much,
    Dan Ouaki

    I have heard many times about Siemens' PIM API, J2ME compatible, I have read a couple of articles about it (french article www.01net.com/article/181502.html for instance)
    But I have never seen anything about it on Siemens developer portal (Java Wireless, Game API, JSR120, JSR135 are the only non-JTWI supported technologies).
    Is Siemens PIM API a hoax ?

  • Need information about WebLogic Server API

    Hi All,
    Can anyone please tell me what API does Oracle Weblogic Server call. I want to ask by calling which API I can get information about the state of a weblogic server and which jar contains those APIs.
    Thanks in Advance!!

    Hi Roshni,
    For List of MBean's You can follow the below Oracle link
    http://docs.oracle.com/cd/E12839_01/apirefs.1111/e13951/core/index.html
    can you pls tell me how can I retrieve of a weblogic server through a java code,
    You can follow the below link,it will be helpful
    http://middlewaremagic.com/weblogic/?p=7505
    Regards
    Fabian

  • Need information about OCR Java API

    Hi,
    I am looking for Java API to read OCR. Can anyone have idea about it please tell me. It will be very useful.
    Thanks in advance.
    Thanks & Regards
    Veeraraghavan P

    Since you claim you already google, I can possibly interest you in another web page: [How To Ask Questions The Smart Way|http://www.catb.org/~esr/faqs/smart-questions.html]

  • What is needed on non-weblogic client to make soap request

    Hi, I am trying to make a soap request from a client that is not weblogic to a
    weblogic6.1 server. I was under the impression that all I needed was the client.jar
    created by wsgen. But when I try to access the service through the client I get
    the below exception. It appears to be trying to access a weblogic class that is
    not contained in the client.jar. Does this mean I also need to include the weblogic.jar
    on the client(I'm hoping not to). Thanks
    java.lang.NoClassDefFoundError: weblogic/net/http/HttpsURLConnection
         at weblogic.soap.http.SoapContext.lookup(SoapContext.java:87)
         at javax.naming.InitialContext.lookup(InitialContext.java:350)
         at index_1._jspService(index_1.java:68)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java)
         at org.apache.tomcat.facade.ServletHandler.doService(ServletHandler.java:574)
         at org.apache.tomcat.core.Handler.invoke(Handler.java:322)
         at org.apache.tomcat.core.Handler.service(Handler.java:235)
         at org.apache.tomcat.facade.ServletHandler.service(ServletHandler.java:485)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:917)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:833)
         at org.apache.tomcat.modules.server.Http10Interceptor.processConnection(Http10Interceptor.java:176)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:494)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:516)
         at java.lang.Thread.run(Thread.java:484)

    Hi Jane,
    Looks like you have run smack dab into one of the first "myths" about web services
    - "SOAP client software is not vendor- dependent" :-) This is in fact, exactly
    the opposite! And it's not just WebLogic's SOAP client API that has this "vendor-dependent"
    code. Apache SOAP, Apache AXIS, Systinet WASP, GLUE, etc. exhibit the same behavior.
    The difference is that WebLogic's client.jar, is not really a "standalone, SOAP
    client package". It's a "web service-specific" client package.
    JAX-RPC (and the other APIs in the Java Web Services Developer's Pack) is attempting
    to reduce a fair amount of this "vendor-dependency", but there will always be
    some :-) WLS 6.1 doesn't use JAX-RPC, so...
    Anyway, how many "vendor classes" you need, depends on what you are attempting
    to do in the client. If you are just consuming a web service that uses "SOAP encoding",
    then you'll need less. If you are consuming a web service that uses "literal encoding",
    you'll need more. An easy (albeit time consuming) way to figure out which classes
    you need from the weblogic.jar file, to use WebLogic's Web Service client package
    inside Tomcat, is to use the "-verbose:class" option, on the Java command used
    to start Tomcat. This will produce a lot of output, so I suggest you capture it
    to a log, instead of sending it to stdout :-) But, as I said, this is a very,
    very, very time consuming way to determine all the classes you need from the weblogic.jar
    file. Trust me, I've done this before and it took me about 3 hours to find every
    class that's needed! It's simpler just to include the weblogic.jar file in the
    CLASSPATH you start Tomcat with :-)
    Another option is to just use the Apache SOAP package to create the web service
    client. This works wonderfully, if you don't want to use WSDL (Apache SOAP doesn't
    support WSDL). If you want to use WSDL, go with the Apache AXIS package. It has
    an implementation of JAX-RPC, and is pretty close to the Web Services implementation
    in WLS 7.0 (which I'm assuming you'll eventually upgrade to anyway, right?).
    Regards,
    Mike Wooten
    "Jane" <[email protected]> wrote:
    >
    Hi, I am trying to make a soap request from a client that is not weblogic
    to a
    weblogic6.1 server. I was under the impression that all I needed was
    the client.jar
    created by wsgen. But when I try to access the service through the client
    I get
    the below exception. It appears to be trying to access a weblogic class
    that is
    not contained in the client.jar. Does this mean I also need to include
    the weblogic.jar
    on the client(I'm hoping not to). Thanks
    java.lang.NoClassDefFoundError: weblogic/net/http/HttpsURLConnection
         at weblogic.soap.http.SoapContext.lookup(SoapContext.java:87)
         at javax.naming.InitialContext.lookup(InitialContext.java:350)
         at index_1._jspService(index_1.java:68)
         at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java)
         at org.apache.tomcat.facade.ServletHandler.doService(ServletHandler.java:574)
         at org.apache.tomcat.core.Handler.invoke(Handler.java:322)
         at org.apache.tomcat.core.Handler.service(Handler.java:235)
         at org.apache.tomcat.facade.ServletHandler.service(ServletHandler.java:485)
         at org.apache.tomcat.core.ContextManager.internalService(ContextManager.java:917)
         at org.apache.tomcat.core.ContextManager.service(ContextManager.java:833)
         at org.apache.tomcat.modules.server.Http10Interceptor.processConnection(Http10Interceptor.java:176)
         at org.apache.tomcat.util.net.TcpWorkerThread.runIt(PoolTcpEndpoint.java:494)
         at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:516)
         at java.lang.Thread.run(Thread.java:484)

  • Logging query with information about ip client machine address

    Halo,
    One of our most important requirements is logging user query (physical to database and logical) with following informations:
    - USER
    - SQL QUERY TEXT (logical/physical)
    - DATE and TIME executing query
    - IP ADDRESS client machine (or name of client machine) (this is very important information)
    We have following configuration:
    - BI Server with Presentation Servicess on one machine (AIX)
    - Web server on second machine (BEA Weblogic 9)
    I've tested [USAGE_TRACKING] mechanism but thera are three problems with it:
    1. in S_NQ_ACCT in field NODE_ID is always written the same information: name of Web Server - WebLogic
    2. in S_NQ_ACCT are storages only logical queries.
    3. Length of field QUERY_TEXT is 1024. I'm sure that in many cases it'll be to short.
    I've tested USER_LOG too (that logs to NQQuery.log file) but there are also some problems:
    1. there is no information about ip client machine but is information about physical and logical queries and other necessary informations
    2. oracle recommends turn off this mechanism on production system.
    I've tested PRESENTATION SERVICESS log (it is configured at logconfig.xml file)
    1. In file is information about ip client machine
    2. In file are written only logical queries (this is big problem we also need physical queries)
    Do you have some idea how to resolve my problem?
    Regards

    hi, you can use the sys_context function, like this:
    select sys_context('userenv','current_user'),
         sys_context('userenv','os_user'),
         sys_context('userenv','host'),
         sys_context('userenv','ip_address'),
         sys_context('userenv','instance'),
         sys_context('userenv','sessionid'),
         sys_context('userenv','terminal')
    from dual;
    Is this what you 're looking for?

  • Need information about retail project

    hi all
    tommorow i had a interview with my client.
    i need information about retail  project.
    like terms and business process overview .
    documentaiton can be sent to:   [email protected]
    points will awarded for sure.
    kiran

    Hi Rama
    Retailing consists of the sale of goods or merchandise, from a fixed location such as a department store or kiosk, in small or individual lots for direct consumption by the purchaser.[1] Retailing may include subordinated services, such as delivery. Purchasers may be individuals or businesses. In commerce, a retailer buys goods or products in large quantities from manufacturers or importers, either directly or through a wholesaler, and then sells smaller quantities to the end-user. Retail establishments are often called shops or stores. Retailers are at the end of the supply chain. Manufacturing marketers see the process of retailing as a necessary part of their overall distribution strategy.
    Shops may be on residential streets, shopping streets with few or no houses, or in a shopping center or mall, but are mostly found in the central business district. Shopping streets may be for pedestrians only. Sometimes a shopping street has a partial or full roof to protect customers from precipitation. Retailers often provided boardwalks in front of their stores to protect customers from the mud. Online retailing, also known as e-commerce is the latest form of non-shop retailing (cf. mail order).
    Shopping generally refers to the act of buying products. Sometimes this is done to obtain necessities such as food and clothing; sometimes it is done as a recreational activity. Recreational shopping often involves window shopping (just looking, not buying) and browsing and does not always result in a purchase.
    Most retailers have employees learn facing, a hyperreal tool used to create the look of a perfectly-stocked store even when it is not.
    Contents [hide]
    1 Retail pricing
    2 Retail Industry
    3 Etymology
    4 Retail types
    5 See also
    6 Notes
    7 References
    [edit] Retail pricing
    The pricing technique used by most retailers is cost-plus pricing. This involves adding a markup amount (or percentage) to the retailers cost. Another common technique is suggested retail pricing. This simply involves charging the amount suggested by the manufacturer and usually printed on the product bize the manufacturer.
    In Western countries, retail prices are often so-called psychological prices or odd prices: a little less than a round number, e.g. $6.95. In Chinese societies, prices are generally either a round number or sometimes a lucky number. This creates price points.
    Often prices are fixed and displayed on signs or labels. Alternatively, there can be price discrimination for a variety of reasons, where the retailer charges higher prices to some customers and lower prices to others. For example, a customer may have to pay more if the seller determines that he or she is willing to. The retailer may conclude this due to the customer's wealth, carelessness, lack of knowledge, or eagerness to buy. Another example is the practice of discounting for youths or students. Price discrimination can lead to a bargaining situation often called haggling, in which the parties negotiate about the price. Economists see this as determining how the transaction's total surplus will be divided into consumer and producer surplus. Neither party has a clear advantage, because of the threat of no sale, in which case the surplus vanishes for both.
    Retailers who are overstocked, or need to raise cash to renew stocks may resort to "Sales", where prices are "marked down", often by advertised percentages - "50% off" for example."Sales" are often held at fixed times of the year, for example January sales, or end-of-season sales, or Blue Cross Sale
    [edit] Retail Industry
    Retail Industry has brought in phenomenal changes in the whole process of production, distribution and consumption of Consumer Goods all over the world. In the present world most of the developed economies are using the Retail Industry as their vital growth instrument. At present, among all the industries of U.S.A the Retail Industry holds the second place in terms of Employment Generation. In fact, the strength of the Retail Industry lies in its ability to generate large volume of employment.
    Not only U.S but also the other developed countries like U.K, Canada, France, Germany are experiencing tremendous growth in their Retail Sectors. This boom in the Global Retail Industry was in many ways accelerated by the Liberalization of Retail Sector.
    Observing this global upward trend of Retail Industry, now the developing countries like India are also planning to tap the enormous potential of the retail sector. Wal-Mart,the world's largest Retailer has been invited to India. Other popular Brands like Pantaloons, Big Bazar, Archies are rapidly increasing their market share in the retail sector. According to a survey, within 5 years, the Indian Retail Industry is expected to generate 10 to 15 million jobs by direct and indirect effects. This huge employment generation can be possible because of the fact that being dependent on the the Retail Sector shares a lot of Forward and Backward Linkages.
    Emergence of a strong Retail Sector can contribute immensely to the economic development of any country. With a dominant retail sector, the farmers and other suppliers can sell their produce directly to the major retail companies and can ensure stable profit. On the other hand, to ensure steady supply of goods, the Retail Companies can inject cash into the production system. This whole process can result into a more efficient production and distribution system for the economy as a whole.
    [edit] Etymology
    Retail comes from the French word retaillier which refers to "cutting off, clip and divide" in terms of tailoring (1365). It first was recorded as a noun with the meaning of a "sale in small quantities" in 1433 (French). Its literal meaning for retail was to "cut off, shred, paring". Like the French, the word retail in both Dutch and German (detailhandel and Einzelhandel respectively) also refer to sale of small quantities or items.[citation needed]
    [edit] Retail types
    According to Jim there are three major types of retailing. The first is the market, a physical location where buyers and sellers converge. Usually this is done in town squares, sidewalks or designated streets and may involve the construction of temporary structures (market stalls). The second form is shop or store trading. Some shops use counter-service, where goods are out of reach of buyers, and must be obtained from the seller. This type of retail is common for small expensive items (e.g. jewelry) and controlled items like medicine and liquor. Self-service, where goods may be handled and examined prior to purchase, has become more common since the Twentieth Century. A third form of retail is virtual retail, where products are ordered via mail, telephone or online without having been examined physically but instead in a catalog, on television or on a website. Sometimes this kind of retailing replicates existing retail types such as online shops or virtual marketplaces such as futurebazaar.com or Amazon.[2].
    Buildings for retail have changed considerably over time. Market halls were constructed in the Middle Ages, which were essentially just covered marketplaces. The first shops in the modern sense used to deal with just one type of article, and usually adjoined the producer (baker, tailor, cobbler). In the nineteenth century, in France, arcades were invented, which were a street of several different shops, roofed over. counters, each dealing with a different kind of article was invented; it was called a department store. One of the novelties of the department store was the introduction of fixed prices, making haggling unnecessary, and browsing more enjoyable. This is commonly considered the birth of consumerism [3]. In cities, these were multi-story buildings which pioneered the escalator.
    In the 1920s the first supermarket opened in the United States, heralding in a new era of retail: self-service. Around the same time the first shopping mall was constructed [4] which incorporated elements from both the arcade and the department store. A mall consists of several department stores linked by arcades (many of whose shops are owned by the same firm under different names). The design was perfected by the Austrian architecht Victor Gruen[5]. All the stores rent their space from the mall owner. By mid-century, most of these were being developed as single enclosed, climate-controlled, projects in suburban areas. The mall has had a considerable impact on the retail structure and urban development in the United States. [6]
    In addition to the enclosed malls, there are also strip malls which are 'outside' malls (in Britain they are called retail parks. These are often comprised of one or more big box stores or superstores.
    Non-traditional exterior of a SuperTarget, JacksonvilleLocal shops can be known as brick and mortar stores in the United States. Many shops are part of a chain: a number of similar shops with the same name selling the same products in different locations. The shops may be owned by one company, or there may be a franchising company that has franchising agreements with the shop owners (see also restaurant chain).
    Some shops sell second-hand goods. Often the public can also sell goods to such shops, sometimes called 'pawn' shops. In other cases, especially in the case of a nonprofit shop, the public donates goods to the shop to be sold (see also thrift store). In give-away shops goods can be taken for free.
    There are also 'consignment' shops, which is where a person can place an item in a store, and if it sells the person gives the shop owner a percentage of the sale price. The advantage of selling an item this way is that the established shop give the item exposure to more potential buyers.
    The term retailer is also applied where a service provider services the needs of a large number of individuals, such as with telephone or electric power.
    IS Retail was original develop to meet specific needs of Retail industry where standard SD/MM cannot.
    - Significant functionality difference are:
    - Store specific features are built into IS Retail where as it is not in
    standard SD/MM.
    - Mass processing of pricing (some of the retail features were
    included as standard SAP as of 4.6)
    - Assortment handling is not in standard SAP
    There are other differences in inventory costing/valuation etc.
    Retail valuation only available in SAP Retail.
    What is known in the trade as the "retail inventory method" or the "retail method" involves valuating stocks at retail, often aggregated at merchandise category or departmental level.
    Both the cost method and the retail method can be used in SAP Retail.
    Actually IS-Retail is a combination of MM and SD plus other funtionalities speacially developed for the retail industry such as:
    Promotions
    Pricing
    Assortments
    Clasification
    Merchandise category
    Seasons
    Is important to mention that all the funtionality of MM and SD is avialable in SAP IS-Retail with some diferences in some transactions:
    Material master data (article in retail) has some diferences.
    Vendor master data.
    Site master data.
    Reward if useful to u

  • Need Information About Java Platform Overview For Manager (WJTB-310)

    Hi, My name is Jeffry. I need information about Java Platform Overview For Manager (WJTB-310).
    I need Information about table of contents, how long it takes to study that training (approximately), how many chapters are in that training, minimum Internet connection speed to access that training, and everything you know about WJTB-310.
    Is there a synchronized audio in WJTB-310 ?
    Is there a video streaming in WJTB-310 ?
    Can I receive a certificate for any web-based training ? especially in WJTB-310 ?
    Is there a programming language material in WJTB-310 or just an overview ?
    Sorry for asking to many question
    Thanks
    Jeffry Kristianto Yanuar

    I thought I'd give you a response even if I can't answer your question completely. (I think we ought to start a separate thread entitled "How do you get any replies on this forum???") Here is what I have been forced to do. I introduced some JavaScript on the web page that contains the applet I want to be run. The sole purpose of the JavaScript is to detect which platform the client is on. If it's not MacIntosh, then I have JavaScript write the <object><embed> tag used by the Java plug-in. It it is MachIntosh, then I have JavaScript write the regular <applet> tag and let the Mac browsers do as best they can. With mixed and disappointing results. Netscape 6.2 crashes with a lot of applets. IE 5 brings up the applet okay but certain Swing components aren't displaying properly. The MacIntosh I've been testing on is version 9.1. I'm trying OS X tomorrow.
    Why don't you send a reply to my query under the Java Plug-in Forum--from aronsz, dated 06/11/02--if you have some more info by now. I sure would appreciate it.

  • Send language information to ocx client

    We are running a java application server. One of the client is a c++ client (ocx). We need to send send language information to the client so it startes up with the right language defined from the server.
    Should the language information be stored in xml format and send through http (HTTP-response) or web-service? What do you use?
    Thx in advance

    Try MD5 as the authentication method.

  • Oracle BPEL Java Client API: Reading Configurations dynamically

    We have a requirement to use Oracle BPEL Java client API to control the BPEL instances at the runtime, from an ADF BC Application. is there any possibility to read the configurations/properties that are required to look up (using 'oracle.soa.management.facade.Locator' ) the BPEL Process Manager/Server from connections.xml/adf-config.xml ?
    In other terms, as we need the details like the bpel server URL, security credentials..etc to lookup the BPEL server and instances using the BPEL java client API, how can we read these details from the ADF standard config files like Connections.xml/adf-config.xml instead of hard coding them in the Java program.
    Edited by: 899479 on Feb 4, 2013 6:02 AM

    The api's for BPEL / Workslow canbe found here:
    http://orasoa.blogspot.com/2007/05/newbie-getting-started-with-oracle-soa.html
    Marc

  • Using HFM Client API from FDM

    Hi all,
    is it possible to use HFM CLient API libraries from FDM Scripts or just HFM Web API?
    Thanks

    "Unreadable" squares are probably an indication that you are seeing non-printable characters due to the fact that the data is in one format (i.e. Unicode) and you are attempting to treat it as a another data format (ASCII). You may need to instruct the function to return data in a particular type or cast the result so that you are processing it properly.
    In regards to the wrapper, I think he's referring to the fact that vbscript doesn't support UDT's. (User Defined Types more commonly referred to as structs) You don't really need to wrap the API itself, rather create a COM object (or other) that would expose a property for each struct field. In the vbscript you would then create an instance to the object and use that with the API call.
    In regards to webservices, HFM doesn't have much out of the box. The comment was to create your own, etc. About the only thing you have going for you OOTB is Smartview. Smartview doesn't technically have a web service; however, if you monitor the data that goes in and out of Smartview it is dirt simple. For more than one project, I've taken advantage of Smartview as a means to get quick and dirty data out of HFM.

  • ESB Client API - unable to connect to ESB.

    Hi,
    I am exploring ESB Client APIs. As a first step, I need to get the Console client. But I am not able to connect, and am instead getting 404 error. Here is the code
    bq.      package esbclientapi; \\     import oracle.tip.esb.client.ConsoleClient; \\     import oracle.tip.esb.client.ConsoleClientFactory; \\     public class BasicTest { \\      private String _host = "localhost"; \\      private int _port = 80; \\      private String _username = "oc4jadmin"; \\      private String _password = "welcome1"; \\      private void load() throws Exception { \\      System.out.println("Try to connect"); \\      ConsoleClient client = \\      ConsoleClientFactory.getConsoleClient(_host, _port, _username, \\      _password); \\      System.out.println("DVMLoader.load(): Got client"); \\      } \\     public static void main(String[] args) { \\      try { \\      BasicTest ldvm = new BasicTest(); \\      ldvm.load(); \\      } catch (Exception e) { \\      e.printStackTrace(); \\      } \\     } \\     } \\
    Here is the error \\bq.      Try to connect \\     oracle.tip.esb.client.ClientException: 404 : Not Found \\     at oracle.tip.esb.client.HttpClient.invoke(HttpClient.java:118) \\     at oracle.tip.esb.client.HttpClient.handleRedirectRequest(HttpClient.java:193) \\     at oracle.tip.esb.client.HttpClient.postAndReceive(HttpClient.java:147) \\     at oracle.tip.esb.client.HttpClient.invoke(HttpClient.java:114) \\     at oracle.tip.esb.client.impl.ConsoleClientImpl.authendicate(ConsoleClientImpl.java:102) \\     at oracle.tip.esb.client.impl.ConsoleClientImpl.&lt;init&gt;(ConsoleClientImpl.java:73) \\     at oracle.tip.esb.client.ConsoleClientFactory.getConsoleClient(ConsoleClientFactory.java:32) \\     at esbclientapi.BasicTest.load(BasicTest.java:15) \\     at esbclientapi.BasicTest.main(BasicTest.java:25) \\     Caused by: java.io.IOException: 404 : Not Found \\     at oracle.tip.esb.client.HttpClient.throwException(HttpClient.java:223) \\     at oracle.tip.esb.client.HttpClient.postAndReceive(HttpClient.java:150) \\     at oracle.tip.esb.client.HttpClient.invoke(HttpClient.java:114) \\     ... 8 more \\     Process exited with exit code 0. \\     
    Env Info:\\ I am using SOA 10.1.3.4. which has been installed over the advanced installation of SOA 10.1.3.1. I am using Jdev 10.1.3.4 \\ So, to access the ESB console, I simply use [http://localhost/esb] \\ To compile this program, I added Oraesb_patch.jar and xmlparserv2.jar to Libraries in JDeveloper \\ I guess the issue is with the hostname. I tried using the actual hostname, but it didnt help. To figure out the actual hostname, I looked at wsdl of one of the services which looks like this: \\[http://xxxx.yyyy.local:80/orabpel/default/SetPollingFreqForDBAdapter/1.0/SetPollingFreqForDBAdapter?wsdl|http://esswsl020-w209.emrlab.local/orabpel/default/SetPollingFreqForDBAdapter/1.0/SetPollingFreqForDBAdapter?wsdl] \\ So I tried using xxxx.yyyy.local, but got same error. \\ However, I feel the issue is something else. I tried giving some dummy string as host, and got a different error \\bq.      private String _host = "ddd"; \\
    error I got: \\bq.      Try to connect \\     oracle.tip.esb.client.ClientException: ddd \\     at oracle.tip.esb.client.HttpClient.invoke(HttpClient.java:118) \\     at oracle.tip.esb.client.impl.ConsoleClientImpl.perform(ConsoleClientImpl.java:148) \\     at oracle.tip.esb.client.impl.ConsoleClientImpl.&lt;init&gt;(ConsoleClientImpl.java:71) \\     at oracle.tip.esb.client.ConsoleClientFactory.getConsoleClient(ConsoleClientFactory.java:32) \\     at esbclientapi.BasicTest.load(BasicTest.java:17) \\     at esbclientapi.BasicTest.main(BasicTest.java:27) \\     Caused by: java.net.UnknownHostException: ddd \\     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:177) \\     at java.net.Socket.connect(Socket.java:507) \\     I noticed that the error came in HttpClient.invoke \\     itself, a step which went off fine earlier (as per the earlier stack trace). \\     So my question is, how should I figure out the hostname.

    I decompiled HttpClient and ConsoleClientImpl and this is what I found --- The following URL is what is constructed,
    http://localhost:80/esb/j_security_check and these parameters are passed as POST - j_username=oc4jadmin&j_password=welcome1
    I tried
    http://localhost:80/esb/j_security_check?j_username=oc4jadmin&j_password=welcome1
    and got 404 error.
    However, this exercise confirmed that hostname=localhost and port=80 is just fine.. the problem seems to lie somewhere else

  • Security Exception while using OIM client API with Webcenter

    Hi,
    We are using OIM 11g Client api for creating user from our WebCenter portal application. But we are getting security as well as no such service exception while calling login from the OIM client.
    Exception::
    oracle.iam.platform.utils.NoSuchServiceException: java.lang.reflect.InvocationTargetException
         at oracle.iam.platform.OIMClient.getServiceDelegate(OIMClient.java:197)
         at oracle.iam.platform.OIMClient.getService(OIMClient.java:174)
         at oracle.iam.platform.OIMClient.loginSessionCreated(OIMClient.java:209)
         at oracle.iam.platform.OIMClient.login(OIMClient.java:136)
         at oracle.iam.platform.OIMClient.login(OIMClient.java:114)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
         at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
         at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
         at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
         at oracle.iam.platform.OIMClient.getServiceDelegate(OIMClient.java:193)
    Caused by: java.lang.SecurityException: [Security:090398]Invalid Subject: principals=[weblogic, Administrators]
         at weblogic.rjvm.ResponseImpl.unmarshalReturn(ResponseImpl.java:234)
    oracle.iam.platform.utils.NoSuchServiceException: java.lang.reflect.InvocationTargetException
    Client Code::
    System.setProperty("java.security.auth.login.config", "Path to authwl.conf");
    System.setProperty("OIM.AppServerType", "weblogic");
    env = new Hashtable();
    env.put(OIMClient.JAVA_NAMING_FACTORY_INITIAL,"weblogic.jndi.WLInitialContextFactory");
    env.put(OIMClient.JAVA_NAMING_PROVIDER_URL, "t3://host:14000/oim");
    client = new OIMClient(env);
    try {
    client.login(OIMUserName, OIMPassword);
    } catch (LoginException e) {
    e.printStackTrace();
    The exception is coming after executing the login code (not login exception).We logged into our application using weblogic user(even for any other user in OID,shared by OIM, is having same behaviour). The code is being executed from integrated webogic server and oim_server is running on a different server under a separate domain.
    Please suggest.
    Thanks

    There are files needed in your project.
    from the <OIMHOME>/config folder_
    xl.policy
    authwl.conf
    log.properties
    from the <OIMHOME>/ext folder_
    commons-logging.jar
    jakarta-oro-2.0.8.jar
    javagroups-all.jar
    jhall.jar
    log4j-1.2.8.jar
    mail.jar
    oscache.jar
    spring.jar
    wlfullclient.jar
    from the <OIMHOME>/lib folder_
    iam-platform-auth-client.jar
    iam-platform-context.jar
    iam-platform-pluginframework.jar
    iam-platform-utils.jar
    oimclient.jar
    XellerateClient.jar
    xlAPI.jar
    xlDataObjectBeans.jar
    xlUtils.jar
    xlVO.jar

  • What type of qustions i need to ask to client before sap fico prject start

    what type of questions i need to ask to client before sap fico project starts
    helo guys
    i am new here as well i am fresher in sap FICO but my pm put me in project
    soon i am going to my clients place
    what type of questions i need to ask , before my sap fico project start
    what type of data i need to prepare AS IS -TO BE & SAP FI/CO BLUEPRINT START.
    GUYS PULL ME
    PLS
    REGARDS
    SUBU

    Hi Subu
    Initially you need to prepare topics wise questions and in the process the data collection should be from 2 sources i.e. Primary - collecting information directly by interacting with the client and the other one is Secondary - from the documents that you collect from the client.
    After formal introduction during the Kick off meeting never directly jump down to interact with the client you need to patiently observe the day to day business process of the client - department wise for the first few days. Do document all the observations that are made by you, this will help you to analyse the gap between the legacy system and std SAP Process.
    The first and the foremost thing is that we need to see on what flatform all the business process relating to Accounting is maintained i.e the software used to store the legacy data.\
    Now I will mention some of the important points that can be used a check list during your interaction with the client.
    1.We are the consultants who need to freeze the Enterprise Structure first and later on the other module consultants will add their respective enterprise elements to the enterprise structure freezed by us. Therefore this process will by itself will take not less than 1 to 2 months. This process is the Typical phase where a lot of interaction/understanding/experience will come into limelight. So be attentive and observe the process throughly, once the Enterprise Structure is freezed and configured we cannot withdraw from the system.
    2. Codification of the Enterprise Elements play a vital role do follow some naming convention. Here coding can be in 3 forms i.e. pure numeric, alfanumeric or pure alphabets.
    3. Identify the chart of accounts that is maintained.
    4. Grouping process of the GL Account According tos Schedule VI of Companies Act 1956
    5. Customer & Vendor Grouping - payment terms maintained - Down payment if applicable - how the memos maintained.
    6.. Collect all the documents relating to Procurement Process right from indent preparation to billing and followed by payment. This is very useful.
    7. CIN plays a very important role regarding this we will have a seperate session in the days to come.
    This is just a beginning and hope this will help you and as the time comes up do feel free to put up questions and I will clarify for the same.
    Regards
    Murali Kanth Natti

  • Problem getting calendar event with recurring using EWS Java client API 1.2

    I am using EWS 1.2 Java client API for getting calendar events. I am able to get Recurring information of the event which is created through API's 
    appointment.save(), but not able to get recurring information of the event created in OWA interface, I get following error during the bind:
    ===================================
    Exception: Connection not established
    microsoft.exchange.webservices.data.EWSHttpException: Connection not established
    at microsoft.exchange.webservices.data.HttpClientWebRequest.throwIfConnIsNull(HttpClientWebRequest.java:394)
    at microsoft.exchange.webservices.data.HttpClientWebRequest.getResponseHeaders(HttpClientWebRequest.java:280)
    at microsoft.exchange.webservices.data.ExchangeServiceBase.processHttpResponseHeaders(ExchangeServiceBase.java:1045)
    at microsoft.exchange.webservices.data.SimpleServiceRequestBase.internalExecute(SimpleServiceRequestBase.java:58)
    at microsoft.exchange.webservices.data.MultiResponseServiceRequest.execute(MultiResponseServiceRequest.java:144)
    at microsoft.exchange.webservices.data.ExchangeService.internalBindToItems(ExchangeService.java:1364)
    at microsoft.exchange.webservices.data.ExchangeService.bindToItem(ExchangeService.java:1407)
    at microsoft.exchange.webservices.data.ExchangeService.bindToItem(ExchangeService.java:1430)
    at microsoft.exchange.webservices.data.Appointment.bind(Appointment.java:70)
    at microsoft.exchange.webservices.data.Appointment.bindToRecurringMaster(Appointment.java:176)
    at microsoft.exchange.webservices.data.Appointment.bindToRecurringMaster(Appointment.java:152)
    ============================
    This happens if I use: Appointment.bindToRecurringMaster or Item.bind(service, id, appointmentProps) or findAppointments(). 
    Works fine for events which doesn't have recurring. Only issue with events containing recurrence created through OWA. These are the propertySet:
    new PropertySet(BasePropertySet.IdOnly,
                                    ItemSchema.Subject,
                                    AppointmentSchema.AppointmentType,
                                    AppointmentSchema.DeletedOccurrences,
                                    AppointmentSchema.FirstOccurrence,
                                    AppointmentSchema.LastOccurrence,
                                    AppointmentSchema.IsRecurring,
                                    AppointmentSchema.Location,
                                    AppointmentSchema.ModifiedOccurrences,
                                    AppointmentSchema.OriginalStart,
                                    AppointmentSchema.Recurrence,
                                    AppointmentSchema.Start,
                                    AppointmentSchema.End);
    If I remove Recurrence it gives the response. 
    Thanks.

    I am using EWS 1.2 Java client API for getting calendar events. I am able to get Recurring information of the event which is created through API's 
    appointment.save(), but not able to get recurring information of the event created in OWA interface, I get following error during the bind:
    ===================================
    Exception: Connection not established
    microsoft.exchange.webservices.data.EWSHttpException: Connection not established
    at microsoft.exchange.webservices.data.HttpClientWebRequest.throwIfConnIsNull(HttpClientWebRequest.java:394)
    at microsoft.exchange.webservices.data.HttpClientWebRequest.getResponseHeaders(HttpClientWebRequest.java:280)
    at microsoft.exchange.webservices.data.ExchangeServiceBase.processHttpResponseHeaders(ExchangeServiceBase.java:1045)
    at microsoft.exchange.webservices.data.SimpleServiceRequestBase.internalExecute(SimpleServiceRequestBase.java:58)
    at microsoft.exchange.webservices.data.MultiResponseServiceRequest.execute(MultiResponseServiceRequest.java:144)
    at microsoft.exchange.webservices.data.ExchangeService.internalBindToItems(ExchangeService.java:1364)
    at microsoft.exchange.webservices.data.ExchangeService.bindToItem(ExchangeService.java:1407)
    at microsoft.exchange.webservices.data.ExchangeService.bindToItem(ExchangeService.java:1430)
    at microsoft.exchange.webservices.data.Appointment.bind(Appointment.java:70)
    at microsoft.exchange.webservices.data.Appointment.bindToRecurringMaster(Appointment.java:176)
    at microsoft.exchange.webservices.data.Appointment.bindToRecurringMaster(Appointment.java:152)
    ============================
    This happens if I use: Appointment.bindToRecurringMaster or Item.bind(service, id, appointmentProps) or findAppointments(). 
    Works fine for events which doesn't have recurring. Only issue with events containing recurrence created through OWA. These are the propertySet:
    new PropertySet(BasePropertySet.IdOnly,
                                    ItemSchema.Subject,
                                    AppointmentSchema.AppointmentType,
                                    AppointmentSchema.DeletedOccurrences,
                                    AppointmentSchema.FirstOccurrence,
                                    AppointmentSchema.LastOccurrence,
                                    AppointmentSchema.IsRecurring,
                                    AppointmentSchema.Location,
                                    AppointmentSchema.ModifiedOccurrences,
                                    AppointmentSchema.OriginalStart,
                                    AppointmentSchema.Recurrence,
                                    AppointmentSchema.Start,
                                    AppointmentSchema.End);
    If I remove Recurrence it gives the response. 
    Thanks.
    I am also facing the same problem.. If anyone can help, it would be helpful. I can see the response xml has the data, but while parsing the xml the error is generated in getResponseCode() in HttpClientWebRequest

Maybe you are looking for

  • Conditionally disabling record updation after query

    Dear members I've a single record block and I wanna conditionaly disable records updation after query has fetched data. Problem is that if I disable the record updation in Post-Query trigger then it checks the condition for the very first fetched rec

  • Reg :Production order cost  report day wise.

    Dear Expert, 1.We want a report for a particular Production order cost  day wise. The scenario is like this Production order is Released for 100 Qty. Today they confirmed only 50 Qty. Tomorrow they will confirm 50 qty. Now they want to see the cost f

  • How do you publish multiple groups to one calendar ?

    I have half a dozen groups to sort my contacts by in Address Book, ie Customers, Prospects, Suppliers, Family etc. Now I want to publish my iCal calendar so my call answering service can see where I am in the week. How do I publish to one calendar so

  • How to keep ONLY the iPhoto 08 - edited version ?

    Good day, First of all, let me explain teh structure I intend to use : I have migrated my complete iPhoto 08 database into Apertue (+/- 3200 pictures) to be able to use the extended storage and edition tools. I'm keep iPhoto only for "friendly" purpo

  • TLS support wildcard cert?

    Hi everyone, I'm planning to enable TLS on our email traffic, but was wondering if that will conflict with the wildcard certificate we currently have enabled on the server? I couldn't find any information about smtp tls errors because of it on google