Try SAML sender - guarantor, standalone Java client call to the service bus.

I built a stand-alone Java using Jax - ws client. It produces a header WSSE containing a SAMLAttribute and SAMLAuthentication instruction in option.
I tried to configure a proxy service on the servicebus (10gR 3) using ws-policy (weblogic version, not ws-1, 2), set up a SAMLIdentityAsserter (v2), a partner of identity provider and a SAMLIdentityNameMapper.

[I get the message weblogic.xml.crypto.wss.SecurityTokenValidateResult@ca32f2[status: false] [the msg SAML token is not valid.]
sending the SAML assertions which seems valid to me.

If you see something missing or invalid in the language SAML, something missing in the config or something else, I would be really happy.

All the examples use a SAMLCredentialmapper, but I'm building a stand-alone client, so a weblogic SAMLCredentialMapper is out of the question (?).

the request header:
< S:Header >
< xmlns:wsse wsse: Security = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" S:mustUnderstand = "1" >
< saml:Assertion SAML = "urn: oasis: names: tc: SAML:1.0:assertion" xmlns:ds = "http://www.w3.org/2000/09/xmldsig#" xmlns:exc14n = "http://www.w3.org/2001/10/xml-exc-c14n#" xmlns: XS = 'http://www.w3.org/2001/XMLSchema' AssertionID = IssueInstant "1246342701761" = "" 2009-06 - 30 T 06: 18:21.683Z "issuer ="http://openuri.org/service/customer/contact/contactInformationService"MajorVersion ="1"MinorVersion ="1">"
< saml:Conditions = NotBefore "" 2009-06 - 30 T 06: 17:21.683Z ' NotOnOrAfter = "2009-06 - 30 T 07: 18:21.683Z" / > "
< saml:AuthenticationStatement AuthenticationInstant = "" 2009-06 - 30 T 06: 18:21.683Z ' AuthenticationMethod = "urn: oasis: names: tc: SAML:1.0:am: unspecified" > "
< saml:Subject >
< saml:NameIdentifier Format = "" urn: oasis: names: tc: SAML:1.1:nameid - format: X509SubjectName "NameQualifier ="sb1sk"> uid = vsb, OU = smn < / saml:NameIdentifier >"
< saml:SubjectConfirmation >
< saml:ConfirmationMethod > urn: oasis: names: tc: SAML:1.0:cm:sender - vouches < / saml:ConfirmationMethod >
< / saml:SubjectConfirmation >
< / saml:Subject >
< / saml:AuthenticationStatement >
< / saml:Assertion >
< / wsse: Security >

answer:
< env:Envelope = "http://schemas.xmlsoap.org/soap/envelope/" xmlns:env >
< env:Header / >
< env:Body >
< env:Fault xmlns:wsse = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" >
WSSE:InvalidSecurityToken < faultcode > < / faultcode >
< faultstring > token security failed to validate. [weblogic.xml.crypto.wss.SecurityTokenValidateResult@1061c5e[status: false] [the msg SAML token is not valid] < / faultstring >
< / env:Fault >
< / env:Body >
< / env:Envelope >

If the customer leaves out the element, wsse: Security in the header, the service complains
header < faultstring > Security No. message but required by the policy. < / faultstring >

The name of SAMLIdentity Mapper is never loaded at all (checked by logging into the class loading)


The configuration in the identity provider partner:
the URI of the audience: target: *: /.
sender URI: / service/customer/contact/contactInformationService (also tried with a single string equal to what the client sends)
virtual user: enabled
confirmation method: vouches for the sender

I do not use certificates (tried with and without)


Policy in use for the proxy service:

<? XML version = "1.0"? >

< wsp
xmlns:WSP = "http://schemas.xmlsoap.org/ws/2004/09/policy".
xmlns:WSSP = "http://www.bea.com/wls90/security/policy".
xmlns:WSU = "http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd".
xmlns:WLS = "http://www.bea.com/wls90/security/policy/wsee#part".
WSU: ID = "samlSV".
>

< wssp:Identity >
< wssp:SupportedTokens >
< wssp:SecurityToken TokenType = "http://docs.oasis-open.org/wss/2004/01/oasis-2004-01-saml-token-profile-1.0#SAMLAssertionID" >
< wssp:Claims >
< wssp:ConfirmationMethod > sender - vouches < / wssp:ConfirmationMethod >
< / wssp:Claims >
< / wssp:SecurityToken >
< / wssp:SupportedTokens >
< / wssp:Identity >


< / wsp >


StackTrace:
weblogic.xml.crypto.wss.WSSecurityException: validate failure of security token. weblogic.xml.crypto.wss.SecurityTokenVal
[idateResult@a4fc20[status: false] [the msg SAML token is not valid.]
at weblogic.xml.crypto.wss.SecurityImpl.unmarshalAndProcessSecurityToken(SecurityImpl.java:630)
at weblogic.xml.crypto.wss.SecurityImpl.unmarshalChildren(SecurityImpl.java:556)
at weblogic.xml.crypto.wss.SecurityImpl.unmarshalInternal(SecurityImpl.java:448)
at weblogic.xml.crypto.wss.SecurityImpl.unmarshal(SecurityImpl.java:416)
at weblogic.xml.crypto.wss.api.WSSecurityFactory.unmarshalAndProcessSecurity(WSSecurityFactory.java:66)
at weblogic.wsee.security.WssServerHandler.processRequest(WssServerHandler.java:35)
at weblogic.wsee.security.WssHandler.handleRequest(WssHandler.java:74)
at com.bea.wli.sb.security.wss.WssInboundHandler.processRequest(WssInboundHandler.java:116)
at com.bea.wli.sb.security.wss.WssHandlerImpl.doInboundRequest(WssHandlerImpl.java:201)
at com.bea.wli.sb.context.BindingLayerImpl.addRequest(BindingLayerImpl.java:257)
at com.bea.wli.sb.pipeline.MessageProcessor.processRequest(MessageProcessor.java:66)
to com.bea.wli.sb.pipeline.RouterManager$ 1.run(RouterManager.java:508)
to com.bea.wli.sb.pipeline.RouterManager$ 1.run(RouterManager.java:506)
at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:363)
at weblogic.security.service.SecurityManager.runAs (unknown Source)

Published by: user6080617 on June 29, 2009 23:39

You have configured a SAML2 identity Asserter, which is not a v2 SAML identity Asserter!

Replace this line of and try again.

Tags: Oracle

Similar Questions

  • How the proxy service can get the client certificate in Oracle Service Bus

    Hello everyone, now I'm confused in how can get service proxy client certificate in Oracle Service Bus. I have configured bidirectional SSL in Weblogic, the client sends its cerficate to Weblogic and Weblogic checks this cerficate if have access permissions Weblogic, but my proxy service cannot obtain this certificate to do more work, who can help me?
    And my proxy service service type is the messaging service.

    Thank you!!!
    Sea

    Hi, if you have configured for client certificate authentication, weblogic maps an attribute in the DN of the client certificate to a user of weblogic security realm. The attribute is controlled by the default configuration to map the user in the default identity asserter in the WLS Console--> security--> kingdoms--> suppliers--> default identity Asserter. Generally, the CN attribute is selected for this purpose. You must also create a user in the security field, with the value of this attribute in the client certificate for authentication to succeed. Once the authentication is successful, the user is used as the authenticated user. So if you want to set permissions for authorization on the proxy, you can do it based on this user. For this you need not the certificate of the client. In the pipeline of message, I guess you can get the authenticated user of $inbound, which in turn corresponds to an attribute in the DN of the client certificate.

  • I just got a call from the service center of the sentence above, Microsoft asked them to call

    original title: Onlinepcmasters

    Hello

    I just got a call from the service center of the sentence above, Microsoft asked them to call.  They said that I got the virus bluebird on my computer and it would break in 2 days!  I guess it's a total scam

    See this post sticky at the top of the forum:

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-security/i-received-a-phone-callemail-from-someone-saying/98a199f4-82cd-4433-b333-045451b89e2d

  • AMFConnection Java client - what is the url of the service?

    I can't get the AMConnection object to connect to me BlazeDS service. How can I determine the URL and my service endpoint?

    My service of BlazeDS is a simple, Hello world no parameters:

    package example.blaze;

    public class {HelloWorldService

    public String getHelloWorld() {}
    Return "Hello from BlazeDS.
    }
    }

    The destination in the remoting - config.xml is set up like this:

    <? XML version = "1.0" encoding = "UTF-8"? >
    < id = service "-remote access service" class = "flex.messaging.services.RemotingService" >

    < adapter >
    < adapter-definition id = "java-object.
    Class = "Flex.Messaging.services.Remoting.Adapters.JavaAdapter"
    default = "true" / >
    < / adapters >

    < default channels >
    < Channel Ref = "my - amf" / >
    < / default channels >

    < destination id = "helloworld" >
    Properties of <>
    example.blaze.HelloWorldService < source > < / source >
    < / properties >
    < Ref adapter = 'java-object' / >
    < / destination >

    < / service >

    I expect this Java client to work, but it doesn't:

    AMFConnection amfConnection = new AMFConnection()

    amfConnection.connect ("http://localhost:8080/blazeds /" "")

    Object result = amfConnection.call ("helloworld.getHelloWorld")

    The error is:

    ClientStatusException
    message: java.io.FileNotFoundException: http://localhost: 8080/blazeds /
    Code: AMFConnection.Call.Failed

    I tried many variants on this endpoint and cannot get anything to work.

    What is the correct setting for #connect (String) AMFConnection AMFConnection #call (String, Object...)?

    Thank you

    Look at the definition of endpoint services - config.xml and make sure that the url there is the url you are trying to connect to with AMFConnection.

    -Mete

  • When I try to send an attachment with a PDFor JPEG, the indicator "sending" appears and never indicates that the document was "sent". He did not finish the task.

    When I try to send an attachment with a PDF or JPEG, the indicator "sent" is displayed and never indicates that the document was "sent". He did not finish the task.

    You have security software that may block the download?

  • When I try to send emails via outlook express, I get the following error message:

    When I try to send and email using Outlook Express, I get the following error message:

    The connection to the server has failed. Account: 'HotHot', server: 'smtp.live.com', Protocol: SMTP, Port: 25, secure (SSL): Yes, Socket error: 10060, error number: 0x800CCC0E

    Any help gratefully received. David

    Ok thank you. I received three messages from you, two of the demon and the other Hotmail.

    Hotmail has helpfully includes the originating IP address, so I was able to check further. There is no WHOIS data for it (a bad sign to start), but it is not in the CBL. Read this page to see why it is listed and take the appropriate action. Once you are convinced that your computer - and another using the same network - are clean, you can use the link at the bottom of the CBL page to remove from the list the IP address.

    I still don't know where FCMA comes into it, and diagnostic tests in the NDR is incorrect. It is not the content of the message that is at fault, but I suspect that the block list.

    Good luck!

  • "Messenger Service, or the Net send command not working only not on the service remote computerhe.

    Messenger Service, or the Net send command not working only not on the remote computer, despite the messenger service is started "it works only if I restart the service.
    operating system is windows xp
    service pack 3

    Hi Charbel,

    Have you done a recent software or hardware changes to the system?

    This problem occurs because the Messenger service is disabled. The Messenger service must run on the destination computer to activate the NET SEND command.

    Because the service is already started, and you must restart the service, you can try to stop the service, change the startup type to automatic and start the service. Check if it helps.

    Please refer to the article to define the service as automatic:

    Programs or services that use the alerts service or the Messenger service do not work as expected after you install Windows XP Service Pack 2

    For more information, see the article:

    The NET SEND command may not work correctly on a computer that is running Windows XP Service Pack 2

    Hope the helps of information.

    Let us know if you need help with Windows related issues. We will be happy to help you.

  • try to get adobe flash player asking to close the service manager does not

    can not find the Service Manager to close

    Hello, Moiradocherty,

    What is the exact message that you found?

    You open the services manager to update Adobe?  If so, close it.

    Windows: click Start > settings > Control Panel > Flash Player

    Try using Adobe Flash Player uninstaller to remove all remainders to install previous.  This can cause the problem.

    http://kb2.Adobe.com/CPS/141/tn_14157.html

    Restart the computer when done and return on the following link for download and install FlashPlayer.

    http://www.Adobe.com/downloads/

  • Error on Java class calling in the Oracle database

    I have a java class indicated below:

    /*

    * To change this license header, choose license headers in the project properties.

    * To change this template file, choose Tools | Templates

    * and open the template in the editor.

    */

    package oracletree1;

    import java.sql.Connection;

    to import java.sql.DriverManager;

    import java.sql.ResultSet;

    import java.sql.SQLException;

    import java.sql.Statement;

    /**

    *

    * @author oracle

    */

    public class TREEUPDATER {}

    int levels;

    int NodeId;

    int ParentId;

    String FatherID;

    int ChildBed_new;

    int ChildBes_new;

    int ChildMande_new;

    int ChildBed_old;

    int ChildBes_old;

    int ChildMande_old;

    int ParentBed;

    int ParentBes;

    int ParentMande;

    Script string;

    String ValueState;

    String TreeState;

    Public TREEUPDATER() throws SQLException {}

    }

    public void update (levels int, int NodeIds, int childBed_old, int childBes_old, int childMande_old) throws SQLException {}

    This. ChildBed_old = childBed_old;

    This. ChildBes_old = childBes_old;

    This. ChildMande_old = childMande_old;

    This. Levels = levels;

    This. NodeId = NodeIds;

    String [] array;

    try {}

    Class.forName ("oracle.jdbc.driver.OracleDriver");

    } catch (ClassNotFoundException e) {}

    System.out.println ("where is your Oracle JDBC Driver?');

    return;

    }

    System.out.println ("Oracle JDBC Driver registered!");

    Fitting out = null;

    try {}

    connection = DriverManager.getConnection)

    "jdbc:oracle:thin:@192.168.1.12:1521:orcl", "tree1"

    'oracle');

    } catch (SQLException e) {}

    System.out.println ("connection failed! Check the console output");

    return;

    }

    If (connection! = null) {}

    Statement stmt = connection.createStatement ();

    Instruction stmt2 = connection.createStatement ();

    stmt.executeUpdate ("insert into test.java_test (id) values (21)" ");

    ResultSet rs = stmt.executeQuery ("SELECT * from value" + "where nodeid =" + NodeId);

    ResultSet rs2 = stmt.executeQuery ("select * from tree where id =" + NodeId);

    While (RS. Next {}

    This. FatherID = rs2.getNString("FatherID");

    This. ChildBed_new = rs2.getInt ("bed");

    This. ChildBes_new = rs2.getInt ("bes");

    This. ChildMande_new = rs2.getInt ("control");

    table = new String [100000];

    Table = FatherID.split ("_");

    for (int i = 0; i < array.length; i ++) {}

    ResultSet rs3 = stmt2.executeQuery ("SELECT * from tree" + "where id =" + array [i]);

    This. ParentId = rs3.getInt ("id");

    This. ParentBed = rs3.getInt ("bed");

    This. ParentBes = rs3.getInt ("bes");

    This. ParentMande = rs3.getInt ("control");

    connection.setAutoCommit (false);

    ParentBed = ChildBed_new - ChildBed_old;

    ParentBes = ChildBes_new - ChildBes_old;

    This. TreeState = rs2.getNString ("state");

    If (TreeState.equalsIgnoreCase ("BED")) {}

    This. ParentMande = ParentBed - ParentBes;

    } else {}

    This. ParentMande = ParentBes - ParentBed;

    }

    This. Script = ("update the bed = bed set value +" + ParentBed + "and bes = bes +" + ParentBes + "and control = control +"+ ParentMande ")

    + ' where id = "+ ParentId);»

    stmt2. ExecuteUpdate ("" + Script);

    }

    }

    }

    }

    }

    I have a main class, which show below:

    /*

    * To change this license header, choose license headers in the project properties.

    * To change this template file, choose Tools | Templates

    * and open the template in the editor.

    */

    package oracletree1;

    import java.sql.SQLException;

    /**

    *

    * @author oracle

    */

    public class OracleTree1 {}

    /**

    @param args command-line arguments

    */

    Public Shared Sub main (String [] args) throws SQLException {}

    TODO logical application of the code here

    TREEUPDATER t = new TREEUPDATER();

    }

    }

    I was responsible for these classes in oracle database 11 g 2 and I want to use a trigger to execute the updating() method. If I created a procedure like this:

    CREATE OR REPLACE PROCEDURE REPORT4

    (

    LEVELS IN NUMBERS

    NODEID NUMBER

    CHILDBED_OLD NUMBER

    CHILDBES_OLD NUMBER

    CHILDMANDE_OLD NUMBER

    ) AS

    Name of the java LANGUAGE "TREEUPDATER.updating (1,2,3,4,5);

    But when I want to compile and run this procedure, I get this error:

    Error: PL/SQL: analysis of completed Compilation unit

    Error (9,16): PLS-00311: the declaration of 'TREEUPDATER.updating' (1,2,3,4,5) is incomplete or incorrect

    Can any one solve this?

    Thank you

    The correct syntax for PORCEDURE4 is:

    No it's not. I already gave the correct syntax, which apparently ignored you.

    I don't know how can pass these parameters to this method.

    My question is clear?

    It is clear that you are interested in reading the documentation. All the answers are there.

    You're mixing two things:

    (1) creating the procedure (once), and I already told you how to do it

    (2) the procedure call

    For 1)-do you only once :

    CREATE OR REPLACE PROCEDURE REPORT4)

    LEVELS IN NUMBERS

    NODEID NUMBER

    CHILDBED_OLD NUMBER

    CHILDBES_OLD NUMBER

    CHILDMANDE_OLD NUMBER

    )

    AS

    JAVA LANGUAGE

    NAME of ' oracletree1. TREEUPDATER.updating (int, int, int, int, int)';

    For 2)-procedure call:

    ...

    BEGIN

    ... of the code

    -you call proc with your real settings:

    procedure4 (v_levels, v_nodeid, v_childbed_old, v_childbes_old, v_childmande_old);

    ... rest of your code

    END;

    Pay attention to remarks from other institutions.

  • If I try to send an e-mail, it remains in the Outbox, showing never sent, but he sends several times.

    Using Outlook Express 6 on windows XP

    When I send an email with an attachment or meet one of my Inbox of the message send by the end of the progress bar, then I get a yellow warning triangle (no error code) and the seat of message in the Outbox to be sent whenever I have send and receive.

    Messages are released (several times which is annoying people), but remain in Outbox marked as pending until I delete them.

    I disabled my McAffee analysis email, but problem remains...

    Help!

    Found a solution, delete all messages in sent items, and deleted messages.

    It would seem that it is a problem of storage.

    I created an archive folder to keep sent messages, I need then deleted the rest.

    This seems to have solved the problem. : )

  • When I try to send an email, I get this msg the host 'SMTP' could not be found. Please check that you have entered the server name correctly. How can I solve this problem

    How can I change my server

    Hello

    You don't say what Email program you use.

    Here is the Microsoft information about setting up Windows Mail, as it is a Vista (which comes with Windows Mail) Forum:

    "Windows Mail: setting up an account from start to finish.

    http://Windows.Microsoft.com/en-us/Windows-Vista/Windows-mail-setting-up-an-account-from-start-to-finish

    Contact your Internet service provider for the correct email server settings

    See you soon.

    Edit: OP has another question in these Forums on the problems of electronic mail that can be connected:

    http://answers.Microsoft.com/en-us/Windows/Forum/windows_vista-files/i-can-not-send-an-attachment-from-my-email-whice/59da1dbc-3dcd-452D-92ED-42571804b4a0

  • Phone call from the service Microsoft in Vancouver Centre, British Colombia stating my computer has been compromised.

    Microsoft has such a service?

    Fake phone calls to technical support

    Calls unrequested telephone of this nature are almost always a common scam. Do not let them give any info, do not give access to your PC, not give them all the money and do not go to all the websites that they suggest. One moment.

    Please see:

    http://www.microsoft.com/en-gb/security/online-privacy/msname.aspx .

    Microsoft issues never not solicited for phone calls of support or security.

    These types of callers can use completely fictitious names or bogusly claim to be of real companies other than Microsoft as well.

  • Database adapter &amp; mediator, called by the Service causes exception?

    Hello

    I have a database adapter, a mediator plugged in my composite.xml. In my BPMN process, I have a service that uses the Ombudsman as its implementation (?). He was able to build and deploy great of JDeveloper. But now that I am trying to execute the process of the workspace, I get this error:

    < 13 may 2014 12:58:13 PM PDT > < WARNING > < oracle.soa.adapter > < BEA-000000 > < JCABinding = > JCABinding = > search for DBTestComposer2:DBAdapter [DBAdapter_ptt::DBAdapterSelect(DBAdapterSelect_inputParameters,TestTableObpmCollection)] "ÉI/DB/cpdev_users" failure due to JNDI: unable to resolve ' ist. DB.cpdev_users'. Solved ' ist. DB' >

    < 13 may 2014 12:58:13 PM PDT > < error > < oracle.soa.adapter > < BEA-000000 > < JCABinding = > DBTestComposer2:DBAdapter [DBAdapter_ptt::DBAdapterSelect(DBAdapterSelect_inputParameters,TestTableObpmCollection)] could not invoke "DBAdapterSelect" against the "null" operation due to:

    LIAISON. JCA-12511

    JCA Binding Component connection problem.

    JCA Binding component is unable to create an outgoing connection of JCA (CCI).

    DBTestComposer2:DBAdapter [DBAdapter_ptt::DBAdapterSelect (DBAdapterSelect_inputParameters, TestTableObpmCollection)]: The JCA Binding component could not establish an outbound connection of JCA CCI due to the following problem: BINDING. JCA-12510

    Location of JCA resource adapter error.

    Cannot find the adapter in JCA resources via the element of the binding .jca file <-factory connections / >

    The Binding of JCA component is unable to startup of the resource adapter that is specified in the <-factory connections / > element: location = ' EI/DB/cpdev_users.

    The reason is most likely to be

    (1) the resource adapter RAR file has not been deployed successfully to the WebLogic application server or

    (2) the "< jndi name >" element in weblogic - ra.xml has not been defined in eis/DB/cpdev_users. In the latter case, you need to add a new factory of connections from WebLogic JCA (deploy a RAR).

    Please fix this and then restart the application server

    Please ensure that the JCA connection factory and dependent connection factories have been set up with a sufficient limit for maximum connections Please also make sure that the physical connection to the EIS server is available and the backend itself accepts connections.

    Could someone explain what this means? (Sorry, we're new on Oracle technology and a lot of this terminology). What resource adapter RAR files is this allusion? We would really appreciate solutions on how to fix or solve this problem!

    I think this might solve your problem: https://community.oracle.com/message/10235476#10235476

    Dan

  • I tried to send an email in Colombia and I got an 0x800CCC79 error message now when I try to send anything this message appears

    I tried to send an email in Colombia and I got an 0x800CCC79 error message now when I try to send anything this message appears.

    The message cannot be sent because one of the recipients was rejected by the server. The rejected e-mail address was 'gzdaher@gmail '. 'Hi', account: ' pop - server.wi.rr.com', server: ' smtp - server.wi.rr.com', Protocol: SMTP, server response: 450 4.1.8 - field of the recipient is not resolved [R0309001]', Port: 25, secure (SSL): no, Server error: 450, error number: 0x800CCC79.
    How can I get rid of him?
    Lori

    'gzdaher@gmail '.

     
    This isn't a complete address. Add the ".com" and see it go.
     
  • Silverlight crashes when I try to send Hotmail

    I am running Win 7 HP sp1 w / Chrome as my browser. Whenever I go to hotmail and try to send an email, a bar appears at the top of the screen and told me that Silverlight is crashed. Is it because I use Chrome as my browser, or is it indicative of a much larger problem with that I don't know?

    Hello Joe_crash411,

    Thanks for your post.  Have you tried to go to Hotmail using IE or a different browser?  If so, have you experienced the same problems?

    We can't wait to hear back on your part.

    See you soon

Maybe you are looking for

  • Envy 4500: Envy 4500 ubuntu 15.04 compatibility?

    I am looking to buy a printer/scanner for my desktop Ubuntu 15.04 System. Hplip HP driver is available. Your desire 4500 (or 4504) multifunction printer/scanner, which are available in Perth will work with this system?

  • 14-af118AU HP: hp Driver 14-af118AU

    Help me please, I just bought hp 14-af118AU and I have install windows 8 32-bit but I can not find driver in website (usb unknown device grafic and vga controller, sm bus controller) Thank you for all

  • The graph of table

    Hello I have problem with my program.I can't create a graph of my table... First of all, I read valuse of my file that looks like: Power Density Power Frequency Voltage Current 25,334650E-6 36,900306E-6 190,825684E+0 862,942045E-9 864,983974E-9 24,20

  • Laser 5000 wireless.

    Microsoft wireless laser Mouse 5000 keyboard &. They are compatible with Windows Vista? Thank you Craig...

  • How to start-up / Direction between two locations / POI

    Hi I have 2 sites. How to get directions / direction between only 2 places? (Like getting directions on a map of BlackBerry) I'm already trying to use RouteMapInvoker and set the market (my place now) and put an end to places. But only show POI my po